:root {
  color-scheme: dark;
  --ink: #070806;
  --ink-soft: #0b0e0c;
  --panel: #0f1411;
  --panel-raised: #141a16;
  --paper: #f2ede2;
  --paper-soft: #d7d0c2;
  --gold: #d3aa61;
  --gold-bright: #f0c979;
  --orange: #ff7518;
  --jade: #6f9d8a;
  --jade-dark: #355f50;
  --text: #eee8dc;
  --muted: #9d998f;
  --line: rgba(231, 205, 152, .14);
  --line-strong: rgba(231, 205, 152, .27);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; background: var(--ink); }
body {
  position: relative;
  isolation: isolate;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 117, 24, .09), transparent 24rem),
    radial-gradient(circle at 16% 34%, rgba(65, 116, 95, .11), transparent 28rem),
    var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: -18rem;
  right: -13rem;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(255, 117, 24, .16);
  border-radius: 50%;
  box-shadow: 0 0 130px rgba(255, 117, 24, .07), inset 0 0 100px rgba(255, 117, 24, .04);
  pointer-events: none;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { max-width: 100%; }
::selection { color: var(--ink); background: var(--gold-bright); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 5px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 99; padding: 10px 14px; color: var(--ink); background: var(--gold-bright); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 64px));
  min-height: 86px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 6, .7);
  backdrop-filter: blur(20px) saturate(130%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--paper); font-weight: 760; letter-spacing: .08em; }
.brand-logo { display: block; width: 38px; height: 38px; flex: 0 0 38px; object-fit: contain; filter: drop-shadow(0 0 16px rgba(255, 117, 24, .28)); transition: filter .3s ease, scale .3s ease; }
.brand:hover .brand-logo { scale: 1.06; filter: drop-shadow(0 0 22px rgba(255, 117, 24, .48)); }
.main-nav { display: flex; gap: 34px; font-size: 13px; color: var(--muted); }
.main-nav a { position: relative; padding: 12px 0; transition: color .25s ease; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--gold-bright); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--paper); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .82fr);
  gap: 64px;
  align-items: center;
  width: min(1240px, calc(100% - 64px));
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: 74px 0 92px;
}
.hero::before { content: ""; position: absolute; top: 8%; right: -8%; width: 38rem; height: 38rem; border-radius: 50%; background: radial-gradient(circle, rgba(255,117,24,.14), rgba(53,95,80,.07) 42%, transparent 68%); filter: blur(9px); animation: halo-pulse 8s ease-in-out infinite; }
.hero-copy { position: relative; z-index: 6; animation: rise-in .8s cubic-bezier(.2,.75,.25,1) both; }
.hero-brand-lockup { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.hero-brand-lockup img { display: block; width: 74px; height: 74px; object-fit: contain; filter: drop-shadow(0 0 24px rgba(255, 117, 24, .32)); animation: logo-breathe 5s ease-in-out infinite; }
.hero-brand-lockup strong { color: var(--paper-soft); font-size: 14px; letter-spacing: .2em; }
.eyebrow { margin: 0 0 23px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; }
.hero h1, .section-heading h2, .privacy-section h2, .final-cta h2, .legal-hero h1, .support-hero h1 { margin: 0; font-family: var(--serif); font-weight: 680; letter-spacing: -.045em; }
.hero h1 { max-width: 720px; color: var(--paper); font-size: clamp(60px, 6.4vw, 96px); line-height: 1.06; text-shadow: 0 18px 80px rgba(0,0,0,.38); }
.hero h1 em { color: transparent; background: linear-gradient(110deg, var(--paper) 0%, var(--gold-bright) 44%, var(--orange) 100%); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-lead { max-width: 610px; margin: 34px 0 0; color: var(--paper-soft); font-size: 17px; line-height: 1.95; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.store-status { display: inline-flex; align-items: center; gap: 10px; padding: 13px 19px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--paper-soft); background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); font-size: 13px; font-weight: 700; }
.store-status span { color: var(--orange); font-size: 9px; animation: status-pulse 2s ease-in-out infinite; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 5px; color: var(--paper); border-bottom: 1px solid rgba(240, 201, 121, .45); font-size: 13px; font-weight: 700; transition: color .2s ease, border-color .2s ease; }
.text-link span { transition: translate .2s ease; }
.text-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.text-link:hover span { translate: 4px 0; }
.boundary-line { margin: 25px 0 0; color: #716f68; font-size: 12px; }

.product-scene { position: relative; min-height: 610px; animation: rise-in 1s .18s cubic-bezier(.2,.75,.25,1) both; }
.product-scene::before, .product-scene::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.product-scene::before { inset: 1% 0 4% 3%; border: 1px solid rgba(211,170,97,.12); animation: orbit 30s linear infinite; }
.product-scene::after { top: 14%; right: 8%; width: 18rem; height: 18rem; border: 1px dashed rgba(111,157,138,.16); animation: orbit-reverse 22s linear infinite; }
.phone-card { position: absolute; top: 16px; right: 18px; z-index: 4; width: 330px; min-height: 590px; padding: 20px 24px 26px; overflow: hidden; color: var(--paper); background: linear-gradient(155deg, rgba(28,35,30,.96), rgba(8,10,9,.98) 58%, rgba(17,21,18,.98)); border: 1px solid rgba(240,201,121,.28); border-radius: 48px; box-shadow: 0 45px 110px rgba(0,0,0,.58), 0 0 70px rgba(255,117,24,.07), inset 0 0 0 5px #181c19, inset 0 0 0 6px rgba(255,255,255,.05); animation: phone-float 7s ease-in-out infinite; }
.phone-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(111,157,138,.25), transparent 32%), radial-gradient(circle at 12% 83%, rgba(255,117,24,.1), transparent 34%); pointer-events: none; }
.phone-card::after { content: ""; position: absolute; top: -45%; left: -90%; width: 75%; height: 190%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.045), transparent); transform: rotate(18deg); animation: phone-sheen 9s 2s ease-in-out infinite; pointer-events: none; }
.phone-top, .app-mini-brand, .mini-kicker, .phone-card h2, .mini-input, .mini-chips, .mini-button, .mini-note { position: relative; z-index: 1; }
.phone-top { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: rgba(242,237,226,.62); }
.phone-top i { display: block; width: 76px; height: 20px; margin-right: 82px; border-radius: 999px; background: #030403; box-shadow: inset 0 -1px 0 rgba(255,255,255,.08); }
.app-mini-brand { display: flex; align-items: center; gap: 9px; margin-top: 30px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.app-mini-brand img { display: block; width: 24px; height: 24px; object-fit: contain; }
.mini-kicker { margin: 64px 0 12px; color: var(--gold-bright); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.phone-card h2 { margin: 0; font-family: var(--serif); font-size: 34px; line-height: 1.25; letter-spacing: -.02em; }
.mini-input { min-height: 94px; margin-top: 28px; padding: 17px; color: rgba(242,237,226,.78); background: rgba(255,255,255,.045); border: 1px solid rgba(240,201,121,.2); border-radius: 17px; font-size: 12px; line-height: 1.7; }
.mini-chips { display: flex; gap: 8px; margin-top: 13px; }
.mini-chips span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: rgba(242,237,226,.58); font-size: 9px; }
.mini-button { margin-top: 22px; padding: 13px; border-radius: 12px; color: #16100a; background: linear-gradient(110deg, var(--gold-bright), #dfa954); box-shadow: 0 12px 30px rgba(211,170,97,.13); text-align: center; font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.mini-note { margin: 12px 0 0; color: rgba(242,237,226,.36); text-align: center; font-size: 8px; }
.path-line { position: absolute; z-index: 3; height: 1px; overflow: visible; background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); background-size: 200% 100%; transform-origin: left center; opacity: .58; animation: path-flow 3s linear infinite; }
.path-one { top: 425px; left: 0; width: 245px; transform: rotate(-16deg); }
.path-two { top: 360px; left: 206px; width: 190px; transform: rotate(20deg); }
.path-node { position: absolute; z-index: 5; display: grid; place-items: center; width: 56px; height: 56px; color: var(--paper); background: rgba(18,29,24,.9); border: 1px solid rgba(240,201,121,.55); border-radius: 50%; box-shadow: 0 12px 32px rgba(0,0,0,.42), 0 0 22px rgba(211,170,97,.1); font-family: var(--serif); font-size: 18px; backdrop-filter: blur(12px); animation: node-breathe 4s ease-in-out infinite; }
.node-one { top: 420px; left: 12px; }
.node-two { top: 330px; left: 202px; animation-delay: -.9s; }
.node-three { top: 382px; left: 358px; animation-delay: -1.8s; }

.problem-band { position: relative; overflow: hidden; padding: 70px 32px; border-block: 1px solid var(--line); background: linear-gradient(90deg, rgba(53,95,80,.1), rgba(255,117,24,.055), rgba(53,95,80,.1)); }
.problem-band::before { content: ""; position: absolute; top: 0; bottom: 0; left: -30%; width: 30%; background: linear-gradient(90deg, transparent, rgba(240,201,121,.08), transparent); animation: band-sweep 9s linear infinite; }
.problem-band p { position: relative; width: min(950px, 100%); margin: 0 auto; color: var(--paper-soft); font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); line-height: 1.7; text-align: center; }
.section-shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; padding: 132px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 70px; }
.section-heading .eyebrow { min-width: 220px; }
.section-heading h2 { max-width: 780px; color: var(--paper); font-size: clamp(44px, 5.1vw, 71px); line-height: 1.2; }
.compact-heading { display: block; }
.compact-heading h2 { max-width: 820px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.step-grid li { position: relative; min-height: 330px; padding: 27px 25px 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(155deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); transition: translate .3s ease, border-color .3s ease, background .3s ease; }
.step-grid li::after { content: ""; position: absolute; right: -35%; bottom: -55%; width: 12rem; height: 12rem; border-radius: 50%; background: radial-gradient(circle, rgba(255,117,24,.12), transparent 68%); opacity: 0; transition: opacity .3s ease; }
.step-grid li:hover { translate: 0 -7px; border-color: var(--line-strong); background: linear-gradient(155deg, rgba(255,255,255,.055), rgba(255,117,24,.018)); }
.step-grid li:hover::after { opacity: 1; }
.step-number { display: inline-flex; align-items: center; justify-content: center; min-width: 43px; min-height: 27px; padding: 0 10px; color: var(--gold-bright); border: 1px solid var(--line-strong); border-radius: 999px; font-size: 11px; letter-spacing: .1em; }
.step-grid h3 { margin: 98px 0 18px; color: var(--paper); font-family: var(--serif); font-size: 25px; }
.step-grid p, .feature-layout p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }

.features-section { padding-top: 60px; }
.feature-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-layout article { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); transition: translate .3s ease, border-color .3s ease, box-shadow .3s ease; }
.feature-layout article:hover { translate: 0 -6px; border-color: var(--line-strong); box-shadow: 0 28px 80px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04); }
.feature-large { grid-column: 1 / -1; display: grid; grid-template-columns: .78fr 1.22fr; min-height: 430px; padding: 62px; background: linear-gradient(130deg, rgba(53,95,80,.16), rgba(255,117,24,.045) 62%, rgba(255,255,255,.02)) !important; }
.feature-large::before { content: ""; position: absolute; top: -14rem; right: -8rem; width: 32rem; height: 32rem; border: 1px solid rgba(240,201,121,.11); border-radius: 50%; }
.feature-copy { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; max-width: 380px; }
.feature-label { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.feature-layout h3 { margin: 18px 0 20px; color: var(--paper); font-family: var(--serif); font-size: 29px; line-height: 1.45; }
.ledger-list { position: relative; z-index: 1; align-self: center; padding-left: 70px; }
.ledger-list > div { display: grid; grid-template-columns: 14px 1fr auto; gap: 18px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line); transition: padding-left .25s ease, border-color .25s ease; }
.ledger-list > div:hover { padding-left: 8px; border-color: var(--line-strong); }
.ledger-list p { display: flex; flex-direction: column; gap: 7px; color: var(--paper-soft); }
.ledger-list strong { font-size: 14px; }
.ledger-list small { color: var(--muted); font-size: 11px; }
.ledger-list b { color: var(--gold); font-size: 18px; font-weight: 400; }
.ledger-dot { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 15px currentColor; }
.ledger-dot.jade { color: var(--jade); background: var(--jade); }
.ledger-dot.gold { color: var(--gold); background: var(--gold); }
.ledger-dot.muted { color: #777a74; background: #777a74; }
.feature-small { min-height: 360px; padding: 38px 34px; }
.feature-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 72px; color: var(--gold-bright); border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(240,201,121,.035); transition: rotate .35s ease, scale .35s ease, background .35s ease; }
.feature-layout article:hover .feature-icon { rotate: 3deg; scale: 1.06; background: rgba(240,201,121,.08); }
.feature-icon svg { display: block; width: 24px; height: 24px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }

.privacy-section { position: relative; overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(120deg, #0c1511, #0a0e0c 58%, #110d09); }
.privacy-section::before { content: ""; position: absolute; right: -18rem; bottom: -22rem; width: 44rem; height: 44rem; border: 1px solid rgba(111,157,138,.14); border-radius: 50%; box-shadow: 0 0 120px rgba(53,95,80,.08); }
.privacy-inner { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; width: min(1180px, calc(100% - 64px)); margin: 0 auto; padding: 132px 0; }
.privacy-section .eyebrow { color: var(--gold-bright); }
.privacy-section h2 { color: var(--paper); font-size: clamp(48px, 5.4vw, 75px); line-height: 1.22; }
.privacy-intro { max-width: 420px; margin: 34px 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.light-link { color: var(--paper); border-color: rgba(240,201,121,.38); }
.privacy-list { margin: 0; }
.privacy-list > div { padding: 32px 0; border-top: 1px solid var(--line); transition: padding-left .25s ease, border-color .25s ease; }
.privacy-list > div:hover { padding-left: 12px; border-color: var(--line-strong); }
.privacy-list dt { display: flex; gap: 20px; color: var(--paper); font-family: var(--serif); font-size: 23px; }
.privacy-list dt span { color: var(--gold-bright); font-family: var(--sans); font-size: 11px; font-weight: 800; }
.privacy-list dd { margin: 14px 0 0 43px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.principles-section { display: grid; grid-template-columns: 1.4fr .6fr; gap: 100px; align-items: end; }
.principle-quote { position: relative; }
.principle-quote > span { position: absolute; top: -55px; left: -10px; color: var(--gold); font-family: var(--serif); font-size: 105px; opacity: .45; }
.principle-quote blockquote { margin: 0; color: var(--paper); font-family: var(--serif); font-size: clamp(38px, 4.8vw, 64px); line-height: 1.45; }
.principle-notes { border-top: 1px solid var(--line); }
.principle-notes p { margin: 0; padding: 22px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.9; }
.faq-section { padding-top: 60px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 55px 28px 0; color: var(--paper-soft); cursor: pointer; font-family: var(--serif); font-size: 21px; list-style: none; transition: color .2s ease, padding-left .2s ease; }
.faq-list summary:hover { padding-left: 8px; color: var(--gold-bright); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 24px; color: var(--gold); font-family: var(--sans); font-size: 24px; font-weight: 300; transition: rotate .25s ease; }
.faq-list details[open] summary::after { content: "−"; rotate: 180deg; }
.faq-list p { max-width: 850px; margin: -5px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.final-cta { position: relative; overflow: hidden; padding: 132px 32px; border-top: 1px solid var(--line); background: radial-gradient(circle at 50% 130%, rgba(255,117,24,.16), transparent 45%), #080a08; text-align: center; }
.final-cta::before { content: ""; position: absolute; top: 50%; left: 50%; width: min(76vw, 900px); aspect-ratio: 1; border: 1px solid rgba(240,201,121,.08); border-radius: 50%; transform: translate(-50%,-50%); animation: orbit 28s linear infinite; }
.final-cta > * { position: relative; }
.final-cta .eyebrow { color: var(--gold-bright); }
.final-cta h2 { margin-bottom: 42px; color: var(--paper); font-size: clamp(50px, 6.4vw, 88px); line-height: 1.22; }
.store-status-dark { color: var(--paper); border-color: var(--line-strong); background: rgba(255,255,255,.035); }
.site-footer { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; align-items: end; padding: 64px max(32px, calc((100% - 1180px)/2)); color: var(--muted); background: #060706; border-top: 1px solid var(--line); }
.site-footer .brand { color: var(--paper); }
.site-footer .brand-logo { filter: drop-shadow(0 0 16px rgba(255,117,24,.28)); }
.footer-brand p { margin: 16px 0 0; font-size: 12px; }
.site-footer nav { display: grid; gap: 13px; font-size: 13px; }
.site-footer nav a { transition: color .2s ease, translate .2s ease; }
.site-footer nav a:hover { color: var(--gold-bright); translate: 4px 0; }
.footer-meta { text-align: right; font-size: 12px; }
.footer-meta a { text-decoration: underline; text-underline-offset: 3px; }

.legal-body { color: var(--text); background: radial-gradient(circle at 70% 0, rgba(255,117,24,.07), transparent 26rem), var(--ink); }
.legal-shell, .support-shell { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0 120px; }
.legal-hero { position: relative; padding: 35px 0 60px; border-bottom: 1px solid var(--line); }
.legal-hero::after, .support-hero::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 120px; height: 1px; background: linear-gradient(90deg, var(--orange), var(--gold-bright)); }
.legal-hero h1, .support-hero h1 { color: var(--paper); font-size: clamp(48px, 7vw, 78px); }
.legal-hero > p:last-child, .support-hero > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.legal-summary { margin: 45px 0; padding: 30px 34px; color: var(--paper-soft); background: linear-gradient(120deg, rgba(53,95,80,.28), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 16px; }
.legal-summary strong { color: var(--gold-bright); font-size: 12px; letter-spacing: .16em; }
.legal-summary p { margin: 12px 0 0; line-height: 1.9; }
.legal-content { width: min(760px, 100%); margin: 0 auto; }
.legal-content section { padding: 36px 0; border-bottom: 1px solid var(--line); }
.legal-content h2, .support-content h2 { margin: 0 0 20px; color: var(--paper); font-family: var(--serif); font-size: 26px; }
.legal-content h3 { margin: 26px 0 8px; color: var(--paper-soft); font-size: 15px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 14px; line-height: 2; }
.legal-content p { margin: 10px 0 0; }
.legal-content ul { padding-left: 1.35em; }
.legal-content a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; padding: 35px 24px; color: var(--muted); background: #060706; border-top: 1px solid var(--line); font-size: 12px; }
.legal-footer a { transition: color .2s ease; }
.legal-footer a:hover { color: var(--gold-bright); }

.support-hero { position: relative; max-width: 760px; padding: 30px 0 68px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.support-grid article { padding: 32px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); transition: translate .3s ease, border-color .3s ease, background .3s ease; }
.support-grid article:hover { translate: 0 -5px; border-color: var(--line-strong); background: rgba(255,255,255,.045); }
.support-grid span { color: var(--gold); font-family: var(--serif); font-size: 13px; }
.support-grid h2 { margin: 42px 0 10px; color: var(--paper); font-family: var(--serif); font-size: 24px; }
.support-grid p { min-height: 48px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.support-grid a { color: var(--gold-bright); font-size: 12px; font-weight: 800; }
.support-content { width: min(780px, 100%); margin: 90px auto 0; }
.support-content > section { padding: 44px 0; border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.support-content details { border-bottom: 1px solid var(--line); }
.support-content summary { padding: 20px 40px 20px 0; color: var(--paper-soft); cursor: pointer; font-weight: 700; list-style: none; transition: color .2s ease; }
.support-content summary:hover { color: var(--gold-bright); }
.support-content summary::-webkit-details-marker { display: none; }
.support-content details p { margin: 0; padding: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.contact-panel { padding: 42px !important; color: var(--paper); background: linear-gradient(135deg, rgba(53,95,80,.3), rgba(255,117,24,.06)); border: 1px solid var(--line) !important; border-radius: 18px; }
.contact-panel .eyebrow { color: var(--gold-bright); }
.contact-panel h2 { font-size: 34px; }
.contact-panel p, .contact-panel li { color: var(--muted); font-size: 14px; line-height: 1.9; }
.contact-panel ul { padding-left: 1.2em; }

@keyframes rise-in { from { opacity: 0; translate: 0 28px; } to { opacity: 1; translate: 0 0; } }
@keyframes ambient-drift { from { translate: 0 0; scale: .96; } to { translate: -4rem 5rem; scale: 1.06; } }
@keyframes halo-pulse { 0%, 100% { opacity: .62; scale: .94; } 50% { opacity: 1; scale: 1.04; } }
@keyframes logo-breathe { 0%, 100% { scale: 1; filter: drop-shadow(0 0 20px rgba(255,117,24,.28)); } 50% { scale: 1.035; filter: drop-shadow(0 0 30px rgba(255,117,24,.48)); } }
@keyframes status-pulse { 0%, 100% { opacity: .45; scale: .82; } 50% { opacity: 1; scale: 1.1; } }
@keyframes phone-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -11px; } }
@keyframes phone-sheen { 0%, 65% { translate: 0 0; opacity: 0; } 74% { opacity: 1; } 88%, 100% { translate: 300% 0; opacity: 0; } }
@keyframes path-flow { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes node-breathe { 0%, 100% { scale: 1; box-shadow: 0 12px 32px rgba(0,0,0,.42), 0 0 14px rgba(211,170,97,.08); } 50% { scale: 1.045; box-shadow: 0 12px 34px rgba(0,0,0,.42), 0 0 28px rgba(211,170,97,.19); } }
@keyframes band-sweep { from { translate: 0 0; } to { translate: 450% 0; } }
@keyframes orbit { to { rotate: 360deg; } }
@keyframes orbit-reverse { to { rotate: -360deg; } }
@keyframes view-reveal { from { opacity: 0; translate: 0 32px; } to { opacity: 1; translate: 0 0; } }

@supports (animation-timeline: view()) {
  .section-heading, .step-grid li, .feature-layout article, .privacy-inner > *, .principles-section > *, .faq-list, .support-grid article, .legal-content section {
    animation: view-reveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 28%;
  }
}

@media (max-width: 920px) {
  .site-header { width: min(100% - 40px, 1240px); }
  .main-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr; width: min(100% - 40px, 720px); padding-top: 70px; }
  .product-scene { min-height: 650px; }
  .phone-card { right: 10%; }
  .path-one { left: 5%; }
  .path-two { left: 32%; }
  .node-one { left: 5%; }
  .node-two { left: 32%; }
  .node-three { left: 58%; }
  .section-heading { display: block; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-layout { grid-template-columns: 1fr; }
  .feature-large { grid-template-columns: 1fr; }
  .ledger-list { margin-top: 35px; padding-left: 0; }
  .privacy-inner, .principles-section { grid-template-columns: 1fr; gap: 70px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { text-align: left; }
}

@media (max-width: 640px) {
  body::before { background-size: 44px 44px; }
  .site-header { width: calc(100% - 32px); min-height: 72px; }
  .brand { font-size: 14px; }
  .brand-logo { width: 34px; height: 34px; flex-basis: 34px; }
  .main-nav a:not(:last-child) { display: none; }
  .hero { width: min(100% - 32px, 560px); min-height: 0; padding: 58px 0 70px; gap: 26px; }
  .hero::before { top: 42%; right: -60%; width: 34rem; height: 34rem; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-brand-lockup { gap: 13px; margin-bottom: 26px; }
  .hero-brand-lockup img { width: 62px; height: 62px; }
  .hero-brand-lockup strong { font-size: 13px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .product-scene { min-height: 560px; transform: scale(.9); transform-origin: center top; margin-bottom: -50px; }
  .product-scene::before, .product-scene::after { display: none; }
  .phone-card { right: 50%; width: 310px; transform: translateX(50%); }
  .path-line, .path-node { display: none; }
  .problem-band { padding: 54px 24px; }
  .section-shell, .privacy-inner { width: min(100% - 36px, 1180px); padding: 88px 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .privacy-section h2 { font-size: 43px; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid li { min-height: 275px; }
  .step-grid h3 { margin-top: 65px; }
  .feature-large { padding: 34px 24px; }
  .feature-small { min-height: 310px; padding: 32px 26px; }
  .feature-icon { margin-bottom: 52px; }
  .principles-section { gap: 55px; }
  .principle-quote blockquote { font-size: 38px; }
  .final-cta { padding: 96px 22px; }
  .final-cta h2 { font-size: 49px; }
  .site-footer { grid-template-columns: 1fr; padding: 48px 24px; }
  .legal-shell, .support-shell { width: min(100% - 36px, 980px); padding-top: 55px; }
  .legal-hero h1, .support-hero h1 { font-size: 48px; }
  .legal-summary { padding: 25px 24px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-grid p { min-height: 0; }
  .contact-panel { padding: 32px 24px !important; }
}

@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; }
}
