@import "tailwindcss";

:root {
  --navy: #123a63;
  --navy-deep: #092d4d;
  --navy-soft: #dfe9f1;
  --orange: #ef6c35;
  --orange-dark: #d95522;
  --orange-soft: #fff0e7;
  --green: #627b49;
  --green-deep: #405b31;
  --green-soft: #edf1e7;
  --cream: #fcf7ef;
  --paper: #fffdf9;
  --ink: #1e2f40;
  --muted: #5e6b78;
  --line: #e8d8c6;
  --shadow: 0 20px 60px rgba(43, 50, 55, 0.1);
  --shadow-soft: 0 8px 28px rgba(43, 50, 55, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a { -webkit-tap-highlight-color: transparent; }
button,
input,
textarea,
select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,
h2,
h3,
p,
ul,
ol,
blockquote { margin-top: 0; }
h1,
h2,
h3 {
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.34;
}
h1 { margin-bottom: 26px; font-size: clamp(2.35rem, 4vw, 3.45rem); letter-spacing: 0.005em; }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 4.1vw, 3.35rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-bottom: 18px; }
ul,
ol { padding-left: 1.25em; }
:focus-visible { outline: 3px solid #f6a36d; outline-offset: 4px; }

.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.container.narrow { width: min(820px, calc(100% - 48px)); }
.section { position: relative; padding: 104px 0; }
.section-soft {
  background: radial-gradient(circle at 8% 10%, rgba(239, 108, 53, 0.07), transparent 28%), linear-gradient(180deg, #f6eee2 0%, #fbf7f0 100%);
}
.section-navy {
  overflow: hidden;
  background: radial-gradient(circle at 90% 15%, rgba(239, 108, 53, 0.2), transparent 23%), radial-gradient(circle at 3% 92%, rgba(146, 174, 118, 0.15), transparent 25%), var(--navy-deep);
  color: #f8f3e9;
}
.section-navy h2,
.section-navy h3,
.section-navy .section-lead,
.section-navy .section-close { color: #fffdf8; }
.section-green {
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 48%), var(--green-deep);
  color: #fbf8ef;
}
.section-green h2,
.section-green .eyebrow { color: #fffdf7; }

.site-nav {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(18, 58, 99, 0.08);
  background: rgba(252, 247, 239, 0.92);
  box-shadow: 0 3px 14px rgba(43, 50, 55, 0.05);
  backdrop-filter: blur(16px);
}
.nav-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-deep); line-height: 1.15; }
.brand-mark { display: grid; width: 44px; height: 44px; place-items: center; color: var(--orange); font-size: 2.15rem; }
.brand strong,
.brand small { display: block; }
.brand strong { margin-bottom: 5px; font-size: 1.18rem; letter-spacing: 0.12em; }
.brand small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.16em; }
.nav-link { min-height: 44px; display: inline-flex; align-items: center; border-bottom: 2px solid transparent; color: var(--navy); font-weight: 700; }
.nav-link:hover { border-color: var(--orange); }

.eyebrow { margin-bottom: 15px; color: var(--orange-dark); font-size: 0.88rem; font-weight: 800; letter-spacing: 0.12em; }
.section-heading { width: min(830px, 100%); margin: 0 auto 54px; text-align: center; }
.section-lead { margin-bottom: 0; color: var(--muted); font-size: 1.06rem; }
.section-lead.align-left { text-align: left; }
.title-line { display: block; }
.mobile-line-break { display: none; }

.hero {
  min-height: calc(100vh - 76px);
  padding: 82px 0 88px;
  background: radial-gradient(circle at 86% 10%, rgba(239, 108, 53, 0.13), transparent 28%), radial-gradient(circle at 7% 95%, rgba(98, 123, 73, 0.12), transparent 24%), var(--cream);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); align-items: center; gap: 70px; }
.hero-copy h1 { line-height: 1.28; }
.hero-title-line { display: block; }
.hero-lead { margin-bottom: 24px; color: #34495d; font-size: clamp(1.16rem, 2vw, 1.42rem); line-height: 1.75; }
.hero-product-summary { margin: -7px 0 24px; padding: 11px 15px; border-left: 3px solid var(--orange); border-radius: 0 12px 12px 0; background: rgba(255,255,255,.55); color: var(--green-deep); font-size: .86rem; font-weight: 800; line-height: 1.55; }
.hero-product-summary span { display: block; }
.hero-visual { position: relative; }
.hero-note { width: min(84%, 390px); margin: -54px auto 0; position: relative; z-index: 1; padding: 20px 25px; border: 1px solid rgba(98, 123, 73, 0.18); border-radius: 18px; background: rgba(255, 253, 249, 0.94); box-shadow: var(--shadow-soft); text-align: center; }
.hero-note strong,
.hero-note span { display: block; }
.hero-note strong { color: var(--green-deep); }
.hero-note span { margin-top: 2px; color: var(--muted); font-size: 0.88rem; }

.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .12em; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); font-size: .78rem; font-weight: 900; }
.check-list.compact { gap: 7px; margin-bottom: 31px; color: #34495d; font-size: .97rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border: 0; border-radius: 999px; font-weight: 800; letter-spacing: 0.045em; line-height: 1.35; text-align: center; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(180deg, #f47c4d, var(--orange)); box-shadow: 0 12px 26px rgba(217, 85, 34, 0.23); color: #fff; }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 15px 32px rgba(217, 85, 34, 0.3); }
.button-secondary { border: 1.5px solid var(--navy); background: transparent; color: var(--navy); }
.button-secondary:hover { background: var(--navy); color: #fff; }
.button.full { width: 100%; }
.text-link,
.text-button { min-height: 46px; display: inline-flex; align-items: center; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--navy); font-weight: 800; cursor: pointer; }

.media-picture { position: relative; min-width: 0; display: block; }
.media-card { overflow: hidden; border: 1px solid rgba(206, 177, 137, .28); border-radius: 26px; background: #fffaf3; box-shadow: var(--shadow-soft); isolation: isolate; }
.media-photo,
.media-product,
.media-preview { width: 100%; height: 100%; display: block; }
.media-photo { object-fit: cover; }
.media-product,
.media-preview { object-fit: contain; }
.media-blend-left::after,
.media-blend-right::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.media-blend-left::after { background: linear-gradient(90deg, rgba(252,247,239,.9) 0%, rgba(252,247,239,.28) 12%, rgba(252,247,239,0) 25%); }
.media-blend-right::after { background: linear-gradient(270deg, rgba(252,247,239,.72) 0%, rgba(252,247,239,.16) 11%, rgba(252,247,239,0) 24%); }
.hero-media { aspect-ratio: 1295 / 1215; border-radius: 46% 46% 26px 26px; box-shadow: var(--shadow); }
.hero-image { object-position: 50% 50%; }
.parent-media { aspect-ratio: 1297 / 1212; }
.parent-empathy-image { object-position: 50% 50%; }
.reframe-media { aspect-ratio: 1117 / 1408; }
.reframe-image { object-position: 50% 50%; }
.report-product-collage { position: relative; min-width: 0; aspect-ratio: 756 / 400; margin: 0; isolation: isolate; }
.report-product-sheet,
.report-product-cover { position: absolute; display: block; }
.report-product-sheet { top: 5%; width: 28%; height: 86%; object-fit: cover; border: 1px solid rgba(193,166,128,.3); border-radius: 5px; background: #fffdf8; box-shadow: 0 14px 26px rgba(9,45,77,.16); transform-origin: 50% 92%; }
.report-product-sheet-one { left: 27%; z-index: 1; transform: rotate(-5deg); }
.report-product-sheet-two { left: 41%; z-index: 2; transform: rotate(-1deg); }
.report-product-sheet-three { left: 55%; z-index: 3; transform: rotate(3deg); }
.report-product-sheet-four { left: 68%; z-index: 4; transform: rotate(7deg); }
.report-product-cover { z-index: 6; inset: 0; width: 100%; height: 100%; object-fit: fill; clip-path: polygon(0 10%, 29.8% .5%, 37.2% 82.5%, 7% 94.5%); filter: drop-shadow(0 16px 18px rgba(9,45,77,.24)); }
.family-media { aspect-ratio: 484 / 455; border-color: rgba(255,255,255,.24); background: #e9eee4; box-shadow: 0 20px 50px rgba(12,35,21,.22); }
.family-plan-image { object-position: 63% 47%; }
.pain-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 42px; }
.card-grid { display: grid; gap: 20px; }
.two-by-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card,
.benefit-card,
.addon-card { padding: 28px; border: 1px solid rgba(210, 177, 136, .44); border-radius: 22px; background: var(--paper); box-shadow: var(--shadow-soft); }
.info-card p,
.benefit-card p,
.addon-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }
.card-number,
.benefit-card > span { min-width: 47px; min-height: 33px; display: inline-grid; margin-bottom: 17px; place-items: center; border-radius: 999px; background: var(--navy-soft); color: var(--navy); font-size: .84rem; font-weight: 900; }
.info-card:nth-child(2) .card-number,
.info-card:nth-child(3) .card-number { background: var(--green-soft); color: var(--green-deep); }
.soft-quote { width: min(940px, 100%); margin: 48px auto 0; padding: 28px 34px; border-left: 5px solid var(--orange); border-radius: 0 18px 18px 0; background: rgba(255,255,255,.72); color: #34495d; font-size: 1.06rem; }

.split-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: 72px; }
.split-layout h2 { font-size: clamp(1.9rem, 3.6vw, 3.05rem); }
.split-layout .reframe-title { font-size: clamp(1.85rem, 2.3vw, 2.35rem); line-height: 1.42; }
.reframe-title span { display: block; }
.statement { margin: 28px 0; padding: 22px 26px; border-left: 5px solid var(--orange); border-radius: 0 18px 18px 0; background: var(--orange-soft); color: var(--navy); font-size: 1.15rem; line-height: 1.65; }
.statement strong { color: var(--orange-dark); }
.value-list { display: grid; gap: 12px; margin-bottom: 30px; }
.value-list > div { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.value-list span { color: var(--orange-dark); font-weight: 900; }
.value-list p,
.value-list strong { display: block; margin: 0; }
.value-list strong { margin-bottom: 2px; color: var(--navy); }

.four-insights { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.insight-card { min-height: 242px; padding: 30px 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.insight-card span { display: block; margin-bottom: 42px; color: #f2a678; font-weight: 900; }
.insight-card h3 { color: white; }
.insight-card p { margin-bottom: 0; color: #dce6ed; font-size: .94rem; }
.section-close { width: min(760px, 100%); margin: 42px auto 0; text-align: center; }

.deliverable-layout { width: min(1280px, calc(100% - 48px)); display: grid; gap: 34px; }
.deliverable-top { display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); align-items: center; gap: clamp(30px, 3.5vw, 50px); }
.deliverable-title { font-size: clamp(1.82rem, 2.35vw, 2.14rem); line-height: 1.42; letter-spacing: -.015em; }
.deliverable-title span { display: block; white-space: nowrap; }
.deliverable-title .mobile-line-break { display: none; }
.deliverable-benefits { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding: 25px 18px; list-style: none; border: 1px solid rgba(210, 177, 136, .44); border-radius: 24px; background: rgba(255,253,249,.82); box-shadow: var(--shadow-soft); }
.deliverable-benefits li { min-width: 0; display: grid; align-content: start; justify-items: center; gap: 13px; padding: 4px 16px; text-align: center; }
.deliverable-benefits li + li { border-left: 1px solid var(--line); }
.deliverable-benefits span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); font-size: 1.42rem; font-weight: 900; }
.deliverable-benefits li:nth-child(even) span { background: var(--orange-soft); color: var(--orange-dark); }
.deliverable-benefits p { margin: 0; color: var(--navy); font-size: .91rem; font-weight: 700; line-height: 1.6; }
.deliverable-notes { text-align: center; }
.deliverable-notes .fine-print { margin-bottom: 0; }
.asset-label { display: inline-flex; margin: 10px 0 8px; padding: 6px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); font-size: .8rem; font-weight: 800; }
.fine-print { color: var(--muted); font-size: .82rem; line-height: 1.65; }
.report-anonymous-note { width: fit-content; margin: -24px auto 18px; padding: 5px 12px; border: 1px solid rgba(98,123,73,.2); border-radius: 999px; background: rgba(255,255,255,.64); color: var(--green-deep); font-size: .8rem; font-weight: 800; }
.trust-row,
.delivery-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.trust-row span,
.delivery-row span { padding: 8px 14px; border: 1px solid rgba(98, 123, 73, .22); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--green-deep); font-size: .83rem; font-weight: 800; }
.delivery-row span small { display: block; color: var(--muted); font-size: .68rem; font-weight: 600; }

.carousel-shell { display: grid; grid-template-columns: 52px minmax(0, 1fr) 52px; align-items: center; gap: 15px; }
.carousel-arrow { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); box-shadow: var(--shadow-soft); color: var(--navy); font-size: 2rem; line-height: 1; cursor: pointer; }
.carousel-arrow:disabled { opacity: .34; cursor: default; }
.report-carousel { display: flex; gap: 22px; overflow-x: auto; padding: 12px 7px 24px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; overscroll-behavior-inline: contain; }
.report-slide { flex: 0 0 min(455px, calc((100% - 22px) / 2.15)); scroll-snap-align: center; }
.report-image-button { position: relative; width: 100%; display: block; padding: 20px; overflow: visible; border: 1px solid #d8c5ac; border-radius: 20px; background: #fffdf9; box-shadow: var(--shadow); cursor: zoom-in; }
.report-image-button img { aspect-ratio: 640 / 906; border-radius: 10px; background: white; box-shadow: 0 8px 20px rgba(9,45,77,.1); }
.report-image-button span { position: absolute; right: 12px; bottom: 12px; padding: 6px 11px; border-radius: 999px; background: rgba(9, 45, 77, .9); color: white; font-size: .75rem; font-weight: 700; }
.report-slide h3 { margin: 18px 4px 6px; font-size: 1.12rem; }
.report-slide p { margin: 0 4px; color: var(--muted); font-size: .91rem; }
.carousel-count { margin: 8px 0 0; color: var(--muted); text-align: center; }
.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 72px 24px 24px; background: rgba(4, 23, 39, .88); backdrop-filter: blur(8px); }
.lightbox img { max-height: calc(100vh - 96px); width: auto; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lightbox button { position: fixed; top: 16px; right: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(255,255,255,.14); color: white; font-size: 2rem; line-height: 1; cursor: pointer; }

.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.fit-card { position: relative; overflow: hidden; padding: 38px 40px 34px; border: 2px solid; border-radius: 26px; box-shadow: 0 14px 34px rgba(9,45,77,.08); }
.fit-card::before { position: absolute; top: 0; right: 0; left: 0; height: 7px; content: ""; }
.fit-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.fit-card h3::before { width: 35px; height: 35px; flex: 0 0 35px; display: grid; place-items: center; border-radius: 50%; color: white; font-size: 1rem; font-weight: 900; }
.fit-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.fit-card li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 8px; align-items: start; }
.fit-card li::before { font-weight: 900; line-height: 1.55; text-align: center; }
.fit-yes { border-color: #a9be91; background: linear-gradient(145deg, #f5f9ef 0%, #e8f1df 100%); }
.fit-yes::before { background: #6f8b56; }
.fit-yes h3 { color: #365323; }
.fit-yes h3::before { content: "✓"; background: #6f8b56; }
.fit-yes li::before { content: "✓"; color: #6f8b56; }
.fit-no { border-color: #e9ad88; background: linear-gradient(145deg, #fffaf6 0%, #fff0e6 100%); }
.fit-no::before { background: #df6a37; }
.fit-no h3 { color: #9e3f1d; }
.fit-no h3::before { content: "!"; background: #df6a37; }
.fit-no li::before { content: "×"; color: #df6a37; }
.referral-note { margin-top: 28px; padding: 27px 32px 27px 36px; border: 1px solid #9fbfd3; border-radius: 20px; background: linear-gradient(110deg, #eaf3f8 0%, #f6fafc 100%); box-shadow: inset 7px 0 0 #397393, 0 12px 28px rgba(9,45,77,.07); }
.referral-note strong { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: #174e6c; font-size: 1.08rem; }
.referral-note strong::before { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #397393; color: white; content: "i"; font-family: Georgia, serif; font-size: .98rem; font-weight: 700; }
.referral-note p { margin: 0; color: var(--muted); font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding: 0; list-style: none; }
.process-grid li { position: relative; min-height: 250px; overflow: hidden; padding: 32px 21px 30px; border: 1.5px solid #d8b78f; border-radius: 22px; background: linear-gradient(180deg, #fffefa 0%, #fffaf3 100%); box-shadow: 0 15px 34px rgba(9,45,77,.11); }
.process-grid li::before { position: absolute; top: 0; right: 0; left: 0; height: 6px; content: ""; background: linear-gradient(90deg, var(--orange), #f3b05d); }
.process-grid span { width: fit-content; display: grid; min-height: 31px; margin: 0 auto 30px; padding: 5px 11px; place-items: center; border: 1px solid rgba(223,106,55,.25); border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: .89rem; font-weight: 900; letter-spacing: .07em; }
.process-grid h3 { margin-bottom: 14px; font-size: clamp(1.18rem, 1.6vw, 1.34rem); line-height: 1.45; letter-spacing: -.02em; }
.process-grid p { margin-bottom: 0; color: #4f6272; font-size: 1.01rem; line-height: 1.78; }
.privacy-callout { width: min(900px, 100%); display: flex; align-items: center; justify-content: center; gap: 13px; margin: 38px auto 0; padding: 21px 28px; border: 2px solid #78966a; border-radius: 18px; background: linear-gradient(135deg, #496b40 0%, #2f5138 100%); box-shadow: 0 15px 32px rgba(27,65,43,.18); color: white; font-size: 1.03rem; font-weight: 750; line-height: 1.65; text-align: left; }
.privacy-callout::before { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; content: "✓"; font-size: 1.08rem; font-weight: 900; box-shadow: 0 5px 13px rgba(0,0,0,.15); }

.three-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefit-card { min-height: 230px; }
.benefit-card:nth-child(2) > span { background: var(--orange-soft); color: var(--orange-dark); }
.benefit-card:nth-child(3) > span { background: var(--green-soft); color: var(--green-deep); }
.center { margin-top: 26px; text-align: center; }

.pricing-section { background: radial-gradient(circle at 50% 0, rgba(239, 108, 53, .12), transparent 25%), #fffaf3; }
.pricing-layout { display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; gap: 24px; }
.price-card { padding: 40px; border-radius: 28px; }
.price-primary { border: 2px solid var(--orange); background: var(--paper); box-shadow: var(--shadow); }
.plan-badge { display: inline-flex; margin-bottom: 20px; padding: 7px 13px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: .82rem; font-weight: 900; }
.regular-price { margin-bottom: 1px; color: var(--muted); font-size: .96rem; text-decoration: line-through; }
.launch-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; color: var(--orange-dark); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.2; }
.launch-price small { color: var(--green-deep); font-size: .88rem; letter-spacing: .06em; }
.launch-condition { margin: 15px 0 0; color: var(--muted); font-size: .77rem; line-height: 1.6; text-align: center; }
.addon-stack { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 24px; }
.addon-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.addon-card ul { margin: 0 0 12px; padding-left: 1.2em; color: var(--muted); font-size: .92rem; }
.addon-card .text-button { margin-top: auto; }
.family-intro { display: grid; grid-template-columns: 1fr minmax(340px, .8fr); align-items: center; gap: 60px; margin-bottom: 38px; }
.family-delivery-note { display: inline-flex; margin: 4px 0 0; padding: 9px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: 12px; background: rgba(255,255,255,.1); color: #f6f7ee; font-size: .86rem; font-weight: 700; }
.family-toggle { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; border: 1px solid rgba(255,255,255,.35); border-radius: 18px; background: rgba(255,255,255,.11); color: white; font-weight: 800; cursor: pointer; }
.family-toggle span { font-size: 1.5rem; }
.family-details { margin-top: 18px; padding: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: 24px; background: rgba(255,255,255,.1); }
.family-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.family-benefits span { padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.12); font-size: .83rem; }
.family-prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.family-prices div { padding: 22px 18px; border-radius: 17px; background: #fffdf8; color: var(--navy-deep); text-align: center; }
.family-prices strong,
.family-prices b { display: block; }
.family-prices b { margin-top: 5px; color: var(--orange-dark); font-size: 1.35rem; }
.family-details .fine-print { margin: 18px 0 0; color: #e4ebdd; text-align: center; }
.family-details-delivery { margin: 18px 0 0; color: #fff; font-size: .9rem; font-weight: 700; text-align: center; }

.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 38px; }
.trust-grid span { --trust-accent: #6f8b56; min-height: 92px; display: flex; align-items: center; justify-content: flex-start; gap: 13px; padding: 18px 20px; border: 1px solid rgba(9,45,77,.14); border-radius: 18px; background: #fffdf9; box-shadow: inset 5px 0 var(--trust-accent), 0 10px 24px rgba(9,45,77,.07); color: var(--navy); font-size: .96rem; font-weight: 750; line-height: 1.55; text-align: left; }
.trust-grid span::before { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; background: var(--trust-accent); color: white; content: "✓"; font-size: .95rem; font-weight: 900; }
.trust-grid span:nth-child(3n + 2) { --trust-accent: #df6a37; background: #fff9f4; }
.trust-grid span:nth-child(3n) { --trust-accent: #397393; background: #f5f9fc; }
.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.policy-grid article { padding: 26px 28px; border: 1px solid; border-left-width: 7px; border-radius: 18px; box-shadow: 0 13px 30px rgba(9,45,77,.08); }
.policy-grid #privacy-policy { border-color: #90aa80; background: linear-gradient(125deg, #f1f7eb, #fffdf9 68%); }
.policy-grid #terms { border-color: #6f97b3; background: linear-gradient(125deg, #edf5fa, #fffdf9 68%); }
.policy-grid #refund { border-color: #e6a078; background: linear-gradient(125deg, #fff2e9, #fffdf9 68%); }
.policy-grid #contact { border-color: #6ba29a; background: linear-gradient(125deg, #edf7f4, #fffdf9 68%); }
.policy-grid h3 { margin-bottom: 10px; font-size: 1.12rem; }
.policy-grid #privacy-policy h3 { color: #3d5d2d; }
.policy-grid #terms h3 { color: #245978; }
.policy-grid #refund h3 { color: #a44722; }
.policy-grid #contact h3 { color: #28665e; }
.policy-grid p { margin: 0; color: #526575; font-size: .92rem; line-height: 1.72; }

.faq-section { background: #f4ecdf; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.faq-item > button { width: 100%; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 22px; border: 0; background: transparent; color: var(--navy-deep); font-weight: 800; text-align: left; cursor: pointer; }
.faq-item > button b { color: var(--orange-dark); font-size: 1.3rem; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }
.faq-answer p { margin: 0; }

.final-cta { overflow: hidden; background: radial-gradient(circle at 85% 25%, rgba(98, 123, 73, .15), transparent 28%), radial-gradient(circle at 10% 90%, rgba(239, 108, 53, .12), transparent 25%), var(--paper); }
.final-grid { width: min(900px, calc(100% - 48px)); text-align: center; }
.final-grid .section-lead.align-left { width: min(710px, 100%); margin-inline: auto; text-align: center; }
.final-grid .regular-price,
.final-grid .launch-price { justify-content: center; }
.final-button { min-width: min(380px, 100%); }
.assurance { margin: 15px 0 0; color: var(--muted); font-size: .84rem; }

.site-footer { padding: 55px 0 70px; background: var(--navy-deep); color: #dce6ed; }
.site-footer .brand,
.site-footer .brand strong { color: #ffffff !important; }
.site-footer .brand small { color: #bdccd7 !important; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px 25px; margin: 28px 0; }
.site-footer nav a { border-bottom: 1px solid rgba(255,255,255,.45); font-size: .9rem; }
.site-footer p,
.site-footer small { color: #aebfcb; font-size: .78rem; line-height: 1.7; }
.site-footer p { max-width: 850px; margin-bottom: 8px; }
.sticky-cta { display: none; }

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .family-intro { grid-template-columns: 1fr 1fr; gap: 38px; }
  .pain-layout { grid-template-columns: 1fr; }
  .deliverable-top { grid-template-columns: 1fr; gap: 30px; }
  .deliverable-title span { white-space: normal; }
  .deliverable-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 0; }
  .deliverable-benefits li:nth-child(4) { grid-column: 1 / 2; }
  .deliverable-benefits li + li { border-left: 0; }
  .pain-layout > .media-picture { max-height: 520px; margin-inline: auto; }
  .four-insights,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insight-card,
  .process-grid li { min-height: auto; }
  .insight-card span,
  .process-grid span { margin-bottom: 28px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 68px; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); font-size: 16px; }
  .container,
  .container.narrow,
  .final-grid { width: min(100% - 32px, 620px); }
  .section { padding: 70px 0 82px; }
  .nav-inner { min-height: 68px; }
  .brand { gap: 8px; }
  .brand-mark { width: 34px; height: 34px; font-size: 1.7rem; }
  .brand strong { margin-bottom: 3px; font-size: 1rem; }
  .brand small { font-size: .62rem; letter-spacing: .1em; }
  .nav-link { font-size: .87rem; }
  h1 { font-size: clamp(2.02rem, 10vw, 3.3rem); line-height: 1.3; }
  h2 { font-size: clamp(1.7rem, 7.2vw, 2.35rem); line-height: 1.42; }
  .section-heading { margin-bottom: 38px; }
  .hero { min-height: auto; padding: 53px 0 70px; }
  .hero-copy > .eyebrow {
    width: fit-content;
    margin: 0 auto 19px;
    padding: 7px 13px;
    border: 1px solid rgba(217, 85, 34, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    font-size: .75rem;
    letter-spacing: .08em;
    text-align: center;
  }
  .hero-copy h1 {
    font-size: clamp(1.9rem, 8.65vw, 2.25rem);
    line-height: 1.38;
    text-align: center;
  }
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
  }
  .hero-product-summary {
    margin: 0 auto 25px;
    padding: 14px 16px;
    border: 1px solid rgba(98, 123, 73, .2);
    border-radius: 16px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 10px 24px rgba(9, 45, 77, .06);
    font-size: .84rem;
    line-height: 1.65;
    text-align: center;
  }
  .hero-product-summary span + span { margin-top: 2px; color: #526575; font-weight: 700; }
  .hero-copy .check-list.compact { width: fit-content; margin-right: auto; margin-left: auto; text-align: left; }
  .hero-grid,
  .split-layout,
  .family-intro,
  .pricing-layout { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .hero-media { aspect-ratio: 1295 / 1215; border-radius: 40% 40% 20px 20px; }
  .hero-image { object-position: 50% 50%; }
  .hero-note { width: calc(100% - 28px); margin-top: 16px; }
  .parent-media { aspect-ratio: 1297 / 1212; }
  .parent-empathy-image { object-position: 50% 50%; }
  .reframe-media { aspect-ratio: 1117 / 1408; }
  .reframe-image { object-position: 50% 50%; }
  .report-product-collage { width: 108%; margin-inline: -4%; }
  .report-product-sheet-four { left: 67%; }
  .family-media { aspect-ratio: 484 / 455; }
  .family-plan-image { object-position: 62% 49%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .hero-actions .text-link { width: 100%; justify-content: center; }
  .pain-layout { gap: 28px; }
  .two-by-two,
  .four-insights,
  .process-grid,
  .three-cards,
  .fit-grid,
  .policy-grid { grid-template-columns: 1fr; }
  .info-card,
  .benefit-card,
  .addon-card,
  .fit-card,
  .price-card { padding: 26px 23px; }
  .soft-quote { margin-top: 30px; padding: 22px; }
  .split-layout > .media-picture { grid-row: 1; }
  .reframe-title { font-size: 1.5rem !important; line-height: 1.58 !important; letter-spacing: 0; }
  #reframe .button-secondary {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
  }
  .mobile-balanced-title { letter-spacing: 0; }
  .mobile-balanced-title .title-line,
  .reframe-title span { white-space: nowrap; }
  .insights-title { font-size: 1.48rem; line-height: 1.55; }
  .deliverable-title { font-size: 1.35rem; line-height: 1.58; letter-spacing: 0; }
  .deliverable-title > span:first-child { white-space: nowrap; }
  .deliverable-title .mobile-line-break { display: inline; }
  .reading-benefits-title { font-size: 1.36rem; line-height: 1.58; }
  .pricing-title { font-size: 1.5rem; line-height: 1.55; }
  .final-title { font-size: 1.42rem; line-height: 1.58; }
  .deliverable-benefits {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 15px;
    border-radius: 20px;
  }
  .deliverable-benefits li,
  .deliverable-benefits li:last-child {
    grid-column: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 14px;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: rgba(237, 241, 231, .62);
    text-align: left;
  }
  .deliverable-benefits li:nth-child(even) { background: rgba(255, 240, 231, .68); }
  .deliverable-benefits span { width: 44px; height: 44px; font-size: 1.24rem; }
  .deliverable-benefits p { font-size: .9rem; line-height: 1.65; text-wrap: balance; }
  .deliverable-benefits p br { display: none; }
  .statement { padding: 19px 20px; text-align: center; }
  .carousel-shell { display: block; }
  .carousel-arrow { display: none; }
  .report-carousel { width: calc(100% + 28px); margin-inline: -14px; padding: 10px 14px 22px; scroll-padding-inline: 14px; }
  .report-slide { flex-basis: calc(100% - 28px); scroll-snap-align: start; }
  .report-image-button { padding: 16px; }
  .process-grid span { margin-bottom: 22px; }
  .family-intro { margin-bottom: 30px; }
  .family-prices { grid-template-columns: 1fr; }
  .family-details { padding: 22px 18px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .delivery-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .delivery-row span { display: grid; min-height: 50px; place-items: center; }
  .site-footer { padding-bottom: 34px; }
  .sticky-cta {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 7px max(14px, env(safe-area-inset-left)) calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(9, 45, 77, .18);
    background: rgba(255,253,249,.96);
    box-shadow: 0 -8px 28px rgba(9,45,77,.13);
    opacity: 0;
    transform: translateY(110%);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    backdrop-filter: blur(14px);
  }
  .sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .sticky-cta > span { color: var(--orange-dark); font-size: 1.06rem; font-weight: 900; line-height: 1.15; }
  .sticky-cta a { min-height: 42px; display: inline-grid; place-items: center; padding: 8px 18px; border-radius: 999px; background: var(--orange); color: white; font-size: .84rem; font-weight: 900; }
}

@media (min-width: 761px) {
  .hero-title-line { white-space: nowrap; }
  .reframe-title span { white-space: nowrap; }
}

@media (min-width: 981px) {
  .process-grid h3 { white-space: nowrap; }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .process-grid { gap: 12px; }
  .process-grid li { padding-right: 16px; padding-left: 16px; }
  .process-grid h3 { font-size: 1.06rem; }
}

@media (min-width: 761px) and (max-width: 980px) {
  h1 { font-size: clamp(2rem, 4vw, 2.45rem); }
}

@media (max-width: 410px) {
  .container,
  .container.narrow,
  .final-grid { width: calc(100% - 28px); }
  .nav-link { display: none; }
  h1 { font-size: 2rem; }
  .section { padding: 64px 0 78px; }
  .two-by-two { gap: 14px; }
  .info-card,
  .benefit-card,
  .addon-card,
  .fit-card,
  .price-card { padding: 23px 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .sticky-cta a { padding-inline: 17px; }
}

@media (max-width: 370px) {
  .insights-title { font-size: 1.38rem; }
  .reading-benefits-title { font-size: 1.28rem; }
  .pricing-title { font-size: 1.4rem; }
  .final-title { font-size: 1.38rem; }
}

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