:root {
  --paper: #f5f2eb;
  --paper-2: #ece8df;
  --ink: #20231f;
  --muted: #6d716c;
  --green: #163e2c;
  --green-2: #235b3e;
  --orange: #f15d22;
  --orange-2: #ff7b3e;
  --blue: #2446b8;
  --line: rgba(32, 35, 31, .13);
  --line-light: rgba(255, 255, 255, .15);
  --white: #fffdf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Instrument Sans", sans-serif;
  --container: min(1180px, calc(100vw - 40px));
  --shadow: 0 24px 80px rgba(29, 35, 28, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body::before { position: fixed; z-index: 20; inset: 0; content: ""; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
button, a { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 118px 0; }
.section-shell { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: white; text-decoration: none; border-radius: 8px; background: var(--green); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

.announcement { display: flex; height: 34px; align-items: center; justify-content: center; gap: 9px; color: rgba(255, 255, 255, .82); background: var(--green); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.announcement-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-2); box-shadow: 0 0 0 5px rgba(241, 93, 34, .14); animation: pulse 2s ease infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(241, 93, 34, 0); } }
.site-header { position: relative; z-index: 30; border-bottom: 1px solid var(--line); background: rgba(245, 242, 235, .92); backdrop-filter: blur(16px); }
.nav { display: grid; height: 78px; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; letter-spacing: .12em; text-decoration: none; }
.brand b { color: var(--orange); font-weight: 700; }
.brand-mark { display: grid; width: 34px; height: 34px; color: white; border-radius: 50% 50% 50% 10px; background: var(--green); place-items: center; }
.brand-mark svg { width: 17px; height: 17px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: #4f554f; font-size: 13px; text-decoration: none; }
.nav-links a:hover { color: var(--orange); }
.nav > .button { justify-self: end; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; font-size: 13px; font-weight: 700; text-decoration: none; border: 0; border-radius: 5px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; transition: transform .2s ease; }
.button:hover svg { transform: translateX(3px); }
.button-primary { color: white; background: var(--orange); box-shadow: 0 10px 26px rgba(241, 93, 34, .2); }
.button-primary:hover { background: #dc4c16; box-shadow: 0 14px 34px rgba(241, 93, 34, .27); }
.button-ink { color: white; background: var(--ink); }
.button-ink:hover { background: var(--green); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button-wide { width: 100%; min-height: 61px; }

.hero { padding: 82px 0 94px; background: radial-gradient(circle at 78% 8%, rgba(241, 93, 34, .11), transparent 24rem), linear-gradient(180deg, #f8f6f0, var(--paper)); }
.hero::before { position: absolute; top: -160px; right: 10%; width: 360px; height: 360px; content: ""; border: 1px solid rgba(22, 62, 44, .08); border-radius: 50%; box-shadow: 0 0 0 50px rgba(22, 62, 44, .025), 0 0 0 100px rgba(22, 62, 44, .018); }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 62px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow i { width: 26px; height: 1px; background: var(--orange); }
.eyebrow-light { color: rgba(255, 255, 255, .72); }
.hero h1, .section-heading h2, .offer-copy h2, .guarantee h2 { margin: 22px 0 22px; font-family: var(--serif); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
.hero h1 { max-width: 600px; font-size: clamp(54px, 5.4vw, 78px); }
h1 em, h2 em { color: var(--orange); font-weight: 500; }
.hero-lead { max-width: 570px; margin: 0; color: #626861; font-size: 17px; line-height: 1.68; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.text-link { color: var(--green); font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--orange); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 25px; padding: 0; color: #6a7069; font-size: 10px; list-style: none; }
.trust-row li { display: inline-flex; align-items: center; gap: 5px; }
.trust-row svg { width: 12px; height: 12px; color: var(--green); stroke-width: 2.5; }
.hero-visual { position: relative; padding: 17px 0 23px 18px; }
.hero-frame { position: relative; z-index: 1; margin: 0; overflow: hidden; border: 8px solid rgba(255, 255, 255, .75); border-radius: 3px; background: #ddd6c8; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.hero-frame::after { position: absolute; inset: 0; content: ""; box-shadow: inset 0 0 0 1px rgba(32, 35, 31, .08); pointer-events: none; }
.hero-frame img { aspect-ratio: 16 / 9; object-fit: cover; }
.visual-tag { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 10px 13px; color: white; border-radius: 2px; background: var(--green); box-shadow: 0 10px 30px rgba(22, 62, 44, .2); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.visual-tag span { color: var(--orange-2); }
.visual-tag-top { top: 0; left: 0; }
.visual-tag-bottom { right: -8px; bottom: 4px; }
.color-stack { position: absolute; z-index: 2; right: -12px; top: 42px; display: grid; gap: 5px; }
.color-stack i { width: 13px; height: 43px; background: var(--orange); }
.color-stack i:nth-child(2) { background: var(--green); }.color-stack i:nth-child(3) { background: #d9d0c2; }.color-stack i:nth-child(4) { background: var(--blue); }

.value-strip { padding: 32px 0; color: white; background: var(--ink); }
.value-strip-grid { display: grid; grid-template-columns: 1.2fr 1px .55fr auto; align-items: center; gap: 34px; }
.value-strip p { margin: 0; font-family: var(--serif); font-size: 25px; line-height: 1.1; }
.value-strip p span, .value-strip p strong { display: block; }.value-strip p span { color: #9fa49d; font-weight: 500; }.value-strip p strong { font-weight: 600; }
.value-divider { width: 1px; height: 58px; background: var(--line-light); }
.mini-price { display: grid; gap: 2px; }
.mini-price > span { color: #9fa49d; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.mini-price strong { font-family: var(--serif); font-size: 32px; line-height: 1; }.mini-price strong small { color: var(--orange-2); font-family: var(--sans); font-size: 10px; }.mini-price strong b { font-weight: 600; }
.mini-price em { color: #9fa49d; font-size: 10px; font-style: normal; }

.section-heading { max-width: 690px; margin-bottom: 56px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { margin-top: 18px; font-size: clamp(46px, 5vw, 64px); }
.section-heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-heading.split { display: grid; max-width: none; grid-template-columns: 1fr .7fr; align-items: end; gap: 80px; }
.section-heading.split h2 { margin-bottom: 0; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-card { position: relative; overflow: hidden; padding: 40px; border: 1px solid var(--line); border-radius: 3px; }
.comparison-card::before { position: absolute; top: 0; left: 0; width: 100%; height: 3px; content: ""; background: #b5b8b1; }
.comparison-index { font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.comparison-card h3 { max-width: 350px; margin: 45px 0 30px; font-family: var(--serif); font-size: 33px; font-weight: 600; line-height: 1.05; }
.comparison-card ul { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.comparison-card li { display: flex; align-items: flex-start; gap: 12px; color: #686d67; font-size: 13px; line-height: 1.5; }
.comparison-card li svg { flex: 0 0 auto; width: 17px; height: 17px; }
.comparison-before { background: #eeebe4; }.comparison-before::before { background: #a4a8a2; }.comparison-before svg { color: #92968f; }
.comparison-after { color: white; border-color: transparent; background: var(--green); box-shadow: 0 22px 60px rgba(22, 62, 44, .15); }.comparison-after::before { background: var(--orange); }.comparison-after .comparison-index, .comparison-after li { color: rgba(255, 255, 255, .76); }.comparison-after svg { color: var(--orange-2); }

.journey-section { color: white; background: var(--green); }
.journey-section .section-heading p { color: rgba(255, 255, 255, .6); }
.journey { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin: 0; padding: 20px 0 0; list-style: none; }
.journey::before { position: absolute; top: 51px; right: 7%; left: 7%; height: 1px; content: ""; border-top: 1px dashed rgba(255, 255, 255, .22); }
.journey li { position: relative; z-index: 1; padding-right: 26px; }
.journey li > span { display: block; margin-bottom: 15px; color: var(--orange-2); font-size: 9px; font-weight: 700; }
.journey li > i { display: grid; width: 34px; height: 34px; margin-bottom: 28px; color: var(--green); border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 8px var(--green); place-items: center; }
.journey li > i svg { width: 16px; height: 16px; }
.journey strong { display: block; margin-bottom: 9px; font-family: var(--serif); font-size: 22px; font-weight: 600; }
.journey p { margin: 0; color: rgba(255, 255, 255, .55); font-size: 11px; line-height: 1.55; }

.platform { overflow: hidden; background: #f8f6f1; }
.product-stage { position: relative; }
.product-window { display: grid; min-height: 650px; grid-template-columns: 220px 1fr; overflow: hidden; color: #e7e4de; border: 10px solid white; border-radius: 12px; background: #0d0e0d; box-shadow: 0 40px 110px rgba(24, 31, 25, .2); }
.product-sidebar { padding: 25px 17px; border-right: 1px solid rgba(255, 255, 255, .08); background: #0a0b0a; }
.product-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 38px; font-size: 11px; font-weight: 600; letter-spacing: .1em; }.product-brand b { color: var(--orange); }.product-brand span { display: grid; width: 29px; height: 29px; color: white; border-radius: 50% 50% 50% 7px; background: var(--orange); place-items: center; }.product-brand svg { width: 14px; }
.product-sidebar > p { margin: 24px 10px 9px; color: #585d58; font-size: 7px; font-weight: 700; letter-spacing: .18em; }
.product-nav { display: flex; width: 100%; height: 39px; align-items: center; gap: 10px; padding: 0 11px; color: #777d77; text-align: left; border: 0; border-radius: 5px; background: transparent; font-size: 9px; }.product-nav svg { width: 14px; height: 14px; }.product-nav.active { color: white; background: rgba(241, 93, 34, .13); }.product-nav.active svg { color: var(--orange); }
.product-main { min-width: 0; }
.product-topbar { display: flex; height: 65px; align-items: center; justify-content: space-between; padding: 0 25px; color: #6c716c; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 9px; }.product-topbar b { color: #b5b9b4; }.product-topbar i { display: grid; width: 28px; height: 28px; color: #111; border-radius: 50%; background: var(--orange); font-size: 8px; font-style: normal; place-items: center; }
.product-content { padding: 40px; background: radial-gradient(circle at 100% 0, rgba(241, 93, 34, .11), transparent 23rem), #101210; }
.product-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }.product-head small { color: var(--orange); font-size: 7px; letter-spacing: .17em; }.product-head h3 { margin: 8px 0 4px; font-family: var(--serif); font-size: 38px; font-weight: 500; }.product-head p { margin: 0; color: #747a74; font-size: 10px; }.product-head button { padding: 11px 15px; color: white; border: 0; border-radius: 4px; background: var(--orange); font-size: 9px; font-weight: 700; }
.product-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0 14px; }.product-metrics > div { min-height: 106px; padding: 18px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 6px; background: rgba(255, 255, 255, .018); }.product-metrics span { display: block; color: #646a64; font-size: 7px; letter-spacing: .15em; }.product-metrics strong { display: block; margin-top: 16px; font-family: var(--serif); font-size: 31px; font-weight: 500; }.product-metrics small { color: var(--orange); font-family: var(--sans); font-size: 10px; }
.product-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }.brand-preview, .next-actions { min-height: 255px; padding: 18px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 6px; background: #0c0e0c; }
.brand-preview { display: grid; grid-template-columns: 1fr 32px; gap: 15px; }.brand-poster { position: relative; overflow: hidden; padding: 24px; color: #1a1d19; background: #dbd3c6; }.brand-poster::after { position: absolute; right: -45px; bottom: -45px; width: 180px; height: 180px; content: ""; border-radius: 50%; background: var(--orange); }.brand-poster span { display: block; font-family: var(--serif); font-size: 84px; line-height: .8; }.brand-poster b { position: relative; z-index: 1; display: block; margin-top: 45px; font-family: var(--serif); font-size: 28px; font-weight: 600; }.brand-poster em { position: relative; z-index: 1; display: block; margin-top: 3px; color: #5c635a; font-size: 7px; font-style: normal; letter-spacing: .16em; text-transform: uppercase; }.brand-swatches { display: grid; gap: 7px; }.brand-swatches i { background: var(--orange); }.brand-swatches i:nth-child(2) { background: var(--green-2); }.brand-swatches i:nth-child(3) { background: #d9d0c2; }.brand-swatches i:nth-child(4) { background: var(--blue); }
.next-actions > span { display: block; margin-bottom: 10px; color: #656b65; font-size: 7px; letter-spacing: .15em; }.next-actions button { display: grid; width: 100%; grid-template-columns: 23px 1fr; padding: 12px 0; color: #c9cdc8; text-align: left; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .07); background: transparent; }.next-actions button i { grid-row: span 2; color: var(--orange); font-size: 7px; font-style: normal; }.next-actions button b { font-size: 9px; font-weight: 500; }.next-actions button small { margin-top: 3px; color: #5e635e; font-size: 7px; }
.stage-note { position: absolute; right: 35px; bottom: -30px; display: grid; width: 390px; grid-template-columns: auto 1fr; gap: 18px; padding: 19px 22px; color: white; border-left: 3px solid var(--orange); background: var(--green); box-shadow: 0 18px 45px rgba(22, 62, 44, .2); }.stage-note span { color: var(--orange-2); font-size: 8px; font-weight: 700; letter-spacing: .12em; }.stage-note p { margin: 0; color: rgba(255, 255, 255, .68); font-size: 10px; line-height: 1.5; }

.included { padding-top: 145px; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.module-card { position: relative; min-height: 285px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .18); transition: background .2s ease, transform .2s ease; }.module-card:hover { z-index: 2; background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.module-card > span { color: #939790; font-size: 9px; font-weight: 700; }.module-card > svg { display: block; width: 29px; height: 29px; margin: 43px 0 22px; color: var(--orange); }.module-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 600; }.module-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }.module-card small { position: absolute; right: 32px; bottom: 25px; color: #a0a49e; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.module-featured { color: white; background: var(--green); }.module-featured:hover { background: #113725; }.module-featured p { color: rgba(255, 255, 255, .62); }.module-featured > span, .module-featured small { color: rgba(255, 255, 255, .42); }.module-featured > svg { color: var(--orange-2); }

.audience { color: white; background: var(--ink); }
.audience-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }.audience-copy h2 { margin: 20px 0; font-family: var(--serif); font-size: 58px; font-weight: 600; line-height: 1; }.audience-copy p { color: #92978f; font-size: 14px; line-height: 1.7; }
.audience-list { border-top: 1px solid var(--line-light); }.audience-list article { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 24px 0; border-bottom: 1px solid var(--line-light); }.audience-list article > span { color: var(--orange-2); font-size: 9px; }.audience-list strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 600; }.audience-list p { margin: 5px 0 0; color: #8f958e; font-size: 11px; line-height: 1.5; }

.guarantee { background: #eee9df; }
.guarantee-card { display: grid; max-width: 940px; grid-template-columns: 170px 1fr; align-items: center; gap: 55px; padding: 48px 60px; border: 1px solid rgba(22, 62, 44, .18); background: rgba(255, 255, 255, .3); box-shadow: 0 24px 70px rgba(35, 45, 36, .07); }
.guarantee-seal { display: grid; width: 150px; height: 150px; align-content: center; justify-items: center; color: white; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px #eee9df, 0 0 0 9px rgba(22, 62, 44, .22); }.guarantee-seal svg { width: 28px; height: 28px; color: var(--orange-2); }.guarantee-seal span { margin-top: 7px; font-family: var(--serif); font-size: 38px; line-height: 1; }.guarantee-seal small { color: rgba(255, 255, 255, .6); font-size: 8px; letter-spacing: .2em; }
.guarantee h2 { margin: 14px 0 10px; font-size: 43px; }.guarantee p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.faq { background: #f8f6f1; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 100px; }.faq .section-heading { position: sticky; top: 40px; margin: 0; }.faq .section-heading h2 { font-size: 58px; }
.accordion { border-top: 1px solid var(--line); }.faq-item { border-bottom: 1px solid var(--line); }.faq-item button { display: flex; width: 100%; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; padding: 0; color: var(--ink); text-align: left; border: 0; background: transparent; cursor: pointer; font-size: 14px; font-weight: 600; }.faq-item button svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--orange); transition: transform .2s ease; }.faq-item.open button svg { transform: rotate(45deg); }.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }.faq-answer > p { min-height: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.7; }.faq-item.open .faq-answer { grid-template-rows: 1fr; }.faq-item.open .faq-answer > p { padding: 0 30px 25px 0; }

.final-offer { position: relative; overflow: hidden; padding: 115px 0; color: white; background: var(--green); }.final-offer::before { position: absolute; right: -120px; bottom: -230px; width: 600px; height: 600px; content: ""; border: 1px solid rgba(255, 255, 255, .07); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018); }
.offer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .65fr; align-items: center; gap: 100px; }.offer-copy h2 { font-size: 61px; }.offer-copy > p { max-width: 600px; color: rgba(255, 255, 255, .63); font-size: 14px; line-height: 1.7; }.offer-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 32px 0 0; padding: 0; list-style: none; }.offer-copy li { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .76); font-size: 11px; }.offer-copy li svg { width: 14px; color: var(--orange-2); }
.checkout-card { padding: 38px; color: var(--ink); border-top: 4px solid var(--orange); border-radius: 4px; background: var(--white); box-shadow: 0 35px 90px rgba(0, 0, 0, .25); }.checkout-tag { color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .16em; }.checkout-card > p { margin: 28px 0 4px; color: var(--muted); font-size: 11px; }.checkout-price { display: flex; align-items: flex-start; gap: 6px; }.checkout-price small { margin-top: 13px; color: var(--green); font-size: 12px; font-weight: 700; }.checkout-price strong { font-family: var(--serif); font-size: 64px; font-weight: 600; letter-spacing: -.05em; line-height: 1; }.checkout-installments { display: block; margin: 5px 0 27px; color: var(--muted); font-size: 11px; }.checkout-installments b { color: var(--ink); }.checkout-safe { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; color: var(--green); }.checkout-safe svg { width: 22px; height: 22px; }.checkout-safe span { display: grid; color: var(--muted); font-size: 9px; }.checkout-safe strong { color: var(--green); font-size: 10px; }.checkout-note { display: block; margin-top: 18px; color: #9da19a; text-align: center; font-size: 8px; line-height: 1.45; }

.footer { padding: 32px 0; color: #a7aba4; background: #111311; }.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }.brand-footer { color: white; }.brand-footer .brand-mark { width: 30px; height: 30px; background: var(--orange); }.footer p { margin: 0; font-family: var(--serif); font-size: 16px; }.footer-grid > div:last-child { display: flex; justify-content: flex-end; gap: 22px; }.footer a { font-size: 10px; text-decoration: none; }

.mobile-cta { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 13px; border-top: 1px solid var(--line); background: rgba(255, 253, 248, .96); box-shadow: 0 -10px 35px rgba(20, 30, 20, .12); backdrop-filter: blur(14px); transform: translateY(110%); transition: transform .25s ease; }.mobile-cta.visible { transform: translateY(0); }.mobile-cta > div { display: grid; }.mobile-cta span { color: var(--muted); font-size: 8px; text-transform: uppercase; }.mobile-cta strong { font-family: var(--serif); font-size: 22px; }.mobile-cta strong b { font-weight: 600; }.mobile-cta .button { min-height: 45px; padding-inline: 18px; }
.toast { position: fixed; z-index: 100; right: 20px; bottom: 20px; display: grid; width: min(370px, calc(100vw - 30px)); grid-template-columns: 33px 1fr; gap: 11px; padding: 14px; color: white; border-left: 3px solid var(--orange); background: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .2s ease, transform .2s ease; }.toast.show { opacity: 1; transform: translateY(0); }.toast > svg { width: 24px; color: var(--orange); }.toast strong, .toast span { display: block; }.toast strong { font-size: 11px; }.toast span { margin-top: 3px; color: #aeb2ab; font-size: 9px; line-height: 1.4; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1); }.reveal.in-view { opacity: 1; transform: translateY(0); }.reveal[data-delay="1"] { transition-delay: .1s; }.reveal[data-delay="2"] { transition-delay: .2s; }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }.nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }.hero-copy { max-width: 720px; }.hero h1 { max-width: 720px; }.hero-visual { max-width: 760px; margin-inline: auto; }
  .value-strip-grid { grid-template-columns: 1fr 1px .7fr; }.value-strip-grid > .button { display: none; }
  .journey { grid-template-columns: repeat(3, 1fr); row-gap: 45px; }.journey::before { display: none; }
  .product-window { grid-template-columns: 180px 1fr; }.product-content { padding: 28px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .faq-grid { gap: 55px; }.offer-grid { gap: 50px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 660px); }
  .section { padding: 80px 0; }
  .announcement { height: 31px; font-size: 8px; }
  .nav { height: 65px; }.nav > .button { display: none; }.brand-mark { width: 31px; height: 31px; }
  .hero { padding: 65px 0 72px; }.hero h1 { font-size: 49px; }.hero-lead { font-size: 15px; }.hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }.hero-actions .button { width: 100%; }.text-link { text-align: center; }.trust-row { justify-content: center; gap: 10px; }.hero-visual { padding-left: 5px; }.hero-frame { border-width: 5px; }.visual-tag { padding: 8px 9px; font-size: 7px; }.color-stack { display: none; }
  .value-strip { padding: 25px 0; }.value-strip-grid { grid-template-columns: 1fr auto; gap: 18px; }.value-divider { display: none; }.value-strip p { font-size: 20px; }.mini-price { text-align: right; }.mini-price strong { font-size: 27px; }
  .section-heading { margin-bottom: 38px; }.section-heading h2 { font-size: 46px; }.section-heading.split { grid-template-columns: 1fr; gap: 20px; }.section-heading.split p { max-width: 520px; }
  .comparison-grid { grid-template-columns: 1fr; }.comparison-card { padding: 30px 25px; }.comparison-card h3 { margin-top: 35px; font-size: 30px; }
  .journey { grid-template-columns: 1fr 1fr; gap: 40px 20px; }.journey li { padding-right: 8px; }.journey li > i { margin-bottom: 20px; }.journey p { font-size: 10px; }
  .product-window { min-height: 560px; grid-template-columns: 1fr; }.product-sidebar { display: none; }.product-content { padding: 22px 16px; }.product-head h3 { font-size: 30px; }.product-metrics { grid-template-columns: repeat(3, 1fr); }.product-metrics > div { min-height: 90px; padding: 13px; }.product-metrics strong { font-size: 25px; }.product-grid { grid-template-columns: 1fr; }.next-actions { display: none; }.brand-preview { min-height: 225px; }.stage-note { position: relative; right: auto; bottom: auto; width: calc(100% - 20px); margin: -18px auto 0; grid-template-columns: 1fr; gap: 6px; }
  .included { padding-top: 105px; }.module-grid { grid-template-columns: 1fr; }.module-card { min-height: 250px; }
  .audience-grid, .faq-grid, .offer-grid { grid-template-columns: 1fr; gap: 45px; }.audience-copy h2, .faq .section-heading h2, .offer-copy h2 { font-size: 48px; }.faq .section-heading { position: static; }.offer-copy ul { grid-template-columns: 1fr; }
  .guarantee-card { grid-template-columns: 1fr; gap: 35px; padding: 38px 25px; text-align: center; }.guarantee-seal { margin-inline: auto; }.guarantee-card .eyebrow { justify-content: center; }.guarantee h2 { font-size: 36px; }
  .checkout-card { padding: 30px 22px; }
  .footer { padding-bottom: 92px; }.footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }.footer-grid > div:last-child { justify-content: center; }
  .mobile-cta { display: flex; }.toast { right: 15px; bottom: 78px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 43px; }.trust-row li:last-child { display: none; }
  .value-strip p { font-size: 18px; }.mini-price > span { display: none; }
  .journey { grid-template-columns: 1fr; }.journey li { display: grid; grid-template-columns: 39px 1fr; column-gap: 13px; }.journey li > span { grid-row: span 3; margin-top: 8px; }.journey li > i { display: none; }.journey li strong { margin-bottom: 4px; }.journey li p { grid-column: 2; }
  .product-head button { display: none; }.product-metrics { grid-template-columns: 1fr 1fr; }.product-metrics > div:last-child { display: none; }
  .checkout-price strong { font-size: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
