:root {
  --milk: #f4efe6;
  --graphite: #1a1a1a;
  --secondary: #5c5750;
  --cobalt: #1f3cff;
  --line: rgba(26, 26, 26, 0.34);
  --max-width: 1240px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--milk);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: calc(100vw - 64px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100vw - 64px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 0 18px;
  background: var(--milk);
  border-bottom: 1px solid rgba(26, 26, 26, 0.16);
}

.brand,
.footer-brand {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.95;
}

.brand {
  font-size: 30px;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--graphite);
  border-color: var(--cobalt);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.58fr);
  gap: 62px;
  align-items: center;
  padding: 72px 0 84px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.section {
  padding: 132px 0;
  border-top: 1px solid var(--graphite);
}

.section-label {
  margin: 0 0 28px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 880px;
  margin-bottom: 34px;
  font-size: 82px;
  text-wrap: balance;
}

h2 {
  max-width: 880px;
  margin: 0;
  font-size: 76px;
  text-wrap: balance;
}

.section-heading {
  margin-bottom: 54px;
}

.scribble-word {
  position: relative;
  display: inline-block;
}

.scribble-word::after {
  position: absolute;
  left: 0.03em;
  right: 0.02em;
  bottom: 0.03em;
  height: 0.11em;
  content: "";
  border-bottom: 6px solid var(--cobalt);
  border-radius: 999px 62% 999px 58%;
  transform: rotate(-1.2deg);
}

.hero-text {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--secondary);
  font-size: 20px;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-stack p,
.final-cta p,
.guarantee-band p,
.muted-line {
  margin: 0;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--cobalt);
  border: 1px solid var(--cobalt);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.cta-button:hover {
  background: #1730d8;
  border-color: #1730d8;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.photo-tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-flex;
  padding: 9px 12px;
  margin: 0;
  color: var(--graphite);
  background: var(--milk);
  border: 1px solid var(--graphite);
  font-size: 13px;
  font-weight: 500;
}

.portrait-frame {
  position: absolute;
  inset: 34px 0 0 52px;
  overflow: hidden;
  border: 1px solid var(--graphite);
  background: #e4d8c6;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.screen-card {
  position: absolute;
  z-index: 3;
  width: 158px;
  padding: 14px;
  background: var(--milk);
  border: 1px solid var(--graphite);
}

.screen-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--secondary);
  font-size: 12px;
}

.screen-card strong {
  display: block;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.95;
}

.screen-card small {
  display: block;
  margin-top: 9px;
  color: var(--secondary);
  font-size: 12px;
  line-height: 1.35;
}

.screen-reels {
  right: -12px;
  bottom: 128px;
}

.screen-direct {
  left: 0;
  bottom: 28px;
}

.hand-arrow {
  position: absolute;
  right: 116px;
  bottom: 66px;
  z-index: 3;
  width: 150px;
  height: 92px;
  fill: none;
  stroke: var(--graphite);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: rotate(5deg);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.number-card,
.bento-card,
.format-grid article,
.case-card {
  border: 1px solid var(--graphite);
  background: rgba(244, 239, 230, 0.76);
}

.number-card {
  min-height: 244px;
  padding: 24px;
}

.number-card span,
.timeline span {
  display: block;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 0.9;
}

.number-card p {
  margin: 88px 0 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.16;
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.bento-card {
  display: flex;
  align-items: flex-end;
  min-height: 236px;
  padding: 26px;
}

.bento-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.02;
}

.bento-card:not(.bento-card-large) h3 {
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.18;
}

.bento-card-large {
  grid-row: span 2;
  min-height: 490px;
  color: var(--milk);
  background: var(--graphite);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 1px;
  content: "";
  background: var(--graphite);
}

.timeline li {
  position: relative;
  min-height: 230px;
  padding: 0 22px 0 0;
}

.timeline li::before {
  position: absolute;
  top: 28px;
  left: 0;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--milk);
  border: 1px solid var(--graphite);
  border-radius: 50%;
}

.timeline span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-right: 12px;
  background: var(--milk);
  font-size: 42px;
}

.timeline h3 {
  margin: 48px 0 10px;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
}

.timeline p {
  max-width: 210px;
  margin: 0;
  color: var(--secondary);
  font-size: 14px;
}

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
}

.fit-columns > div {
  padding: 42px 46px 44px 0;
}

.fit-columns > div + div {
  padding-left: 46px;
  border-left: 1px solid var(--graphite);
}

.fit-columns h3,
.format-grid h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.05;
}

.fit-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 30px;
  color: var(--secondary);
  font-size: 17px;
}

.fit-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 600;
}

.fit-list-positive li::before {
  color: var(--cobalt);
  content: "✓";
}

.fit-list-negative li::before {
  color: var(--graphite);
  content: "×";
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.about-shot {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-shot h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.about-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--graphite);
  background: #e4d8c6;
}

.about-shot-after h3 {
  color: var(--cobalt);
}

.about-copy {
  padding-top: 22px;
}

.about-copy p {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--secondary);
  font-size: 19px;
}

.about-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 36px 0 42px;
  list-style: none;
}

.about-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--graphite);
  font-size: 16px;
  font-weight: 500;
}

.about-copy li::before {
  position: absolute;
  left: 0;
  color: var(--cobalt);
  content: "—";
}

blockquote {
  max-width: 720px;
  padding-left: 28px;
  margin: 0;
  border-left: 5px solid var(--cobalt);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.03;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.format-grid article {
  min-height: 302px;
  padding: 30px;
}

.format-grid p {
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
}

.muted-line {
  margin-top: 24px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  min-height: 286px;
  padding: 24px;
}

.case-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.case-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.case-card p {
  margin-bottom: 18px;
  font-size: 15px;
}

.case-card span {
  color: var(--secondary);
  font-size: 13px;
}

.dark-band {
  color: var(--milk);
  background: var(--graphite);
}

.dark-inner {
  width: calc(100vw - 64px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 132px 0;
  text-align: center;
}

.dark-band .section-label {
  color: var(--milk);
  opacity: 0.72;
}

.guarantee-band h2,
.final-cta h2 {
  max-width: 1060px;
  margin: 0 auto 24px;
  color: var(--milk);
}

.guarantee-band p,
.final-cta p {
  color: rgba(244, 239, 230, 0.64);
}

.final-cta h2 {
  margin-bottom: 36px;
  font-size: 96px;
}

.final-cta .cta-button {
  margin-bottom: 14px;
}

.accordion {
  max-width: 920px;
}

.accordion details {
  border-bottom: 1px solid var(--graphite);
}

.accordion summary {
  position: relative;
  display: block;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  top: 23px;
  right: 0;
  color: var(--cobalt);
  content: "+";
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion p {
  max-width: 760px;
  padding: 0 44px 26px 0;
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
}

.footer {
  padding: 82px 0 36px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 22px 0 80px;
  border-top: 1px solid var(--graphite);
}

.footer-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 30px;
  width: 100%;
}

.footer-block h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.footer-block h3 a {
  color: inherit;
  text-decoration: none;
}

.footer-block h3 a,
.footer-links a {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 500;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-block h3 a:hover,
.footer-links a:hover {
  color: var(--graphite);
  text-decoration: underline;
  text-decoration-color: var(--cobalt);
  text-underline-offset: 4px;
}

.copyright {
  margin: 0;
  color: var(--secondary);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .pain-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid,
  .about-grid,
  .fit-columns,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-large {
    min-height: 330px;
  }

  .fit-columns > div,
  .fit-columns > div + div {
    padding: 34px 0;
    border-left: 0;
  }

  .fit-columns > div + div {
    border-top: 1px solid var(--graphite);
  }

  .timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 32px;
  }

  .timeline::before {
    top: 8px;
    bottom: 8px;
    left: 4px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .timeline li {
    min-height: 0;
    padding: 0 0 46px;
  }

  .timeline li::before {
    top: 23px;
    left: -34px;
  }

  .timeline h3 {
    margin-top: 20px;
  }

  .timeline p {
    max-width: 520px;
  }

  }

@media (max-width: 680px) {
  .section-shell,
  .site-header,
  .dark-inner {
    width: calc(100vw - 36px);
  }

  .site-header {
    position: relative;
    padding: 18px 0 14px;
  }

  .nav {
    display: none;
  }

  .hero {
    gap: 48px;
    padding: 58px 0 82px;
  }

  .section {
    padding: 76px 0;
  }

  .section-label {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: 44px;
    text-wrap: wrap;
  }

  h2 {
    font-size: 52px;
    text-wrap: wrap;
  }

  .hero-text {
    font-size: 18px;
  }

  .cta-stack {
    width: 100%;
  }

  .cta-button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 14px;
    white-space: normal;
  }

  .hero-visual {
    min-height: 520px;
  }

  .portrait-frame {
    inset: 28px 0 42px 18px;
  }

  .screen-card {
    width: 142px;
  }

  .screen-reels {
    right: -2px;
    bottom: 102px;
  }

  .screen-direct {
    left: 0;
    bottom: 0;
  }

  .hand-arrow {
    right: 84px;
    bottom: 42px;
    width: 110px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .number-card {
    min-height: 172px;
    padding: 18px;
  }

  .number-card span {
    font-size: 34px;
  }

  .number-card p {
    margin-top: 48px;
    font-size: 17px;
  }

  .bento-grid {
    gap: 12px;
  }

  .bento-card {
    min-height: 188px;
    padding: 20px;
  }

  .bento-card-large {
    min-height: 300px;
  }

  .fit-columns h3,
  .format-grid h3 {
    font-size: 30px;
  }

  .about-grid {
    gap: 34px;
  }

  
  .about-copy {
    padding-top: 0;
  }

  .about-copy p {
    font-size: 17px;
  }

  blockquote {
    padding-left: 18px;
    border-left-width: 4px;
    font-size: 34px;
  }

  .format-grid {
    gap: 12px;
  }

  .format-grid article {
    min-height: 244px;
    padding: 24px;
  }

  .case-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .case-card {
    flex: 0 0 82%;
    min-height: 286px;
    scroll-snap-align: start;
  }

  .dark-inner {
    padding: 82px 0;
  }

  .guarantee-band h2,
  .final-cta h2 {
    font-size: 48px;
  }

  .footer-brand {
    font-size: 56px;
  }

  .accordion summary {
    padding: 22px 42px 22px 0;
    font-size: 18px;
  }

  .footer {
    padding-top: 64px;
  }

  .footer-main {
    flex-direction: column;
    padding-bottom: 48px;
  }

  .footer-blocks {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 390px) {
  .pain-grid {
    gap: 10px;
  }

  .number-card {
    padding: 16px;
  }

  .number-card p {
    font-size: 16px;
  }

  .case-card {
    flex-basis: 88%;
  }
}


.legal-page {
  padding: 72px 0 96px;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: 56px;
}

.legal-page h2 {
  margin: 42px 0 16px;
  font-size: 34px;
  line-height: 1.08;
}

.legal-page p,
.legal-page li {
  max-width: 920px;
  color: var(--secondary);
  font-size: 17px;
}

.legal-page ul {
  margin: 0 0 10px;
}

@media (max-width: 680px) {
  .legal-page h1 {
    font-size: 42px;
  }

  .legal-page h2 {
    font-size: 28px;
  }
}
