/* Homepage layers sit above one persistent, scroll-driven sky. */
:root {
  --home-sky: #05080e;
  --home-text: #f0f4f8;
  --home-muted: #aab9c6;
  --home-line: rgba(187, 211, 229, .18);
  --home-mint: #9bf0df;
  --home-blue: #8fbbf5;
  --home-gold: #f4c662;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html[data-theme="dark"] body.layered-home {
  margin: 0;
  background: var(--home-sky) !important;
  color: var(--home-text) !important;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
.layered-home :is(h1,h2,h3,p) { margin: 0; }
.layered-home :is(a,button) { -webkit-tap-highlight-color: transparent; }
.layered-home a { text-decoration: none; }
.layered-home button { font: inherit; cursor: pointer; }
.layered-home :focus-visible { outline: 2px solid var(--home-mint); outline-offset: 6px; }
.layered-home svg { flex-shrink: 0; }
.layered-home [hidden] { display: none !important; }
.skip-link { position: fixed; top: -100px; left: 24px; z-index: 10001; padding: 10px 20px; background: #fff; color: #080d13 !important; border-radius: 6px; }
.skip-link:focus { top: 12px; }
.sky-stage { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; background: var(--home-sky); }
.sky-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
#mainContent { position: relative; z-index: 1; }

/* Keep the familiar navigation, with a quieter glass surface. */
.layered-home .nav-wrapper { padding: 18px 30px 0; }
.layered-home .top-nav {
  max-width: 1240px; height: 62px; border-radius: 8px;
  background: rgba(7, 12, 19, .62); border-color: var(--home-line);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(0,0,0,.1); animation: none; opacity: 1; transform: none;
  font-family: inherit;
}
.layered-home .top-nav::before { display: none; }
.layered-home .nav-wrapper.scrolled { padding: 10px 30px 0; }
.layered-home .nav-wrapper.scrolled .top-nav { max-width: 1240px; border-radius: 8px; border-color: var(--home-line); background: rgba(7,12,19,.86); }
.layered-home .nav-brand { display: inline-flex; align-items: center; width: 146px; min-width: 146px; height: 40px; color: var(--home-text); }
.layered-home .nav-brand img { display: block; width: 146px; height: auto; }
.layered-home .nav-brand:hover { transform: none; }
.layered-home .nav-center { gap: 18px; }
.layered-home :is(.nav-top-link,.nav-group-trigger,.nav-cta,.nav-thinkrium) { font-family: inherit; font-size: 13px; letter-spacing: 0; }
.layered-home :is(.nav-top-link,.nav-group-trigger,.nav-thinkrium) { color: #c5cfd9; }
.layered-home .top-nav .nav-cta { color: #0c141d; background: #eff6f6; border: 1px solid #eff6f6; box-shadow: none; border-radius: 6px; padding: 9px 16px; }
.layered-home .nav-dropdown { background: rgba(8,15,24,.97); border-radius: 8px; }
.layered-home .nav-drop-title { font-size: 14px; }
.layered-home .nav-drop-desc { font-size: 12px; line-height: 1.5; }
.layered-home .nav-mobile { background: rgba(8,15,24,.98); max-height: calc(100svh - 110px); overflow-y: auto; }

.home-hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 112px 32px 32px; text-align: center; }
.hero-copy { max-width: 850px; width: 100%; text-shadow: 0 2px 24px rgba(5,8,14,.45); }
.layered-home .eyebrow { color: var(--home-mint) !important; font-size: 13px; line-height: 1.5; font-weight: 500; margin-bottom: 28px; }
.hero-identity { display: flex; align-items: center; justify-content: center; gap: 25.2px; }
.hero-brand-mark { display: block; width: 158.4px; height: 138.6px; flex-shrink: 0; }
.home-hero h1 { font-size: 118.8px; line-height: 1.1; font-weight: 600; }
.home-hero h1 span { color: #fbbf24; }
.layered-home .hero-statement { margin: 28px 0 14px; font-size: 28px; line-height: 1.4; font-weight: 400; color: var(--home-text) !important; text-wrap: balance; }
.layered-home .hero-description { font-size: 17px; line-height: 1.75; color: var(--home-muted) !important; }
.hero-phrase { display: inline-block; --phrase-delay: 0s; --phrase-color: #b8c9d7; color: var(--phrase-color); }
.hero-phrase:nth-child(2) { --phrase-delay: .16s; }
.hero-phrase:nth-child(3) { --phrase-delay: .32s; }
.hero-phrase-markets { --phrase-delay: .48s; --phrase-color: #9bf0df; font-weight: 600; }
.hero-description.is-animated .hero-phrase {
  animation: hero-phrase-arrive .9s cubic-bezier(.2,.7,.2,1) var(--phrase-delay) both,
    hero-phrase-light 8s ease-in-out calc(1.1s + var(--phrase-delay)) infinite;
}
.hero-description[data-motion="paused"] .hero-phrase { animation-play-state: paused; }
@keyframes hero-phrase-arrive {
  from { transform: translateY(7px); opacity: .7; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes hero-phrase-light {
  0%, 32%, 100% { color: var(--phrase-color); text-shadow: 0 0 0 transparent; }
  15% { color: #eefcfa; text-shadow: 0 0 12px rgba(155,240,223,.42); }
}
.home-actions { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.layered-home .home-button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 48px; padding: 12px 22px; border: 1px solid var(--home-line); border-radius: 6px; font-size: 14px; font-weight: 600; transition: background .2s, border-color .2s; }
.home-button svg, .text-link svg, .research-row > svg { width: 20px; height: 20px; }
.layered-home .home-button.primary { background: var(--home-mint); color: #08221e; border-color: var(--home-mint); }
.home-button.primary:hover { background: #c4fbed; }
.layered-home .home-button.secondary { color: var(--home-text); background: rgba(9,15,23,.45); }
.home-button.secondary:hover { background: rgba(37,58,71,.55); border-color: #92b5c4; }
.home-actions .home-button { min-height: 52px; font-size: 15px; gap: 20px; border-radius: 8px; }
.home-actions .home-button.primary { padding: 8px 9px 8px 22px; box-shadow: 0 2px 0 rgba(255,255,255,.15) inset; }
.button-arrow { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 5px; background: rgba(8,34,30,.09); }
.home-actions .home-button.secondary { border-color: transparent; background: transparent; color: #d4e0e8; padding: 12px 16px; }
.home-actions .home-button.secondary:hover { background: rgba(255,255,255,.055); color: #fff; }
.home-actions .home-button svg { transition: transform .2s; }
.home-actions .primary:hover svg { transform: translateX(3px); }
.home-actions .secondary:hover svg { transform: translateY(3px); }
.hero-bottom { position: relative; display: flex; flex-direction: column; align-items: center; width: 100%; margin-top: 36px; gap: 12px; }
.market-world { width: min(840px, 100%); }
.market-stage { position: relative; width: 100%; height: 304px; margin-top: 4px; }
.earth-view { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 304px; height: 304px; }
.earth-view canvas, .earth-poster { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.earth-view canvas { opacity: 0; transition: opacity .5s; }
.earth-view.is-ready canvas { opacity: 1; }
.earth-view.is-ready .earth-poster { visibility: hidden; }
.market-connections { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.market-connections path { fill: none; stroke: #9bf0df; stroke-width: 1; opacity: .28; }
.market-connections circle { fill: var(--home-mint); stroke: #0b1820; stroke-width: 1.5; }
.market-connections g.is-active path { opacity: .9; stroke-width: 1.5; }
.market-connections g.is-active circle { fill: #f4c662; }
.market-link {
  position: absolute; z-index: 1; display: flex; align-items: center; gap: 11px;
  width: 202px; min-height: 52px; padding: 12px 14px; border: 1px solid rgba(187,211,229,.16);
  border-radius: 8px; background: rgba(10,19,27,.78); backdrop-filter: blur(12px);
  color: #e3edf5; font-size: 14px; font-weight: 500; text-align: left;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.market-link img { display: block; width: 28px; height: 21px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.layered-home .market-link { color: #e3edf5 !important; }
.market-link > svg { width: 16px; height: 16px; margin-left: auto; color: #7f99a8; }
.market-link:hover, .market-link:focus-visible { color: #fff; border-color: rgba(155,240,223,.65); background: rgba(22,46,48,.92); box-shadow: 0 0 22px rgba(155,240,223,.07); }
.layered-home .market-link:hover, .layered-home .market-link:focus-visible { color: #fff !important; }
.market-link:hover > svg, .market-link:focus-visible > svg { color: var(--home-mint); }
.market-link[data-market="us"] { left: 0; top: 52px; --pop-x: 120px; --pop-y: 45px; --pop-delay: 0ms; }
.market-link[data-market="uk"] { left: 0; top: 192px; --pop-x: 120px; --pop-y: -45px; --pop-delay: 80ms; }
.market-link[data-market="jp"] { right: 0; top: 26px; --pop-x: -120px; --pop-y: 65px; --pop-delay: 160ms; }
.market-link[data-market="in"] { right: 0; top: 126px; --pop-x: -120px; --pop-y: 0px; --pop-delay: 240ms; }
.market-link[data-market="sg"] { right: 0; top: 226px; --pop-x: -120px; --pop-y: -65px; --pop-delay: 320ms; }
.market-world.is-revealed .market-link { animation: market-emerge .8s cubic-bezier(.2,.7,.2,1) var(--pop-delay) backwards; }
@keyframes market-emerge { from { opacity: 0; transform: translate(var(--pop-x),var(--pop-y)) scale(.92); } to { opacity: 1; transform: none; } }
.layered-home .scroll-cue { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: #aab9c6; font-size: 12px; }
.scroll-cue svg { width: 20px; height: 20px; }

.story-chapter { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: min(1160px, calc(100% - 160px)); min-height: 820px; min-height: max(760px, 95svh); margin: 0 auto; padding: 100px 0; }
.chapter-copy { position: relative; grid-column: 1; grid-row: 1; max-width: 490px; }
.chapter-reverse .chapter-copy { grid-column: 2; }
.chapter-copy::before { content: ''; position: absolute; inset: -40px -24px; background: rgba(5,8,14,.26); filter: blur(24px); z-index: -1; pointer-events: none; }
.chapter-number { display: inline-block; font-family: 'Geist Mono', monospace; font-size: 12px; color: #718493; margin-right: 22px; }
.chapter-copy h2 { font-size: 44px; font-weight: 500; line-height: 1.16; text-wrap: balance; }
.layered-home .chapter-takeaway { position: relative; margin-top: 22px; color: #e2edf5 !important; font-size: 21px; font-weight: 500; line-height: 1.5; text-wrap: pretty; }
.layered-home .chapter-takeaway strong { color: var(--home-mint) !important; font-weight: 600; }
.layered-home .chapter-description { color: var(--home-muted) !important; font-size: 17px; line-height: 1.8; margin: 26px 0 28px; max-width: 465px; }
.layered-home .chapter-takeaway + .chapter-description { margin-top: 18px; }
.research-rows { border-top: 1px solid var(--home-line); }
.layered-home .research-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--home-line); color: var(--home-muted); transition: background .2s; }
.research-row:hover { background: rgba(112,198,210,.045); }
.research-row > span { display: flex; flex-direction: column; gap: 3px; }
.research-row strong { font-weight: 500; font-size: 16px; }
.research-row span > span { font-size: 14px; }
.research-row small { font-size: 10px; color: #8c9fae; border: 1px solid var(--home-line); border-radius: 3px; padding: 1px 5px; margin-left: 5px; vertical-align: middle; }
.research-row > svg { color: #7e99ad; transition: transform .2s; }
.research-row:hover > svg { transform: translateX(4px); color: var(--home-mint); }
.layered-home .text-link { display: inline-flex; gap: 20px; align-items: center; margin-top: 28px; font-size: 14px; color: var(--home-mint); }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.chapter-space { position: relative; align-self: stretch; grid-row: 1; grid-column: 2; pointer-events: none; }
.chapter-reverse .chapter-space { grid-column: 1; }

.chapter-nav { position: fixed; right: 24px; top: 50%; transform: translateY(-50%); z-index: 10; display: grid; gap: 4px; }
.chapter-nav a { position: relative; display: grid; place-items: center; width: 28px; height: 28px; }
.chapter-nav a::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: #566677; transition: box-shadow .3s, background .3s; }
.chapter-nav a[aria-current]::after { background: var(--home-mint); box-shadow: 0 0 0 4px rgba(155,240,223,.14); }
.chapter-nav a span { position: absolute; right: 32px; white-space: nowrap; color: #d3e7e7; background: rgba(5,8,14,.9); padding: 3px 9px; border-radius: 4px; font-size: 12px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.chapter-nav a:hover span, .chapter-nav a:focus-visible span { opacity: 1; }
.sky-motion { position: fixed; bottom: 20px; left: 22px; z-index: 15; display: flex; align-items: center; gap: 8px; height: 36px; padding: 8px 12px; border: 1px solid var(--home-line); border-radius: 20px; background: rgba(5,8,14,.8); color: #b3c4d1; font-size: 11px !important; backdrop-filter: blur(10px); }
.sky-motion svg { width: 12px; height: 12px; }
.sky-motion .play-icon { display: none; }
.sky-motion[aria-pressed="true"] .play-icon { display: block; }
.sky-motion[aria-pressed="true"] .pause-icon { display: none; }

.pricing-section { position: relative; width: min(1000px, calc(100% - 96px)); margin: 0 auto; padding: 130px 0 100px; text-align: center; }
.pricing-kicker { color: var(--home-mint); font-size: 13px; margin-bottom: 24px; }
.pricing-title { font-size: 44px; line-height: 1.2; font-weight: 500; }
.pricing-subtitle { margin: 24px auto; max-width: 600px; font-size: 16px; color: var(--home-muted); }
.pricing-proof-row { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 48px; }
.pricing-proof { font-size: 13px; color: #c1d0d8; }
.pricing-proof::before { content: '\2713'; color: var(--home-mint); margin-right: 7px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; text-align: left; }
.plan-card { position: relative; padding: 36px 32px 30px; border: 1px solid var(--home-line); border-radius: 8px; background: rgba(10,19,28,.7); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.plan-card.featured { border-color: rgba(155,240,223,.5); background: rgba(12,30,35,.64); }
.plan-badge { position: absolute; top: -13px; right: 24px; padding: 4px 12px; background: var(--home-mint); border-radius: 4px; color: #0b211c; font-size: 12px; font-weight: 600; }
.plan-topline { display: flex; gap: 12px; flex-wrap: wrap; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.plan-name { font-size: 18px; font-weight: 500; }
.plan-discount { font-size: 12px; color: #a2b9c2; }
.plan-was-row { display: flex; gap: 8px; font-size: 13px; color: #97aabc; }
.plan-was { text-decoration: line-through; }
.plan-price-row { display: flex; align-items: center; gap: 16px; margin: 6px 0 20px; }
.plan-price { font-size: 52px; line-height: 1.2; font-weight: 500; }
.plan-period { color: #92a8b7; font-size: 12px; line-height: 1.6; }
.plan-who { font-size: 14px; color: var(--home-muted); }
.plan-who strong { font-weight: 500; }
.plan-savings-callout { display: flex; flex-direction: column; gap: 5px; margin-top: 18px; font-size: 12px; color: #a9bfca; }
.plan-savings-callout strong { font-size: 14px; font-weight: 500; }
.plan-features { list-style: none; padding: 22px 0; margin: 24px 0 0; border-top: 1px solid var(--home-line); }
.plan-features li { font-size: 14px; margin: 9px 0; }
.plan-features li::before { content: '\2713'; margin-right: 10px; color: var(--home-mint); }
.layered-home .plan-cta { display: flex; justify-content: center; padding: 13px 16px; border-radius: 5px; font-size: 14px; font-weight: 600; border: 1px solid #647d87; color: var(--home-text); }
.layered-home .plan-cta.primary { background: var(--home-mint); border-color: var(--home-mint); color: #0a2720; }
.plan-cta:hover { filter: brightness(1.12); }
.pricing-fine-print { color: #98a9b9; font-size: 12px; margin: 26px 0 0; }
.reviews-cta-section { position: relative; width: min(1060px, calc(100% - 96px)); padding: 80px 0; margin: 0 auto; text-align: center; border-top: 1px solid var(--home-line); }
.home-testimonials-eyebrow { color: var(--home-mint); font-size: 13px; margin-bottom: 24px; }
.reviews-cta-title { font-size: 32px; line-height: 1.25; font-weight: 500; }
.reviews-cta-desc { max-width: 650px; margin: 18px auto; color: var(--home-muted); font-size: 16px; }
.home-testimonials-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin: 32px 0; text-align: left; }
.home-testimonial-card { border: 1px solid var(--home-line); border-radius: 8px; padding: 24px; background: rgba(10,17,26,.6); }
.home-testimonial-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-bottom: 16px; }
.home-testimonial-name { font-size: 16px; font-weight: 500; }
.home-testimonial-stars { color: var(--home-gold); font-size: 13px; }
.home-testimonial-text { color: var(--home-muted); font-size: 14px; line-height: 1.8; overflow-wrap: anywhere; }
.home-testimonial-foot { color: #9fbdc9; font-size: 12px; margin-top: 20px; }
.reviews-cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.layered-home .reviews-cta-btn { color: var(--home-mint); font-size: 14px; }
.reviews-cta-btn:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-wrap { width: min(1060px, calc(100% - 80px)); margin: 0 auto; padding: 50px 0 84px; text-align: center; }
.footer-wrap > div:first-child { font-size: 12px !important; color: #92a2b1 !important; max-width: 900px !important; padding: 0 !important; }
.layered-home .brand-notice { max-width: 900px; margin: 18px auto 0; color: #aab9c6 !important; font-size: 12px; line-height: 1.7; }
.footer { border-top: 1px solid var(--home-line); padding-top: 24px; margin-top: 28px; color: #99aabb; font-size: 12px; }
.footer a { color: #b6cedd !important; }

/* Market selector remains a normal accessible dialog above every sky layer. */
.mkt-overlay { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(2,5,10,.7); backdrop-filter: blur(16px); opacity: 0; transition: opacity .2s; }
.mkt-overlay.active { display: flex; opacity: 1; }
.mkt-modal { position: relative; width: min(900px,100%); max-height: calc(100svh - 40px); overflow-y: auto; padding: 40px; border: 1px solid var(--home-line); border-radius: 8px; background: #0a121c; }
.mkt-modal-title { font-size: 28px; line-height: 1.3; font-weight: 600; }
.mkt-modal-sub { margin: 10px 0 30px; color: var(--home-muted); font-size: 15px; }
.mkt-cards { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 14px; }
.mkt-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; grid-column: span 2; padding: 22px 14px; border: 1px solid var(--home-line); border-radius: 6px; background: rgba(125,169,187,.04); }
.mkt-card:nth-child(4) { grid-column: 2 / span 2; }
.mkt-card:nth-child(5) { grid-column: 4 / span 2; }
.mkt-card:hover { border-color: var(--home-mint); background: rgba(155,240,223,.05); }
.mkt-flag { font-size: 30px; }
.mkt-name { color: var(--home-text); font-size: 16px; font-weight: 600; }
.mkt-index,.mkt-stocks { font-size: 12px; color: #a2c5d9; }
.mkt-desc { font-size: 12px; color: var(--home-muted); }
.mkt-badge { color: var(--home-mint); font-size: 11px; margin-top: auto; }
.mkt-close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 1px solid var(--home-line); border-radius: 5px; color: #c8d6e0; background: transparent; font-size: 24px !important; }

@media (max-width: 1100px) {
  .layered-home .nav-center { gap: 12px; }
  .layered-home .nav-thinkrium { display: none; }
  .story-chapter { width: calc(100% - 120px); gap: 50px; }
  .chapter-copy h2 { font-size: 38px; }
}
@media (max-width: 760px) {
  .layered-home .nav-wrapper,.layered-home .nav-wrapper.scrolled { padding: 10px 14px 0; }
  .layered-home .top-nav { height: 56px; padding: 0 14px; }
  .layered-home .nav-brand { width: 118px; min-width: 118px; }
  .layered-home .nav-brand img { width: 118px; }
  .layered-home .nav-center { display: none; }
  .layered-home .nav-hamburger { display: flex; }
  .layered-home .nav-cta { font-size: 12px; }
  .home-hero { min-height: max(760px,100svh); flex-direction: column; padding: 114px 22px 30px; }
  .hero-identity { gap: 10.8px; }
  .hero-brand-mark { width: 81px; height: 82.8px; }
  .home-hero h1 { font-size: 68.4px; }
  .layered-home .hero-statement { font-size: 23px; line-height: 1.4; margin-top: 30px; }
  .layered-home .hero-description { font-size: 16px; }
  .layered-home .eyebrow { font-size: 12px; margin-bottom: 22px; }
  .home-actions { gap: 10px; }
  .layered-home .home-button { font-size: 13px; padding: 12px 16px; gap: 12px; }
  .home-actions { gap: 6px; }
  .home-actions .home-button { font-size: 14px; }
  .hero-bottom { position: relative; width: 100%; margin-top: 36px; gap: 24px; }
  .market-world { max-width: 420px; }
  .market-stage { height: auto; padding-top: 268px; }
  .earth-view { width: 268px; height: 268px; }
  .market-connections { display: none; }
  .market-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .market-link { position: relative; inset: auto !important; width: 100%; min-height: 52px; padding: 10px; gap: 8px; font-size: 13px; }
  .market-link span { min-width: 0; }
  .market-link > svg { display: none; }
  .market-link:last-child { grid-column: 1 / -1; justify-self: center; width: calc(50% - 5px); }
  .market-world.is-revealed .market-link { --pop-x: 0px; --pop-y: -24px; }
  .story-chapter { width: calc(100% - 48px); min-height: 1040px; grid-template-columns: 1fr; grid-template-rows: auto 290px; gap: 35px; padding: 90px 0 50px; align-content: center; }
  .chapter-copy,.chapter-reverse .chapter-copy { grid-column: 1; grid-row: 1; max-width: 520px; margin: 0 auto; width: 100%; }
  .chapter-copy::before { inset: -30px -16px; }
  .chapter-space,.chapter-reverse .chapter-space { grid-column: 1; grid-row: 2; min-height: 280px; }
  .layered-home .chapter-takeaway { font-size: 19px; margin-top: 20px; }
  .chapter-copy h2 { font-size: 35px; }
  .layered-home .chapter-description { font-size: 16px; }
  .chapter-nav { display: none; }
  .sky-motion { left: 12px; bottom: 12px; padding: 9px; width: 34px; height: 34px; }
  .sky-motion span { display: none; }
  .pricing-section { width: calc(100% - 48px); padding: 90px 0 70px; }
  .pricing-title { font-size: 35px; }
  .pricing-proof-row { gap: 12px; }
  .pricing-proof { font-size: 12px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 34px; max-width: 440px; }
  .plan-card { padding: 28px 24px; }
  .reviews-cta-section { width: calc(100% - 48px); padding: 60px 0; }
  .reviews-cta-title { font-size: 28px; }
  .home-testimonials-grid { grid-template-columns: 1fr; }
  .footer-wrap { width: calc(100% - 48px); padding-bottom: 70px; }
  .mkt-modal { padding: 48px 22px 24px; }
  .mkt-cards { grid-template-columns: 1fr; }
  .mkt-card,.mkt-card:nth-child(4),.mkt-card:nth-child(5) { grid-column: 1; }
  .mkt-desc { max-width: 280px; }
}
@media (max-width: 380px) {
  .layered-home .top-nav .nav-cta { padding: 8px 10px; }
  .hero-identity { gap: 9px; }
  .hero-brand-mark { width: 66.6px; height: 72px; }
  .home-hero h1 { font-size: 54px; }
  .layered-home .hero-statement { font-size: 22px; }
  .chapter-copy h2 { font-size: 31px; }
  .story-chapter { width: calc(100% - 40px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .layered-home *, .layered-home *::before, .layered-home *::after { animation: none !important; transition: none !important; }
}
