:root {
  --ink: #172640;
  --ink-soft: #516077;
  --navy: #18365f;
  --navy-deep: #0f294c;
  --orange: #e8752b;
  --orange-soft: #fff1e7;
  --cream: #fffaf5;
  --line: #e8edf3;
  --white: #ffffff;
  --green: #407a69;
  --shadow: 0 28px 80px rgba(23, 38, 64, .11);
  --shadow-soft: 0 16px 48px rgba(23, 38, 64, .075);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { color: var(--navy-deep); background: #ffd9bb; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1001;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #f8aa65);
  transition: width .08s linear;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(232, 237, 243, .72);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, .95); box-shadow: 0 10px 34px rgba(23, 38, 64, .07); }
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  border-radius: 50% 50% 50% 14px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.12);
}
.brand-name { color: var(--navy); font-size: 22px; font-weight: 800; letter-spacing: -.045em; }
.brand-name span { color: var(--orange); }
.brand-name sup { top: -.5em; font-size: 8px; margin-left: 2px; position: relative; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; color: #526078; font-size: 14px; font-weight: 650; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  color: #fff;
  background: linear-gradient(135deg, #ec7d32, #d85f18);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(226, 105, 34, .22);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: saturate(1.08); box-shadow: 0 16px 34px rgba(226, 105, 34, .3); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(232, 117, 43, .36); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 11px 18px; font-size: 13px; border-radius: 12px; }

.hero {
  position: relative;
  min-height: 810px;
  padding: 148px 0 92px;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 224, 201, .56), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fffdfb 62%, #fff 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: radial-gradient(#cfd8e4 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 76%, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.glow-one { width: 430px; height: 430px; right: -180px; top: 160px; background: rgba(250, 173, 115, .14); }
.glow-two { width: 250px; height: 250px; left: -150px; bottom: 50px; background: rgba(24, 54, 95, .06); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.01fr .99fr; align-items: center; gap: clamp(48px, 7vw, 96px); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 23px; height: 2px; background: currentColor; border-radius: 2px; }
.hero h1, h2, h3 { margin-top: 0; letter-spacing: -.04em; }
.hero h1 { max-width: 660px; margin-bottom: 24px; color: var(--navy-deep); font-size: clamp(52px, 6.2vw, 82px); line-height: .98; }
.hero-lead { max-width: 610px; margin: 0 0 30px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link { color: var(--navy); font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.micro-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px; color: #657087; font-size: 12px; font-weight: 650; }
.micro-trust span { display: inline-flex; align-items: center; gap: 7px; }
.micro-trust i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(64,122,105,.09); }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.visual-halo { position: absolute; width: 450px; height: 450px; border: 1px solid rgba(24,54,95,.1); border-radius: 50%; }
.visual-halo::before, .visual-halo::after { content: ""; position: absolute; inset: 40px; border: 1px solid rgba(232,117,43,.16); border-radius: inherit; }
.visual-halo::after { inset: 84px; background: rgba(255, 255, 255, .58); box-shadow: 0 0 80px rgba(232,117,43,.12); }
.visual-card {
  position: relative;
  width: min(510px, 92%);
  min-height: 490px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 32px 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.visual-kicker { align-self: flex-start; margin: 0 0 auto 4px; color: #758197; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-product { width: min(470px, 100%); margin: 4px auto -4px; filter: drop-shadow(0 24px 24px rgba(20,38,64,.13)); animation: productFloat 5s ease-in-out infinite; }
.visual-caption { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; margin-top: auto; padding-top: 18px; color: var(--navy); border-top: 1px solid var(--line); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.visual-caption b { color: var(--orange); }
.float-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 15px; color: var(--navy); background: rgba(255,255,255,.92); border: 1px solid rgba(232,237,243,.94); border-radius: 14px; box-shadow: var(--shadow-soft); font-size: 12px; font-weight: 750; }
.float-note span { display: grid; place-items: center; width: 27px; height: 27px; color: #fff; background: var(--orange); border-radius: 9px; font-size: 10px; }
.note-one { left: -4px; top: 132px; animation: noteFloat 4.8s ease-in-out infinite; }
.note-two { right: -8px; bottom: 114px; animation: noteFloat 5.4s .5s ease-in-out infinite; }

.signal-bar { position: relative; z-index: 4; margin-top: -42px; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); overflow: hidden; }
.signal-grid div { position: relative; display: flex; flex-direction: column; gap: 1px; padding: 25px 28px; }
.signal-grid div:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 25%; bottom: 25%; width: 1px; background: var(--line); }
.signal-grid strong { color: var(--navy); font-size: 15px; }
.signal-grid span { color: #78849a; font-size: 12px; }

.section { padding: 118px 0; }
.section-heading { max-width: 690px; margin-bottom: 52px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section h2, .final-cta h2 { margin-bottom: 20px; color: var(--navy-deep); font-size: clamp(38px, 4.8vw, 58px); line-height: 1.05; }
.section-heading > p:last-child, .section-lead { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }

.routine-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { position: relative; min-height: 345px; padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 10px 40px rgba(23,38,64,.045); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.step-card:hover { transform: translateY(-7px); border-color: #f1c7aa; box-shadow: var(--shadow-soft); }
.step-number { position: absolute; right: 26px; top: 20px; color: #edf1f6; font-size: 58px; font-weight: 900; letter-spacing: -.08em; }
.step-icon { position: relative; width: 70px; height: 70px; margin: 18px 0 40px; background: var(--orange-soft); border-radius: 23px; }
.step-icon::before { content: ""; position: absolute; left: 23px; top: 18px; width: 25px; height: 33px; border: 3px solid var(--orange); border-top: 0; border-radius: 5px 5px 12px 12px; transform: rotate(-7deg); }
.step-icon span { position: absolute; width: 17px; height: 7px; left: 29px; top: 12px; border: 3px solid var(--orange); border-radius: 8px 8px 0 0; }
.step-icon.glass::before { left: 22px; top: 16px; width: 28px; height: 38px; border: 3px solid var(--navy); border-top-width: 2px; border-radius: 4px 4px 11px 11px; transform: none; }
.step-icon.glass span { left: 26px; top: 39px; width: 20px; height: 9px; border: 0; background: rgba(24,54,95,.17); border-radius: 0 0 7px 7px; }
.step-icon.sun::before { left: 25px; top: 24px; width: 21px; height: 21px; border: 3px solid var(--orange); border-radius: 50%; transform: none; }
.step-icon.sun::after { content: ""; position: absolute; inset: 11px; border: 2px dashed rgba(232,117,43,.55); border-radius: 50%; }
.step-icon.sun span { display: none; }
.step-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 25px; }
.step-card p { margin: 0; color: var(--ink-soft); }

.product-section { background: linear-gradient(180deg, #fbfcfe, #fff); }
.product-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.product-stage { position: relative; min-height: 570px; display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, #fff 0 35%, #fff4eb 36% 58%, #fff 59%); border: 1px solid #f3ece6; border-radius: var(--radius-xl); overflow: hidden; }
.product-stage::before { content: ""; position: absolute; width: 82%; height: 54px; left: 9%; bottom: 64px; background: rgba(23,38,64,.08); border-radius: 50%; filter: blur(18px); }
.product-stage img { position: relative; z-index: 2; width: 92%; filter: drop-shadow(0 22px 24px rgba(23,38,64,.12)); }
.stage-ring { position: absolute; width: 420px; height: 420px; border: 1px dashed rgba(232,117,43,.34); border-radius: 50%; animation: slowSpin 28s linear infinite; }
.stage-label { position: absolute; z-index: 3; left: 26px; bottom: 24px; padding: 9px 13px; color: var(--navy); background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 11px; font-size: 11px; font-weight: 750; backdrop-filter: blur(8px); }
.product-copy .section-lead { margin: 0 0 34px; }
.feature-list { display: grid; gap: 18px; margin: 0 0 34px; }
.feature-list > div { display: flex; gap: 16px; align-items: flex-start; }
.feature-dot { display: grid; flex: 0 0 36px; place-items: center; width: 36px; height: 36px; color: var(--orange); background: var(--orange-soft); border-radius: 12px; font-size: 12px; font-weight: 850; }
.feature-list h3 { margin: 1px 0 3px; color: var(--navy); font-size: 17px; letter-spacing: -.02em; }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.principles-section { padding-top: 105px; background: var(--cream); }
.bento-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.bento-card { position: relative; min-height: 255px; padding: 34px; background: #fff; border: 1px solid rgba(232,237,243,.85); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 10px 35px rgba(23,38,64,.035); }
.bento-wide { display: grid; grid-template-columns: 1fr .8fr; align-items: center; min-height: 310px; }
.bento-accent { grid-row: span 2; min-height: 100%; color: #fff; background: linear-gradient(145deg, #18375f, #102848); border: 0; }
.bento-card:nth-child(3), .bento-card:nth-child(4) { min-height: 220px; }
.card-label { display: block; margin-bottom: 28px; color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.bento-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 28px; }
.bento-card p { max-width: 460px; margin: 0; color: var(--ink-soft); }
.bento-accent .card-label { color: #f6aa72; }
.bento-accent h3, .bento-accent p { color: #fff; }
.bento-accent p { color: rgba(255,255,255,.72); }
.line-art { position: relative; height: 150px; }
.line-art::before { content: ""; position: absolute; inset: 12px 20px; border: 1px solid #e8edf3; border-radius: 50%; }
.line-art i { position: absolute; top: 50%; width: 70px; height: 70px; background: var(--orange-soft); border: 2px solid #ffc79e; border-radius: 50%; transform: translateY(-50%); }
.line-art i:nth-child(1) { left: 12%; }
.line-art i:nth-child(2) { left: 37%; width: 84px; height: 84px; background: #fff; border-color: var(--navy); }
.line-art i:nth-child(3) { right: 7%; background: #eef4f6; border-color: #a8c7bd; }
.line-art i:not(:last-child)::after { content: ""; position: absolute; width: 42px; height: 2px; left: calc(100% + 3px); top: 50%; background: #d7dfe8; }
.accent-orbit { position: absolute; width: 280px; height: 280px; right: -75px; bottom: -90px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.accent-orbit::before, .accent-orbit::after { content: ""; position: absolute; inset: 42px; border: 1px solid rgba(255,255,255,.13); border-radius: inherit; }
.accent-orbit::after { inset: 86px; background: rgba(232,117,43,.88); border: 0; box-shadow: 0 0 60px rgba(232,117,43,.34); }
.accent-orbit span { position: absolute; left: 18px; top: 28px; width: 14px; height: 14px; background: #f6aa72; border-radius: 50%; }

.transparency-section { padding: 100px 0; background: #fff; }
.transparency-card { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 70px; padding: 58px 62px; color: #fff; background: linear-gradient(130deg, var(--navy-deep), #1c426f); border-radius: var(--radius-xl); box-shadow: 0 30px 70px rgba(15,41,76,.18); }
.eyebrow.light { color: #f5a76f; }
.transparency-card h2 { color: #fff; }
.transparency-card p { margin: 0; color: rgba(255,255,255,.72); }
.transparency-card ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.transparency-card li { display: flex; gap: 11px; align-items: center; padding: 14px 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; font-size: 14px; font-weight: 650; }
.transparency-card li span { color: #f6ad79; }

.faq-section { background: #fbfcfe; }
.faq-grid { display: grid; grid-template-columns: .76fr 1.24fr; align-items: start; gap: clamp(56px, 8vw, 110px); }
.faq-heading { position: sticky; top: 120px; }
.faq-heading p:last-child { color: var(--ink-soft); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 8px 26px rgba(23,38,64,.03); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 22px; color: var(--navy); cursor: pointer; list-style: none; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: 0 0 30px; place-items: center; width: 30px; height: 30px; color: var(--orange); background: var(--orange-soft); border-radius: 9px; font-size: 18px; transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--ink-soft); font-size: 14px; }

.final-cta { padding: 112px 0; background: #fff; }
.final-card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; padding: 64px; background: linear-gradient(135deg, #fff8f2, #fff 55%, #f5f8fb); border: 1px solid #f0e7df; border-radius: var(--radius-xl); overflow: hidden; }
.final-card::before { content: ""; position: absolute; width: 260px; height: 260px; right: -70px; top: -100px; border: 1px solid rgba(232,117,43,.22); border-radius: 50%; box-shadow: 0 0 0 40px rgba(232,117,43,.035), 0 0 0 80px rgba(232,117,43,.025); }
.final-copy { position: relative; z-index: 2; }
.final-copy p:last-child { max-width: 570px; color: var(--ink-soft); font-size: 18px; }
.final-action { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final-action img { width: min(390px, 100%); margin: -48px 0 -25px; filter: drop-shadow(0 20px 20px rgba(23,38,64,.1)); }
.final-action .button { width: min(380px, 100%); }
.final-action small { margin-top: 12px; color: #7d899b; font-size: 10px; text-align: center; }

.site-footer { padding: 50px 0 34px; color: #778399; background: #f8fafc; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-brand { opacity: .85; }
.footer-top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 24px; }
.footer-top nav a { color: #536176; font-size: 12px; font-weight: 650; text-decoration: none; }
.footer-top nav a:hover { color: var(--orange); }
.footer-disclaimer { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 44px; padding-top: 28px; }
.footer-disclaimer p { margin: 0; font-size: 10px; line-height: 1.75; }
.footer-disclaimer p:first-child { max-width: 850px; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.steps-grid .reveal:nth-child(2), .bento-grid .reveal:nth-child(2) { transition-delay: .08s; }
.steps-grid .reveal:nth-child(3), .bento-grid .reveal:nth-child(3) { transition-delay: .16s; }
.bento-grid .reveal:nth-child(4) { transition-delay: .22s; }

@keyframes productFloat { 0%,100% { transform: translateY(0) rotate(-.3deg); } 50% { transform: translateY(-10px) rotate(.3deg); } }
@keyframes noteFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes slowSpin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid, .product-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .micro-trust { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 520px; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid div:nth-child(2)::after { display: none; }
  .signal-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid { gap: 58px; }
  .product-stage { min-height: 520px; }
  .faq-heading { position: static; max-width: 680px; }
  .transparency-card { grid-template-columns: 1fr; gap: 34px; }
  .final-card { grid-template-columns: 1fr; text-align: center; }
  .final-copy .eyebrow { justify-content: center; }
  .final-copy p:last-child { margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  body { padding-bottom: 74px; }
  .site-header .button-small { display: none; }
  .header-inner { height: 66px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 20px; }
  .hero { padding: 112px 0 76px; }
  .hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 450px; margin-top: 22px; }
  .visual-card { min-height: 395px; padding: 28px 18px 22px; }
  .visual-halo { width: 340px; height: 340px; }
  .float-note { display: none; }
  .signal-bar { margin-top: -24px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid div { padding: 19px 16px; }
  .signal-grid strong { font-size: 13px; }
  .signal-grid span { font-size: 10px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 36px; }
  .section h2, .final-cta h2 { font-size: clamp(34px, 10vw, 46px); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 285px; }
  .product-stage { min-height: 410px; }
  .stage-ring { width: 310px; height: 310px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-template-columns: 1fr; min-height: 280px; }
  .line-art { display: none; }
  .bento-accent { grid-row: auto; min-height: 310px; }
  .transparency-card { padding: 38px 24px; border-radius: var(--radius-lg); }
  .final-cta { padding: 80px 0; }
  .final-card { padding: 42px 22px; border-radius: var(--radius-lg); }
  .final-action img { margin: -24px 0 -12px; }
  .footer-top, .footer-disclaimer { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .footer-top nav { justify-content: flex-start; }
  .footer-disclaimer { gap: 18px; }
  .mobile-cta { position: fixed; z-index: 90; display: block; left: 0; right: 0; bottom: 0; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.95); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
  .mobile-cta .button { width: 100%; min-height: 50px; }
}

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