:root {
  --plum: #3d2a3f;
  --plum-deep: #291d2b;
  --mauve: #8e4d6e;
  --mauve-dark: #6e3855;
  --blush: #e7b3c4;
  --soft-blush: #f6e9ee;
  --white: #ffffff;
  --ink: #332634;
  --muted: #725d6f;
  --line: rgba(61, 42, 63, 0.14);
  --line-light: rgba(255, 255, 255, 0.19);
  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(30, 15, 30, 0.18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body:has(.nav__menu.is-open) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
section { scroll-margin-top: 84px; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; }
.section-dark { position: relative; overflow: hidden; color: var(--white); background: var(--plum); }
.section-light { background: var(--white); }
.section-soft { background: var(--soft-blush); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid rgba(61, 42, 63, 0.08); backdrop-filter: blur(18px); }
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand__full { width: 218px; height: 70px; object-fit: cover; object-position: center; }
.brand__square { display: none; width: 46px; height: 46px; border-radius: 12px; }
.brand__name { display: none; }
.nav__menu { display: flex; align-items: center; gap: clamp(22px, 3.4vw, 56px); }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); font-size: 0.88rem; color: var(--plum); }
.nav__links a { position: relative; padding: 8px 0; }
.nav__links a::after { content: ""; position: absolute; bottom: 2px; left: 0; width: 100%; height: 1px; background: var(--mauve); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px 9px; border: 0; border-radius: 12px; background: var(--soft-blush); color: var(--plum); cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 4px auto; border-radius: 99px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-size: 0.91rem; font-weight: 700; letter-spacing: 0.01em; transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-toggle:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid var(--blush); outline-offset: 3px; }
.button svg { width: 20px; height: 20px; }
.button--small { min-height: 45px; padding: 0 20px; font-size: 0.82rem; }
.button--solid { color: var(--white); background: var(--mauve); box-shadow: 0 8px 18px rgba(142, 77, 110, 0.18); }
.button--solid:hover { background: var(--mauve-dark); box-shadow: 0 12px 26px rgba(142, 77, 110, 0.25); }
.button--primary { min-height: 58px; color: var(--plum); background: var(--blush); box-shadow: 0 12px 28px rgba(15, 4, 15, 0.16); }
.button--primary:hover { background: var(--white); box-shadow: 0 16px 34px rgba(15, 4, 15, 0.22); }
.button--dark { color: var(--white); background: var(--plum); box-shadow: 0 10px 24px rgba(45, 19, 43, 0.2); }
.button--dark:hover { color: var(--plum); background: var(--white); }

.hero { min-height: 720px; padding: clamp(76px, 8vw, 118px) 0 106px; background: radial-gradient(circle at 88% 35%, rgba(142, 77, 110, 0.3), transparent 32%), var(--plum); }
.hero__line-art { position: absolute; top: -80px; left: -72px; width: 440px; color: var(--mauve); opacity: 0.55; pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(310px, 0.78fr) minmax(580px, 1.22fr); align-items: center; gap: clamp(42px, 6vw, 92px); }
.hero__copy { max-width: 580px; }
.hero__tagline { margin: 0 0 20px; color: var(--blush); font-family: var(--display); font-size: 1.24rem; font-style: italic; letter-spacing: 0.02em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -0.04em; line-height: 0.99; }
h1 { max-width: 600px; margin-bottom: 28px; font-size: clamp(3.1rem, 4.55vw, 4.75rem); }
.hero__supporting { max-width: 490px; margin-bottom: 36px; color: rgba(255, 255, 255, 0.82); font-size: clamp(1rem, 1.2vw, 1.14rem); line-height: 1.7; }
.hero__scroll-cue { position: absolute; bottom: -19px; left: 50%; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--mauve); transform: translateX(-50%); box-shadow: 0 0 0 10px rgba(231, 179, 196, 0.09); }
.hero__scroll-cue span { width: 13px; height: 13px; border-right: 2px solid var(--white); border-bottom: 2px solid var(--white); transform: translateY(-3px) rotate(45deg); }

.product-preview { min-width: 0; border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 22px; background: rgba(255, 255, 255, 0.97); color: var(--ink); box-shadow: var(--shadow); overflow: hidden; transform: translateY(8px); }
.product-preview__browser-bar { height: 46px; display: flex; align-items: center; gap: 18px; padding: 0 18px; border-bottom: 1px solid rgba(61, 42, 63, 0.1); background: #fbfafb; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e5a3b3; }
.browser-dots span:nth-child(2) { background: #e8c678; }
.browser-dots span:nth-child(3) { background: #80b38b; }
.browser-url { flex: 1; max-width: 310px; margin: 0 auto; padding: 5px 13px; border: 1px solid rgba(61, 42, 63, 0.1); border-radius: 7px; color: #7b7079; background: var(--white); text-align: center; font-size: 0.68rem; }
.lock-icon { font-size: 0.86rem; margin-right: 4px; }
.browser-menu { color: #7b7079; font-size: 0.88rem; letter-spacing: 0.16em; }
.product-preview__shell { display: grid; grid-template-columns: 128px minmax(0, 1fr) 205px; min-height: 456px; }
.product-preview__sidebar { padding: 21px 12px 16px; color: rgba(255, 255, 255, 0.86); background: var(--plum-deep); }
.mini-brand { display: flex; align-items: center; gap: 8px; margin: 0 7px 28px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; }
.mini-brand img { width: 25px; height: 25px; border-radius: 7px; }
.mini-nav { display: flex; align-items: center; gap: 8px; padding: 9px 7px; border-radius: 7px; color: rgba(255,255,255,0.66); font-size: 0.62rem; line-height: 1.25; }
.mini-nav svg { width: 15px; height: 15px; flex: 0 0 auto; }
.mini-nav--active { color: var(--white); background: var(--mauve); }
.product-preview__main { padding: 25px 21px 17px; background: var(--white); }
.preview-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.preview-heading p { margin-bottom: 3px; color: var(--plum); font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.preview-heading span { color: #837580; font-size: 0.64rem; }
.preview-control { padding: 7px 10px; border: 1px solid #e2dce1; border-radius: 6px; color: #6e596c; background: var(--white); font-size: 0.62rem; }
.calendar-grid { position: relative; display: grid; grid-template-columns: repeat(7, minmax(30px, 1fr)); border-top: 1px solid #ece7eb; border-left: 1px solid #ece7eb; }
.calendar-grid > * { min-height: 43px; padding: 9px 8px; border-right: 1px solid #ece7eb; border-bottom: 1px solid #ece7eb; }
.calendar-label { min-height: 28px !important; padding: 6px 4px !important; color: #9a8c97; font-size: 0.53rem; font-weight: 700; letter-spacing: 0.05em; text-align: center; }
.calendar-day { color: #665b63; font-size: 0.61rem; }
.calendar-day--muted { color: #c6bec5; }
.calendar-day--today { display: grid; place-items: center; width: 28px; min-height: 28px !important; margin: 7px auto; padding: 0 !important; border: 0 !important; border-radius: 50%; color: var(--white); background: var(--mauve); }
.calendar-event { position: absolute; top: 190px; left: calc(42.85% + 3px); width: calc(14.28% - 6px); min-height: 75px !important; display: block; padding: 7px !important; border: 0 !important; border-radius: 6px; color: var(--white); background: var(--mauve); overflow: hidden; }
.calendar-event span { display: block; width: 5px; height: 5px; margin-bottom: 8px; border-radius: 50%; background: var(--blush); }
.calendar-event strong, .calendar-event small { display: block; white-space: nowrap; font-size: 0.48rem; line-height: 1.25; }
.calendar-event small { margin-top: 4px; color: rgba(255,255,255,0.78); }
.product-preview__rail { display: flex; flex-direction: column; gap: 12px; padding: 20px 13px; background: #fbfafb; }
.preview-card { padding: 14px; border: 1px solid #e9e3e8; border-radius: 11px; background: var(--white); box-shadow: 0 8px 18px rgba(52, 26, 49, 0.05); }
.preview-card--success { border-color: rgba(142, 77, 110, 0.22); background: #fbf7f9; }
.preview-card__title { display: flex; align-items: flex-start; justify-content: space-between; gap: 7px; font-size: 0.65rem; line-height: 1.25; }
.checkmark { display: grid; place-items: center; width: 18px; height: 18px; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: #6e9f7d; font-size: 0.65rem; }
.preview-card p { margin: 10px 0 2px; font-size: 0.64rem; font-weight: 700; }
.preview-card > span { color: #8a7b86; font-size: 0.52rem; }
.preview-card button { width: 100%; margin-top: 12px; padding: 7px; border: 1px solid #ded4db; border-radius: 5px; color: var(--plum); background: var(--white); font-size: 0.54rem; }
.timeline { position: relative; margin-top: 10px; }
.timeline::before { content: ""; position: absolute; top: 9px; bottom: 11px; left: 6px; width: 1px; background: #ddc9d3; }
.timeline__row { position: relative; display: flex; align-items: flex-start; gap: 7px; margin-top: 9px; }
.timeline__dot { position: relative; z-index: 1; display: grid; place-items: center; width: 13px; height: 13px; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--mauve); font-size: 0.48rem; }
.timeline__row p { margin: 0; font-size: 0.52rem; line-height: 1.2; }
.timeline__row b, .timeline__row small { display: block; }
.timeline__row small { margin-top: 2px; color: #8b7b87; font-size: 0.47rem; }
.preview-card--readiness { margin-top: auto; }
.preview-card--readiness .preview-card__title small { color: #8b7b87; font-size: 0.46rem; }
.preview-card--readiness label { display: flex; align-items: center; gap: 5px; margin-top: 8px; color: #685c66; font-size: 0.49rem; }
.preview-card--readiness input { accent-color: var(--mauve); }
.preview-card--readiness label span { margin-left: auto; color: #8b7b87; }

.problem { padding: clamp(90px, 10vw, 150px) 0 134px; background: radial-gradient(circle at 80% 35%, rgba(142, 77, 110, 0.16), transparent 26%), var(--plum-deep); }
.problem__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.section-intro { max-width: 520px; }
.section-kicker { margin-bottom: 18px; color: var(--blush); font-size: 0.71rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
h2 { margin-bottom: 24px; font-size: clamp(2.6rem, 4.6vw, 4.75rem); }
.section-intro p:not(.section-kicker) { margin-bottom: 0; color: rgba(255, 255, 255, 0.74); font-size: 1.02rem; line-height: 1.7; }
.problem-list { padding-top: 6px; }
.problem-row { display: flex; align-items: center; gap: 21px; padding: 19px 0; border-bottom: 1px solid var(--line-light); }
.problem-row:first-child { padding-top: 0; }
.icon-disc { display: grid; place-items: center; width: 53px; height: 53px; flex: 0 0 auto; border: 1px solid rgba(231, 179, 196, 0.56); border-radius: 50%; color: var(--blush); background: rgba(142, 77, 110, 0.4); }
.icon-disc svg { width: 23px; height: 23px; }
.problem-row h3, .feature-item h3, .step h3, .audience-item h3 { margin-bottom: 5px; font-size: 1rem; line-height: 1.25; }
.problem-row p { margin: 0; color: rgba(255,255,255,0.58); font-size: 0.82rem; }

.features { padding: clamp(92px, 10vw, 148px) 0; }
.features__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(58px, 9vw, 132px); align-items: start; }
.section-intro--light p:not(.section-kicker) { color: var(--muted); }
.section-intro--light .section-kicker, .how-it-works .section-kicker, .story .section-kicker { color: var(--mauve); }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 38px; row-gap: 30px; }
.feature-item { display: flex; align-items: flex-start; gap: 15px; }
.feature-icon { display: grid; place-items: center; width: 43px; height: 43px; flex: 0 0 auto; border-radius: 50%; color: var(--mauve); background: var(--soft-blush); }
.feature-icon svg { width: 21px; height: 21px; }
.feature-item h3 { color: var(--plum); }
.feature-item p { margin: 0; color: var(--muted); font-size: 0.79rem; line-height: 1.5; }

.how-it-works { padding: clamp(90px, 9vw, 130px) 0 120px; }
.section-heading--center { max-width: 690px; margin: 0 auto 72px; text-align: center; }
.section-heading--center h2 { color: var(--plum); margin-bottom: 0; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.steps::before { content: ""; position: absolute; top: 74px; right: 9%; left: 9%; height: 1px; border-top: 1px dashed rgba(142, 77, 110, 0.45); }
.step { position: relative; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 17px; }
.step__number { align-self: start; color: rgba(142, 77, 110, 0.38); font-family: var(--display); font-size: 3.7rem; line-height: 0.9; }
.step__icon { position: relative; z-index: 1; display: grid; place-items: center; width: 74px; height: 74px; border: 1px solid rgba(142, 77, 110, 0.45); border-radius: 50%; color: var(--mauve); background: var(--soft-blush); }
.step__icon svg { width: 27px; height: 27px; }
.step h3 { color: var(--plum); }
.step p { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.5; }

.audience { padding: clamp(90px, 10vw, 148px) 0; }
.audience__grid { position: relative; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; }
.audience-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 36px; padding-top: 12px; }
.audience-item { display: flex; gap: 15px; }
.audience-icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid var(--blush); border-radius: 50%; color: var(--blush); }
.audience-icon svg { width: 20px; height: 20px; }
.audience-item h3 { color: var(--white); }
.audience-item p { margin: 0; color: rgba(255,255,255,0.61); font-size: 0.76rem; line-height: 1.5; }
.audience__line-art { position: absolute; right: -40px; bottom: -120px; width: 250px; color: var(--mauve); opacity: 0.55; pointer-events: none; }

.story { padding: clamp(88px, 9vw, 132px) 0; }
.story__grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(50px, 10vw, 142px); align-items: center; }
.story__visual { display: grid; gap: 20px; max-width: 380px; }
.story__photo { margin: 0; }
.story__photo-frame { overflow: hidden; padding: 9px; border: 1px solid rgba(142, 77, 110, 0.2); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.7); box-shadow: 0 22px 50px rgba(61, 42, 63, 0.13); }
.story__photo-frame img { width: 100%; aspect-ratio: 4 / 5; border-radius: 20px; object-fit: cover; object-position: 50% 34%; }
.story__photo figcaption { margin: 12px 4px 0; color: var(--muted); font-size: 0.76rem; letter-spacing: 0.015em; }
.story__mark { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid rgba(142, 77, 110, 0.12); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 18px 42px rgba(61, 42, 63, 0.08); }
.story__mark img { width: 64px; height: 64px; flex: 0 0 auto; border-radius: 16px; box-shadow: 0 12px 25px rgba(61, 42, 63, 0.14); }
.story__rule { display: block; width: 1px; height: 42px; flex: 0 0 auto; background: var(--mauve); }
.story__mark p { margin: 0; color: var(--mauve); font-family: var(--display); font-size: 1rem; font-style: italic; line-height: 1.35; }
.story__copy { max-width: 660px; }
.story__copy h2 { color: var(--plum); }
.story__copy p:not(.section-kicker):not(.story__support) { max-width: 600px; margin-bottom: 19px; color: var(--muted); font-size: 1.03rem; line-height: 1.75; }
.story__support { display: inline-block; margin: 10px 0 0; padding-top: 14px; border-top: 1px solid var(--blush); color: var(--mauve); font-family: var(--display); font-size: 1.18rem; font-style: italic; }

.agency { padding: clamp(92px, 10vw, 148px) 0; background: var(--plum-deep); }
.agency__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(50px, 8vw, 112px); align-items: center; }
.agency__benefits { display: grid; gap: 16px; margin-top: 33px; }
.agency__benefits span { display: flex; gap: 12px; align-items: center; max-width: 470px; padding-top: 14px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,0.74); font-size: 0.82rem; }
.agency__benefits b { color: var(--blush); font-family: var(--display); font-size: 1.1rem; font-weight: 400; }
.account-hub { border: 1px solid rgba(255,255,255,0.18); border-radius: 20px; background: #fbf9fa; color: var(--plum); box-shadow: var(--shadow); overflow: hidden; }
.account-hub__top { display: flex; align-items: center; gap: 15px; padding: 15px 17px; border-bottom: 1px solid #ece5ea; }
.hub-wordmark { display: inline-flex; align-items: center; gap: 6px; color: var(--plum); font-family: var(--display); font-size: 1rem; letter-spacing: 0.06em; }
.hub-wordmark img { width: 21px; height: 21px; border-radius: 6px; }
.account-hub__top > span { padding-left: 15px; border-left: 1px solid #ddd1da; color: #765f72; font-size: 0.78rem; }
.account-hub__top button { margin-left: auto; padding: 8px 11px; border: 0; border-radius: 6px; color: var(--white); background: var(--mauve); font-size: 0.63rem; }
.account-hub__subtitle { margin: 0; padding: 17px 17px 11px; color: #7b6d78; font-size: 0.68rem; }
.account-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 0 17px 17px; }
.account-card { display: flex; min-height: 172px; flex-direction: column; align-items: center; padding: 16px 10px 12px; border: 1px solid #e9e1e7; border-radius: 9px; background: var(--white); text-align: center; }
.account-card__mark { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 10px; border-radius: 50%; color: var(--white); background: var(--mauve); font-family: var(--display); font-size: 1.25rem; }
.account-card__mark--blush { color: var(--plum); background: var(--blush); }
.account-card__mark--soft { color: var(--mauve); background: var(--soft-blush); }
.account-card strong { font-size: 0.72rem; }
.account-card small { margin-top: 4px; color: #948692; font-size: 0.54rem; }
.account-card a { margin-top: auto; color: var(--mauve); font-size: 0.58rem; }
.account-hub__footer { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-top: 1px solid #ece5ea; color: var(--mauve); font-size: 0.62rem; }
.account-hub__footer i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--blush); }

.final-cta { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(110deg, var(--mauve), #bb6f8f); }
.final-cta__line { position: absolute; inset: 0; opacity: 0.35; background-image: radial-gradient(ellipse at 12% 100%, transparent 0 67%, rgba(255,255,255,0.7) 67.4% 67.7%, transparent 68.1%), radial-gradient(ellipse at 94% 0%, transparent 0 63%, rgba(255,255,255,0.45) 63.4% 63.7%, transparent 64.1%); }
.final-cta__inner { position: relative; display: grid; grid-template-columns: 1.2fr 0.78fr auto; align-items: center; gap: 42px; padding-top: 68px; padding-bottom: 68px; }
.final-cta h2 { max-width: 630px; margin: 0; font-size: clamp(2.5rem, 4.2vw, 4rem); }
.final-cta p { max-width: 340px; margin: 0; color: rgba(255,255,255,0.82); font-size: 0.9rem; line-height: 1.6; }

.footer { padding: 47px 0 20px; }
.footer__grid { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 30px; padding-bottom: 38px; }
.footer__brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-family: var(--display); font-size: 1.7rem; letter-spacing: 0.08em; }
.footer__brand img { width: 40px; height: 40px; border-radius: 11px; }
.footer__tagline { margin: 0; color: var(--blush); font-family: var(--display); font-size: 1rem; font-style: italic; }
.footer__parent { margin: 0; color: rgba(255,255,255,0.67); font-size: 0.8rem; }
.footer__links { display: flex; gap: 23px; color: rgba(255,255,255,0.8); font-size: 0.78rem; }
.footer__links a:hover { color: var(--blush); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,0.43); font-size: 0.67rem; }

@media (max-width: 1050px) {
  .hero__grid { grid-template-columns: 0.73fr 1.27fr; gap: 38px; }
  .product-preview__shell { grid-template-columns: 104px minmax(0, 1fr) 175px; }
  .mini-nav { font-size: 0.56rem; }
  .mini-nav svg { width: 13px; height: 13px; }
  .problem__grid, .features__grid, .agency__grid { gap: 54px; }
  .final-cta__inner { grid-template-columns: 1.1fr 0.8fr; }
  .final-cta .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 800px) {
  .container { width: min(calc(100% - 32px), var(--max-width)); }
  .nav { min-height: 74px; }
  .brand__full { display: none; }
  .brand__square { display: block; }
  .brand__name { display: inline; margin-left: 9px; color: var(--plum); font-family: var(--display); font-size: 1.34rem; letter-spacing: 0.08em; }
  .nav-toggle { display: block; }
  .nav__menu { position: fixed; top: 74px; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 25px; padding: 30px 24px; background: var(--white); opacity: 0; transform: translateY(-8px); transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease; }
  .nav__menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; font-size: 1.05rem; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__menu .button { width: 100%; }
  .hero { padding-top: 70px; }
  .hero__line-art { width: 330px; left: -120px; opacity: 0.35; }
  .hero__grid, .problem__grid, .features__grid, .story__grid, .agency__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 690px; }
  .product-preview { transform: none; }
  .product-preview__shell { grid-template-columns: minmax(0, 1fr) 210px; }
  .product-preview__sidebar { display: none; }
  .problem__grid, .features__grid, .agency__grid { gap: 48px; }
  .section-intro { max-width: 680px; }
  .audience__grid { grid-template-columns: 1fr; }
  .audience-list { padding-top: 0; }
  .audience__line-art { right: -90px; bottom: -180px; width: 220px; opacity: 0.38; }
  .story__visual { max-width: 400px; }
  .final-cta__inner { grid-template-columns: 1fr; gap: 24px; padding-top: 58px; padding-bottom: 58px; }
  .final-cta .button { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .footer__parent { justify-self: start; }
  .footer__links { justify-self: end; }
}

@media (max-width: 560px) {
  h1 { max-width: 430px; font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.4rem); }
  .hero { min-height: auto; padding-bottom: 82px; }
  .hero__supporting { font-size: 0.95rem; }
  .product-preview__browser-bar { gap: 8px; padding: 0 11px; }
  .browser-url { font-size: 0.58rem; }
  .product-preview__shell { grid-template-columns: 1fr; }
  .product-preview__main { padding: 20px 14px 14px; }
  .product-preview__rail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px; }
  .preview-card--readiness { grid-column: 1 / -1; }
  .calendar-grid > * { min-height: 38px; padding: 7px 5px; }
  .calendar-event { top: 169px; min-height: 66px !important; }
  .problem, .features, .how-it-works, .audience, .story, .agency { padding-top: 82px; padding-bottom: 92px; }
  .problem-row { gap: 14px; }
  .problem-row h3 { font-size: 0.92rem; }
  .feature-list, .audience-list { grid-template-columns: 1fr; }
  .feature-list { row-gap: 25px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { top: 9%; bottom: 9%; left: 42px; width: 1px; height: auto; border-top: 0; border-left: 1px dashed rgba(142, 77, 110, 0.45); }
  .step { grid-template-columns: auto auto 1fr; }
  .step__number { font-size: 2.9rem; }
  .step__icon { width: 62px; height: 62px; }
  .step__icon svg { width: 23px; height: 23px; }
  .story__mark { padding: 17px 18px; }
  .story__mark img { width: 58px; height: 58px; }
  .account-hub__top { flex-wrap: wrap; }
  .account-hub__top > span { padding-left: 0; border-left: 0; }
  .account-hub__top button { width: 100%; margin-left: 0; }
  .account-cards { grid-template-columns: 1fr; }
  .account-card { min-height: 130px; }
  .footer__grid { grid-template-columns: 1fr; gap: 17px; }
  .footer__parent, .footer__links { justify-self: start; }
  .footer__bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
