:root {
  --bg: #09070d;
  --bg-soft: #100c17;
  --panel: rgba(20, 15, 29, 0.72);
  --panel-solid: #15101d;
  --text: #f6f0f7;
  --muted: rgba(238, 226, 243, 0.67);
  --faint: rgba(238, 226, 243, 0.42);
  --line: rgba(235, 214, 246, 0.12);
  --line-strong: rgba(235, 214, 246, 0.22);
  --violet: #b89af8;
  --violet-strong: #9b6ff2;
  --rose: #e9a7d3;
  --pearl: #f2e8f4;
  --green: #7ed8bc;
  --orange: #f2a86f;
  --blue: #8db5f6;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header: 78px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 7%, rgba(122, 75, 185, .17), transparent 27rem),
    radial-gradient(circle at 15% 23%, rgba(210, 110, 171, .08), transparent 25rem),
    linear-gradient(180deg, #09070d 0%, #0b0810 45%, #08060b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(184,154,248,.35); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, summary { font: inherit; }
img, svg { display: block; max-width: 100%; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; }
p, h1, h2, h3, blockquote { margin-top: 0; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: 14px; z-index: 1000; transform: translateY(-160%); padding: 10px 15px; border-radius: 12px; background: #fff; color: #111; font-weight: 700; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(184,154,248,.88); outline-offset: 4px; }

.ambient { position: fixed; z-index: -2; border-radius: 50%; filter: blur(90px); opacity: .26; pointer-events: none; }
.ambient--one { width: 38vw; height: 38vw; min-width: 380px; min-height: 380px; top: -15vw; right: -8vw; background: rgba(126, 77, 204, .48); }
.ambient--two { width: 30vw; height: 30vw; min-width: 300px; min-height: 300px; top: 40vh; left: -16vw; background: rgba(199, 94, 157, .22); }
.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .07; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header); border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { background: rgba(9,7,13,.78); border-color: var(--line); backdrop-filter: blur(18px) saturate(1.2); }
.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand img { border-radius: 13px; box-shadow: 0 0 30px rgba(151,98,222,.28); }
.brand__name { font-size: 14px; font-weight: 800; letter-spacing: .19em; }
.brand__by { margin-left: -4px; color: var(--faint); font-size: 11px; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 3vw, 34px); }
.site-nav a { position: relative; color: var(--muted); font-size: 13px; font-weight: 650; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: linear-gradient(90deg, var(--violet), var(--rose)); transition: right .2s ease; }
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.03); color: var(--text); cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.language-menu { position: relative; }
.language-menu summary { display: flex; align-items: center; gap: 7px; min-height: 42px; padding: 0 11px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); color: var(--muted); cursor: pointer; list-style: none; font-size: 12px; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary svg { width: 14px; transition: transform .2s ease; }
.language-menu[open] summary svg { transform: rotate(180deg); }
.language-menu__panel { position: absolute; top: calc(100% + 10px); right: 0; width: 190px; padding: 8px; border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(16,12,23,.97); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.language-menu__panel a { display: flex; gap: 10px; align-items: center; padding: 9px 10px; border-radius: 10px; color: var(--muted); font-size: 13px; }
.language-menu__panel a:hover, .language-menu__panel a.is-active { background: rgba(184,154,248,.11); color: var(--text); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 16px; font-weight: 760; font-size: 14px; letter-spacing: -.01em; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #130d18; background: linear-gradient(135deg, #f4e8f6, #d8bcf2 58%, #e9a7d3); box-shadow: 0 14px 34px rgba(164,107,210,.22); }
.button--primary:hover { box-shadow: 0 19px 42px rgba(164,107,210,.32); }
.button--ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: var(--text); }
.button--ghost:hover { border-color: rgba(184,154,248,.45); background: rgba(184,154,248,.07); }
.button--small { min-height: 42px; padding-inline: 16px; border-color: rgba(184,154,248,.24); background: rgba(184,154,248,.08); color: var(--pearl); font-size: 12px; }

.hero { min-height: 100svh; padding: calc(var(--header) + 82px) 0 95px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); align-items: center; gap: clamp(54px, 8vw, 105px); }
.eyebrow, .kicker { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--violet); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 18px var(--rose); }
.hero h1 { max-width: 760px; margin-bottom: 24px; font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif; font-size: clamp(52px, 6.6vw, 94px); line-height: .95; letter-spacing: -.055em; font-weight: 500; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { padding-bottom: .11em; background: linear-gradient(110deg, #f8eff8 0%, #c7a7f6 42%, #e9a7d3 78%, #fff 100%); background-size: 180% auto; -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; animation: sheen 8s ease-in-out infinite; }
.hero-sentence { max-width: 690px; margin-bottom: 26px; color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.75; }
.signal-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 31px; list-style: none; }
.signal-list li { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); color: var(--faint); font-size: 11px; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.store-note { display: flex; align-items: center; gap: 9px; margin: 19px 0 0; color: var(--faint); font-size: 12px; }
.status-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(126,216,188,.45); animation: pulse-ring 2.5s infinite; }
.boundary-note { max-width: 620px; margin: 13px 0 0; color: rgba(238,226,243,.4); font-size: 11px; }

.hero-visual { position: relative; min-height: 630px; display: grid; place-items: center; }
.mirror-halo { position: absolute; inset: 8% 0; border-radius: 50%; background: radial-gradient(circle, rgba(177,128,236,.22), rgba(215,131,183,.08) 38%, transparent 69%); filter: blur(12px); animation: breathe 6s ease-in-out infinite; }
.mirror-device { position: relative; width: min(100%, 430px); min-height: 590px; padding: 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 45px; background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(19,13,27,.8) 20%, rgba(8,6,12,.93)); box-shadow: 0 50px 100px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.13); backdrop-filter: blur(24px); transform: perspective(1100px) rotateY(-6deg) rotateX(2deg); }
.mirror-device::before { content: ""; position: absolute; top: 8px; left: 50%; width: 92px; height: 22px; transform: translateX(-50%); border-radius: 999px; background: #050407; }
.device-topbar { display: flex; justify-content: space-between; align-items: center; padding: 27px 14px 17px; border-bottom: 1px solid var(--line); }
.device-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .06em; }
.device-brand img { border-radius: 9px; }
.device-live { padding: 5px 8px; border-radius: 999px; background: rgba(126,216,188,.08); color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.device-canvas { position: relative; min-height: 462px; padding: 24px 14px; overflow: hidden; }
.trace-card, .reflection-card { position: relative; border: 1px solid var(--line); background: rgba(255,255,255,.035); box-shadow: 0 18px 35px rgba(0,0,0,.18); }
.trace-card { width: 78%; padding: 14px 16px; border-radius: 18px; }
.trace-card time { color: var(--faint); font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .11em; }
.trace-card p { margin: 6px 0 0; color: var(--pearl); font-size: 13px; line-height: 1.55; }
.trace-card--first { margin-right: auto; }
.trace-card--second { margin: 22px 0 0 auto; border-color: rgba(233,167,211,.22); background: rgba(233,167,211,.055); }
.trace-connection { height: 55px; margin-left: 26%; display: flex; align-items: center; gap: 7px; color: var(--violet); }
.trace-connection span { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.trace-connection i { width: 74px; height: 1px; background: linear-gradient(90deg, currentColor, rgba(233,167,211,.45)); }
.reflection-card { margin-top: 30px; padding: 18px; border-radius: 21px; border-color: rgba(184,154,248,.28); background: linear-gradient(135deg, rgba(184,154,248,.095), rgba(233,167,211,.045)); }
.reflection-card__head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; color: var(--violet); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.reflection-card__head img { border-radius: 8px; }
.reflection-card p { margin: 0; color: rgba(246,240,247,.83); font-size: 13px; line-height: 1.65; }
.device-footer { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-top: 1px solid var(--line); color: var(--faint); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.device-footer i { width: 22px; height: 1px; background: var(--line-strong); }

.section { position: relative; padding: clamp(88px, 11vw, 145px) 0; }
.section-heading { max-width: 650px; }
.section-heading--center { margin: 0 auto 54px; text-align: center; }
.section-heading--center .kicker { justify-content: center; }
.section h2 { margin-bottom: 20px; font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif; font-size: clamp(38px, 5vw, 65px); font-weight: 500; line-height: 1.04; letter-spacing: -.045em; }
.section-heading > p:last-child, .privacy-heading > p:last-child, .layer-panel > p, .body-panel > p, .download-panel > p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.kicker--green { color: var(--green); }
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mode-card { position: relative; min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); overflow: hidden; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.mode-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -70px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(184,154,248,.16), transparent 68%); }
.mode-card:nth-child(2)::after { background: radial-gradient(circle, rgba(141,181,246,.15), transparent 68%); }
.mode-card:nth-child(3)::after { background: radial-gradient(circle, rgba(233,167,211,.16), transparent 68%); }
.mode-card:hover { transform: translateY(-6px); border-color: rgba(184,154,248,.33); background: rgba(184,154,248,.055); }
.mode-card__number { position: absolute; top: 24px; right: 25px; color: rgba(238,226,243,.23); font-size: 11px; font-weight: 800; letter-spacing: .11em; }
.mode-card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 49px; border: 1px solid rgba(184,154,248,.2); border-radius: 16px; background: rgba(184,154,248,.07); color: var(--violet); }
.mode-card__icon svg { width: 24px; height: 24px; }
.mode-card:nth-child(2) .mode-card__icon { color: var(--blue); border-color: rgba(141,181,246,.2); background: rgba(141,181,246,.07); }
.mode-card:nth-child(3) .mode-card__icon { color: var(--rose); border-color: rgba(233,167,211,.2); background: rgba(233,167,211,.07); }
.mode-card h3 { margin-bottom: 9px; font-size: 20px; }
.mode-card p { margin: 0; color: var(--muted); font-size: 14px; }
.interlude { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 70px 0 0; color: rgba(242,232,244,.77); font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(20px, 2.4vw, 30px); text-align: center; }
.interlude span { color: var(--violet); font-size: 13px; }

.section--experience { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(184,154,248,.03), rgba(255,255,255,.008)); }
.experience-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(48px, 8vw, 100px); }
.section-heading blockquote { margin: 31px 0 0; padding: 18px 20px; border-left: 2px solid var(--violet); background: rgba(184,154,248,.045); color: rgba(238,226,243,.72); font-size: 14px; font-style: italic; }
.conversation { padding: 22px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(14,10,20,.82)); box-shadow: var(--shadow); }
.conversation__top { display: flex; justify-content: space-between; align-items: center; padding: 3px 4px 20px; color: var(--faint); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.conversation__status { display: flex; align-items: center; gap: 6px; color: var(--violet); }
.conversation__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.message { max-width: 86%; margin-bottom: 14px; padding: 16px 18px; border-radius: 20px; }
.message p { margin: 0; font-size: 14px; line-height: 1.7; }
.message--user { margin-left: auto; border-bottom-right-radius: 7px; background: linear-gradient(135deg, rgba(151,104,226,.76), rgba(208,113,172,.66)); color: #fff; }
.message--mirror { border: 1px solid var(--line); border-bottom-left-radius: 7px; background: rgba(255,255,255,.035); color: rgba(246,240,247,.83); }
.message__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; color: var(--violet); font-size: 11px; font-weight: 800; }
.message__brand img { border-radius: 8px; }
.typing { display: flex; align-items: center; gap: 5px; padding: 9px 8px 3px; color: var(--faint); }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); animation: typing 1.4s infinite; }
.typing span:nth-child(2) { animation-delay: .16s; }
.typing span:nth-child(3) { animation-delay: .32s; }
.typing small { margin-left: 7px; font-size: 10px; }

.section--network { overflow: hidden; }
.network-map { position: relative; display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 130px 260px; max-width: 980px; margin: 15px auto 45px; padding: 40px; }
.network-map::before, .network-map::after { content: ""; position: absolute; inset: 50% 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,154,248,.35), transparent); }
.network-map::after { inset: 12% 50%; width: 1px; height: auto; background: linear-gradient(180deg, transparent, rgba(184,154,248,.35), transparent); }
.network-center { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 155px; height: 155px; transform: translate(-50%, -50%); border: 1px solid rgba(184,154,248,.38); border-radius: 50%; background: radial-gradient(circle at 40% 30%, rgba(184,154,248,.22), rgba(15,10,22,.95) 68%); box-shadow: 0 0 75px rgba(137,83,204,.23); }
.network-center span { color: var(--rose); font-family: Georgia, serif; font-size: 31px; }
.network-center strong { font-size: 12px; }
.network-node { position: relative; z-index: 1; min-height: 120px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(20,15,29,.82); }
.network-node:nth-of-type(even) { text-align: right; }
.network-node span { color: var(--violet); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.network-node h3 { margin: 8px 0 0; font-size: 20px; }
.network-creed { margin: 0 auto 8px; color: var(--pearl); font-family: "Iowan Old Style", Georgia, serif; font-size: 26px; text-align: center; }
.network-boundary { max-width: 620px; margin: 0 auto; color: var(--faint); text-align: center; }

.section--layers { border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.layer-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.layer-panel, .body-panel { min-height: 570px; padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.01)); }
.layer-panel h2, .body-panel h2 { font-size: clamp(39px, 4.4vw, 58px); }
.dimension-list { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 34px 0 24px; list-style: none; }
.dimension-list li { padding: 9px 13px; border: 1px solid rgba(184,154,248,.18); border-radius: 999px; background: rgba(184,154,248,.055); color: rgba(235,219,247,.8); font-size: 12px; }
.dimension-list li:nth-child(2n) { border-color: rgba(141,181,246,.18); background: rgba(141,181,246,.05); }
.dimension-list li:nth-child(3n) { border-color: rgba(233,167,211,.18); background: rgba(233,167,211,.05); }
.layer-panel small, .body-panel small { display: block; color: var(--faint); font-size: 11px; }
.body-panel { text-align: center; background: radial-gradient(circle at 50% 15%, rgba(126,216,188,.09), transparent 34%), linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.008)); }
.body-panel .kicker { justify-content: center; }
.watch-orbit { position: relative; display: grid; place-items: center; width: 180px; height: 180px; margin: 0 auto 28px; border: 1px solid rgba(126,216,188,.14); border-radius: 50%; box-shadow: 0 0 60px rgba(126,216,188,.08); }
.watch-orbit::before, .watch-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(126,216,188,.16); }
.watch-orbit::before { inset: 18px; animation: orbit 9s linear infinite; border-top-color: var(--green); }
.watch-orbit::after { inset: 38px; border-color: rgba(184,154,248,.18); border-right-color: var(--violet); animation: orbit 7s linear reverse infinite; }
.watch-face { position: relative; z-index: 2; display: grid; place-items: center; width: 92px; height: 92px; border: 1px solid rgba(126,216,188,.3); border-radius: 28px; background: rgba(10,17,16,.85); box-shadow: inset 0 0 24px rgba(126,216,188,.08), 0 0 35px rgba(126,216,188,.12); }
.watch-face span { color: var(--green); font-size: 27px; }
.watch-face i { width: 33px; height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); }
.watch-face b { color: var(--violet); font-family: Georgia, serif; font-weight: 400; }
.optional-pill { display: inline-flex; margin: 23px 0 14px; padding: 7px 12px; border: 1px solid rgba(126,216,188,.2); border-radius: 999px; background: rgba(126,216,188,.055); color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }

.section--trust { background: radial-gradient(circle at 50% 20%, rgba(184,154,248,.055), transparent 35rem); }
.trust-intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 110px); align-items: center; margin-bottom: 115px; }
.trust-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.trust-list li { display: grid; grid-template-columns: 37px 1fr; gap: 13px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.024); color: var(--muted); font-size: 14px; }
.trust-list svg { width: 22px; height: 22px; color: var(--violet); }
.privacy-heading { max-width: 760px; margin-bottom: 43px; }
.privacy-heading h2 { max-width: 700px; }
.privacy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.privacy-card { min-height: 250px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.022); }
.privacy-card__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 42px; border-radius: 14px; background: rgba(184,154,248,.07); color: var(--violet); }
.privacy-card__icon svg { width: 22px; height: 22px; }
.privacy-card h3 { margin-bottom: 9px; font-size: 17px; }
.privacy-card p { margin: 0; color: var(--muted); font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; color: var(--violet); font-weight: 760; font-size: 13px; }
.text-link:hover { color: var(--rose); }

.section--faq { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 9vw, 120px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-weight: 720; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--violet); fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p { padding: 0 45px 24px 0; margin: 0; color: var(--muted); font-size: 14px; }

.section--download { padding-top: 80px; }
.download-panel { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 90px); border: 1px solid rgba(184,154,248,.2); border-radius: 48px; background: radial-gradient(circle at 50% -10%, rgba(184,154,248,.18), transparent 38%), linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012)); text-align: center; box-shadow: var(--shadow); }
.download-panel::after { content: ""; position: absolute; inset: auto -20% -80% 20%; height: 420px; background: radial-gradient(circle, rgba(233,167,211,.1), transparent 64%); }
.download-panel > * { position: relative; z-index: 1; }
.download-panel > img { margin: 0 auto 25px; border-radius: 25px; box-shadow: 0 0 52px rgba(151,98,222,.28); }
.download-panel .kicker { justify-content: center; }
.download-panel h2 { max-width: 700px; margin-inline: auto; }
.download-panel > p { max-width: 620px; margin: 0 auto 34px; }
.download-panel > small { display: block; margin-top: 18px; color: var(--faint); }
.store-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px; }
.store-button { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; min-width: 235px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 17px; background: rgba(255,255,255,.04); text-align: left; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.store-button.is-live:hover { transform: translateY(-3px); border-color: rgba(184,154,248,.45); background: rgba(184,154,248,.075); }
.store-button[aria-disabled="true"] { cursor: not-allowed; opacity: .58; }
.store-button__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: rgba(255,255,255,.065); color: var(--pearl); }
.store-button__icon svg { width: 23px; height: 23px; }
.store-button__text { display: flex; flex-direction: column; line-height: 1.25; }
.store-button__text small { color: var(--faint); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.store-button__text strong { font-size: 15px; }
.store-button__arrow { color: var(--violet); }
.store-button__status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 13px rgba(242,168,111,.5); }

.site-footer { padding: 58px 0 32px; border-top: 1px solid var(--line); background: rgba(4,3,6,.42); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .8fr; gap: 60px; }
.footer-brand > p { max-width: 470px; margin: 20px 0 0; color: var(--faint); font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(238,226,243,.32); font-size: 10px; }
.footer-meta p { margin: 0; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes sheen { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes breathe { 0%,100% { transform: scale(.96); opacity: .65; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes pulse-ring { 70% { box-shadow: 0 0 0 8px rgba(126,216,188,0); } 100% { box-shadow: 0 0 0 0 rgba(126,216,188,0); } }
@keyframes typing { 0%,70%,100% { opacity: .25; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-3px); } }
@keyframes orbit { to { transform: rotate(360deg); } }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .site-nav { position: fixed; top: calc(var(--header) - 2px); left: 24px; right: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(14,10,20,.97); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; border-radius: 11px; }
  .site-nav a:hover { background: rgba(184,154,248,.07); }
  .site-nav a::after { display: none; }
  .nav-toggle { display: block; grid-column: 2; }
  .header-actions { grid-column: 3; justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-visual { min-height: 570px; }
  .mirror-device { transform: none; }
  .experience-grid, .trust-intro, .faq-grid { grid-template-columns: 1fr; }
  .experience-grid { gap: 52px; }
  .network-map { gap: 130px 100px; }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header: 70px; }
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { background: rgba(9,7,13,.7); backdrop-filter: blur(15px); }
  .header-inner { gap: 9px; }
  .brand__by, .language-menu__current, .header-actions .button { display: none; }
  .language-menu summary { width: 44px; justify-content: center; padding: 0; }
  .language-menu summary svg { display: none; }
  .language-menu__panel { right: -48px; }
  .hero { padding-top: calc(var(--header) + 64px); padding-bottom: 70px; }
  .hero h1 { font-size: clamp(47px, 15vw, 72px); }
  .hero-sentence { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-visual { min-height: 510px; }
  .mirror-device { min-height: 510px; border-radius: 37px; }
  .device-canvas { min-height: 388px; padding-inline: 8px; }
  .trace-card { width: 87%; }
  .device-footer { font-size: 8px; }
  .section { padding: 82px 0; }
  .section-heading--center { margin-bottom: 38px; text-align: left; }
  .section-heading--center .kicker { justify-content: flex-start; }
  .section h2 { font-size: clamp(37px, 11vw, 51px); }
  .mode-grid, .layer-grid, .privacy-grid, .footer-grid { grid-template-columns: 1fr; }
  .mode-card { min-height: 230px; }
  .mode-card__icon { margin-bottom: 32px; }
  .interlude { margin-top: 50px; }
  .conversation { padding: 15px; border-radius: 28px; }
  .message { max-width: 93%; padding: 14px; }
  .network-map { display: flex; flex-direction: column; gap: 10px; padding: 0; }
  .network-map::before, .network-map::after { display: none; }
  .network-center { position: static; width: 125px; height: 125px; margin: 0 auto 16px; transform: none; }
  .network-node:nth-of-type(even) { text-align: left; }
  .layer-panel, .body-panel { min-height: 0; padding: 30px 24px; }
  .trust-intro { margin-bottom: 82px; gap: 42px; }
  .privacy-card { min-height: 210px; }
  .privacy-card__icon { margin-bottom: 28px; }
  .faq-grid { gap: 38px; }
  .download-panel { width: calc(100% - 24px); padding: 48px 22px; border-radius: 32px; }
  .store-row { display: grid; }
  .store-button { width: 100%; min-width: 0; }
  .footer-grid { gap: 32px; }
  .footer-meta { flex-direction: column; gap: 7px; }
}

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