/* Решиум — самостоятельный статический сайт. Все ресурсы локальные. */
:root {
  color-scheme: dark;
  --ink: #090510;
  --ink-soft: #11091d;
  --ink-violet: #160b2b;
  --paper: #f0e9ee;
  --paper-cool: #dce7ec;
  --paper-warm: #f2d9d3;
  --text: #f9f5ff;
  --text-dark: #120b19;
  --muted: #bdb3c8;
  --muted-dark: #655b69;
  --line: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(18, 11, 25, 0.2);
  --cyan: #36e6ff;
  --pink: #ff3dab;
  --violet: #815dff;
  --gold: #ffd33d;
  --success: #6ff3cb;
  --content: 1240px;
  --radius: 24px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 10% 20%, #fff 0 0.8px, transparent 1px),
    radial-gradient(circle at 78% 35%, #fff 0 0.7px, transparent 1px),
    radial-gradient(circle at 32% 82%, #fff 0 0.6px, transparent 1px);
  background-size: 13px 15px, 17px 19px, 11px 21px;
  mix-blend-mode: soft-light;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--cyan); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; border-radius: 4px; }
::selection { color: #090510; background: var(--cyan); }

.container { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: var(--text-dark);
  background: var(--gold);
  font-weight: 900;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(to bottom, rgba(9, 5, 16, 0.78), rgba(9, 5, 16, 0.22));
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand:hover { color: #fff; }
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(75, 209, 255, 0.26);
}
.site-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 22px; }
.site-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--cyan);
  transition: right 220ms ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: #fff; }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

/* Shared typography and controls */
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--font-display);
  line-height: 1.03;
  text-wrap: balance;
}
p { margin-top: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}
.button:hover {
  color: #fff;
  border-color: var(--cyan);
  background: rgba(54, 230, 255, 0.1);
  transform: translateY(-2px);
}
.button-primary { color: var(--text-dark); border-color: var(--cyan); background: var(--cyan); }
.button-primary:hover { color: var(--text-dark); background: #7cefff; }
.button-secondary { color: inherit; }
.button-disabled {
  color: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
  user-select: none;
}
.microcopy { color: var(--muted); font-size: 0.82rem; }
.status-line { display: flex; align-items: center; gap: 11px; color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.status-line strong { color: #fff; }
.status-dot { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px rgba(255, 211, 61, 0.8); }

/* Full-screen editorial homepage */
.scene { position: relative; min-height: 100svh; overflow: hidden; }
.scene-index {
  color: currentColor;
  opacity: 0.56;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.editorial-kicker {
  margin: 0 0 20px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Hero scene */
.hero-scene {
  isolation: isolate;
  min-height: max(760px, 100svh);
  background:
    radial-gradient(circle at 73% 20%, rgba(108, 46, 196, 0.52), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(0, 185, 255, 0.2), transparent 34%),
    radial-gradient(circle at 58% 62%, rgba(255, 28, 156, 0.18), transparent 30%),
    linear-gradient(148deg, #07040c 0%, #10061d 48%, #06040a 100%);
}
.hero-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 84%);
}
.hero-scene::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -14%;
  right: -14%;
  bottom: -24%;
  height: 40%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(42, 21, 67, 0.5), #090510 70%);
  filter: blur(2px);
}
.hero-stage { position: relative; min-height: max(760px, 100svh); padding-top: 126px; padding-bottom: 58px; }
.hero-kicker {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-title {
  position: relative;
  z-index: 4;
  margin: clamp(85px, 11vh, 132px) 0 0;
  color: #fff;
  font-size: clamp(5.3rem, 15.2vw, 13.7rem);
  font-weight: 560;
  letter-spacing: -0.085em;
  line-height: 0.73;
  text-transform: lowercase;
}
.hero-title-line { display: block; }
.hero-title-line-top { position: relative; z-index: 1; }
.hero-title-line-bottom {
  position: relative;
  z-index: 5;
  margin-left: clamp(8px, 12vw, 168px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.86);
  text-shadow: 0 0 60px rgba(73, 220, 255, 0.08);
}
.hero-object {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: 55%;
  width: clamp(270px, 31vw, 510px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(-6deg);
  animation: hero-float 7s ease-in-out infinite;
}
.hero-object img {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 24%;
  filter: drop-shadow(0 42px 58px rgba(0, 0, 0, 0.58));
}
.hero-halo {
  position: absolute;
  inset: 50%;
  z-index: 1;
  border: 1px solid rgba(93, 224, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-halo-one { width: 116%; height: 116%; animation: halo-spin 18s linear infinite; }
.hero-halo-two { width: 143%; height: 74%; border-color: rgba(255, 61, 171, 0.22); transform: translate(-50%, -50%) rotate(24deg); animation: halo-spin-reverse 22s linear infinite; }
.hero-halo-three { width: 78%; height: 152%; border-color: rgba(129, 93, 255, 0.26); transform: translate(-50%, -50%) rotate(-32deg); animation: halo-spin 25s linear infinite; }
.hero-copy {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 64px;
  width: min(430px, 43vw);
}
.hero-copy > p:first-child { margin-bottom: 22px; color: rgba(255, 255, 255, 0.8); font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.55; }
.hero-copy .microcopy { margin: 13px 0 0; }
.hero-index {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 72px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.hero-index span:first-child { color: #fff; font-size: 1rem; }
.scroll-cue {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue:hover { color: #fff; }
.scroll-cue i { position: relative; width: 36px; height: 1px; background: currentColor; }
.scroll-cue i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
.hero-ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: 0.72; }
.ambient-orb-a { width: 34vw; height: 34vw; min-width: 340px; min-height: 340px; right: -8vw; top: 2%; background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.55), rgba(255,61,171,.28) 18%, rgba(129,93,255,.09) 48%, transparent 70%); }
.ambient-orb-b { width: 26vw; height: 26vw; min-width: 280px; min-height: 280px; left: -12vw; bottom: -8%; background: radial-gradient(circle at 60% 40%, rgba(54,230,255,.4), rgba(30,66,178,.14) 42%, transparent 70%); }
.ambient-star { position: absolute; color: rgba(255,255,255,.5); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 200; animation: symbol-drift 8s ease-in-out infinite; }
.ambient-star-a { left: 8%; top: 30%; color: rgba(54,230,255,.72); }
.ambient-star-b { right: 7%; top: 43%; color: rgba(255,61,171,.72); animation-delay: -2s; }
.ambient-star-c { right: 18%; bottom: 15%; color: rgba(255,211,61,.72); animation-delay: -4s; }
.ambient-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent); transform-origin: center; }
.ambient-line-a { width: 40vw; left: -3%; top: 52%; transform: rotate(14deg); }
.ambient-line-b { width: 36vw; right: -4%; top: 68%; transform: rotate(-18deg); }

/* Light editorial scene */
.editorial-scene-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.74), transparent 23%),
    radial-gradient(circle at 92% 76%, rgba(151, 189, 207, 0.36), transparent 28%),
    linear-gradient(145deg, #efd7dc 0%, #e7e3ea 47%, #d6e3e8 100%);
}
.editorial-scene-light::before {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  right: -17vw;
  top: -12vw;
  border: 1px solid rgba(18,11,25,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.06), 0 0 0 140px rgba(255,255,255,.035);
}
.editorial-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 100px;
}
.editorial-layout > .scene-index { position: absolute; top: 112px; left: 0; }
.editorial-title {
  margin: 0;
  font-size: clamp(4.5rem, 9.5vw, 9rem);
  font-weight: 540;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: lowercase;
}
.editorial-title em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--text-dark); }
.editorial-lead { margin: 0 0 46px; max-width: 500px; color: var(--muted-dark); font-size: clamp(1.15rem, 1.7vw, 1.38rem); line-height: 1.55; }
.feature-lines { margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.feature-lines li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.feature-lines li > span { padding-top: 2px; color: var(--muted-dark); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.feature-lines strong { display: block; margin-bottom: 7px; font-family: var(--font-display); font-size: 1.26rem; letter-spacing: -0.025em; }
.feature-lines p { margin: 0; color: var(--muted-dark); }

/* Orbit scene */
.orbit-scene {
  min-height: 100svh;
  background:
    radial-gradient(circle at 62% 50%, rgba(72, 47, 116, 0.36), transparent 27%),
    radial-gradient(circle at 18% 30%, rgba(21, 101, 140, 0.2), transparent 24%),
    linear-gradient(145deg, #050507, #0d0a12 60%, #050507);
}
.orbit-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    radial-gradient(circle at 17% 21%, rgba(255,255,255,.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 73% 16%, rgba(255,255,255,.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 38% 75%, rgba(255,255,255,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 89% 68%, rgba(255,255,255,.8) 0 1px, transparent 1.5px);
  background-size: 180px 170px, 240px 220px, 210px 250px, 280px 230px;
}
.orbit-content { position: relative; z-index: 3; display: flex; min-height: 100svh; flex-direction: column; justify-content: center; padding-top: 120px; padding-bottom: 110px; }
.orbit-content > .scene-index { position: absolute; top: 112px; left: 0; }
.orbit-title { position: relative; z-index: 5; margin: 0; font-size: clamp(5rem, 12.5vw, 11.5rem); font-weight: 540; letter-spacing: -0.08em; line-height: 0.72; text-transform: lowercase; }
.orbit-title span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.88); }
.orbit-note { position: absolute; z-index: 6; right: 0; bottom: 80px; width: min(400px, 36vw); }
.orbit-note > p { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.orbit-visual { position: absolute; z-index: 2; top: 50%; left: 64%; width: clamp(430px, 50vw, 760px); aspect-ratio: 1; transform: translate(-50%, -50%); }
.orbit-ring { position: absolute; inset: 50%; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-ring-outer { width: 100%; height: 100%; box-shadow: 0 0 90px rgba(129,93,255,.15); animation: halo-spin 28s linear infinite; }
.orbit-ring-inner { width: 61%; height: 61%; border-color: rgba(54,230,255,.28); box-shadow: inset 0 0 80px rgba(54,230,255,.08); animation: halo-spin-reverse 18s linear infinite; }
.orbit-ring-outer::before,
.orbit-ring-inner::before { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 24px var(--pink); }
.orbit-ring-outer::before { top: 18%; left: 10%; }
.orbit-ring-inner::before { right: 4%; bottom: 30%; background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }
.orbit-core { position: absolute; inset: 50% auto auto 50%; color: rgba(255,255,255,.96); font-family: var(--font-display); font-size: clamp(6rem, 12vw, 11rem); font-weight: 300; transform: translate(-50%, -54%); text-shadow: 0 0 55px rgba(54,230,255,.28); }
.orbit-symbol { position: absolute; display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #fff; background: rgba(11,8,18,.65); font-family: var(--font-display); font-size: 2rem; backdrop-filter: blur(10px); }
.orbit-symbol-a { left: 3%; top: 44%; }
.orbit-symbol-b { right: 13%; top: 4%; }
.orbit-symbol-c { right: -2%; bottom: 28%; }
.orbit-symbol-d { left: 21%; bottom: 0; }

/* Access scene */
.access-scene {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 88%, rgba(255,255,255,.66), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(255, 188, 196, .65), transparent 33%),
    linear-gradient(135deg, #d3e4e8 0%, #e9e0e4 52%, #f2d1cb 100%);
}
.access-editorial {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.86fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 100px;
}
.access-editorial > .scene-index { position: absolute; top: 112px; left: 0; }
.access-hero-copy h2 { display: flex; margin: 0; flex-direction: column; font-size: clamp(2rem, 4vw, 4.2rem); font-weight: 550; letter-spacing: -0.055em; line-height: .94; text-transform: lowercase; }
.access-number { display: block; margin-bottom: -10px; font-size: clamp(12rem, 27vw, 24rem); font-weight: 520; letter-spacing: -0.12em; line-height: .66; }
.access-hero-copy > p:last-child { max-width: 430px; margin: 34px 0 0; color: var(--muted-dark); font-size: 1.1rem; }
.tariff-editorial { border-top: 1px solid var(--line-dark); }
.tariff-head { padding: 0 0 36px; }
.tariff-head h3 { margin-bottom: 15px; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.045em; }
.tariff-head p { color: var(--muted-dark); font-size: 1.04rem; }
.tariff-row { display: grid; grid-template-columns: 1fr auto 64px; gap: 20px; align-items: baseline; padding: 25px 0; border-bottom: 1px solid var(--line-dark); }
.tariff-row span { font-weight: 800; }
.tariff-row strong { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.045em; }
.tariff-row em { color: var(--muted-dark); font-size: 0.68rem; font-style: normal; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

/* Privacy scene */
.privacy-scene {
  background:
    radial-gradient(circle at 76% 30%, rgba(115, 48, 198, .36), transparent 28%),
    linear-gradient(145deg, #08040d 0%, #130820 54%, #07040b 100%);
}
.privacy-glow { position: absolute; right: -17vw; bottom: -24vw; width: 70vw; height: 70vw; border-radius: 50%; background: radial-gradient(circle at 45% 38%, rgba(255,61,171,.22), rgba(54,230,255,.08) 34%, transparent 70%); filter: blur(4px); }
.privacy-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .72fr);
  gap: clamp(60px, 9vw, 145px);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 100px;
}
.privacy-layout > .scene-index { position: absolute; top: 112px; left: 0; }
.privacy-heading h2 { margin: 0; font-size: clamp(5rem, 12vw, 11rem); font-weight: 540; letter-spacing: -0.085em; line-height: .72; text-transform: lowercase; }
.privacy-heading h2 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.88); }
.privacy-copy > p { margin-bottom: 38px; color: rgba(255,255,255,.76); font-size: clamp(1.12rem, 1.7vw, 1.35rem); }
.privacy-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.privacy-list li { position: relative; padding: 18px 0 18px 28px; border-bottom: 1px solid var(--line); font-weight: 750; }
.privacy-list li::before { content: ""; position: absolute; left: 0; top: 26px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }
.warning-copy { margin-top: 34px; padding-left: 18px; border-left: 2px solid var(--gold); color: rgba(255,255,255,.62); font-size: .93rem; }
.warning-copy strong { color: #fff; }

/* Closing scene */
.closing-scene {
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 15% 16%, rgba(255,255,255,.8), transparent 20%),
    linear-gradient(132deg, #f2dade 0%, #e1e2e9 44%, #cbe5ea 100%);
}
.closing-scene::before {
  content: "∞";
  position: absolute;
  right: -5vw;
  bottom: -17vw;
  color: rgba(18,11,25,.055);
  font-family: var(--font-display);
  font-size: 70vw;
  line-height: .7;
}
.closing-inner { position: relative; z-index: 2; display: flex; min-height: 86svh; flex-direction: column; justify-content: center; padding-top: 120px; padding-bottom: 100px; }
.closing-inner h2 { margin: 0; font-size: clamp(5rem, 12.5vw, 12rem); font-weight: 540; letter-spacing: -0.085em; line-height: .72; text-transform: lowercase; }
.closing-inner h2 span { color: transparent; -webkit-text-stroke: 1.5px var(--text-dark); }
.closing-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.closing-scene .button { color: var(--text-dark); border-color: rgba(18,11,25,.3); background: rgba(255,255,255,.18); }
.closing-scene .button:hover { color: var(--text-dark); border-color: var(--text-dark); background: rgba(255,255,255,.3); }
.closing-scene .button-disabled { color: rgba(18,11,25,.52); border-color: rgba(18,11,25,.15); }

/* Inner pages */
.inner-page { background: linear-gradient(145deg, #090510 0%, #12091e 52%, #07040c 100%); }
.inner-page main { min-height: 66vh; }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(170px, 20vw, 230px) 0 clamp(70px, 9vw, 120px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 78% 20%, rgba(129,93,255,.34), transparent 29%),
    radial-gradient(circle at 15% 88%, rgba(54,230,255,.14), transparent 28%);
}
.page-hero::after { content: ""; position: absolute; right: -10vw; top: 30%; width: 36vw; height: 36vw; min-width: 280px; min-height: 320px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 68px rgba(255,255,255,.025), 0 0 0 136px rgba(255,255,255,.012); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 1040px; margin: 0; font-size: clamp(4rem, 9vw, 8.2rem); font-weight: 540; letter-spacing: -0.075em; line-height: .82; text-transform: lowercase; }
.page-hero > .container > p:last-child { max-width: 730px; margin: 34px 0 0; color: rgba(255,255,255,.68); font-size: clamp(1.08rem, 1.7vw, 1.34rem); }
.breadcrumbs { margin: 0 0 24px; color: rgba(255,255,255,.48); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: rgba(255,255,255,.68); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: currentColor; }
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-tight { padding: clamp(46px, 6vw, 80px) 0; }
.section-head { max-width: 800px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 540; letter-spacing: -.065em; }
.section-head p { color: rgba(255,255,255,.64); font-size: 1.1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.card {
  position: relative;
  padding: 34px 30px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.grid-3 .card:first-child,
.grid-2 .card:first-child { border-left: 1px solid var(--line); }
.card h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 540; letter-spacing: -.055em; }
.card h3 { margin-bottom: 14px; font-size: clamp(1.35rem, 2vw, 1.7rem); letter-spacing: -.035em; }
.card p, .prose p, .prose li { color: rgba(255,255,255,.66); }
.card-number { display: block; margin-bottom: 68px; color: rgba(255,255,255,.4); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.card-accent { background: linear-gradient(145deg, rgba(54,230,255,.08), rgba(129,93,255,.07)); }
.card-warning { background: linear-gradient(145deg, rgba(255,211,61,.06), rgba(255,61,171,.045)); }
.clean-list { margin: 20px 0 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 11px 0 11px 27px; border-bottom: 1px solid rgba(255,255,255,.11); }
.clean-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.access-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 0; border-top: 1px solid var(--line); }
.access-summary { padding: 38px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.access-summary .big-number { display: block; font-family: var(--font-display); font-size: clamp(7rem,15vw,13rem); font-weight: 520; letter-spacing: -.11em; line-height: .78; }
.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.plan { padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan:first-child { border-left: 1px solid var(--line); }
.plan .price { display: block; margin: 18px 0 8px; font-family: var(--font-display); font-size: 2rem; }
.plan .state { color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.notice { padding: 24px 28px; border-left: 2px solid var(--gold); background: rgba(255,211,61,.055); color: rgba(255,255,255,.7); }
.notice strong { color: #fff; }
.note-cyan { border-left-color: var(--cyan); background: rgba(54,230,255,.055); }
.status-box { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; padding: 36px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.status-symbol { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--gold); font-size: 1.7rem; }
.status-box h2 { margin-bottom: 12px; font-size: clamp(2rem,4vw,3.8rem); letter-spacing: -.055em; }
.status-box p { margin: 0; color: rgba(255,255,255,.66); }
.faq { border-top: 1px solid var(--line); }
.faq-item { display: grid; grid-template-columns: minmax(220px,.42fr) 1fr; gap: 50px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.12rem; }
.faq-item p { margin: 0; color: rgba(255,255,255,.66); }

/* Legal documents retain exact article text but use the visual system */
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 42px; align-items: start; }
.legal-page article {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
}
.legal-page article h1 { margin-bottom: 20px; font-size: clamp(2.2rem,5vw,4.2rem); font-weight: 540; letter-spacing: -.06em; }
.legal-page article h3 { margin: 42px 0 15px; font-size: 1.32rem; letter-spacing: -.025em; }
.legal-page article p, .legal-page article li { color: rgba(255,255,255,.74); line-height: 1.7; }
.legal-page article ul { padding-left: 1.4rem; }
.legal-revision { color: var(--gold) !important; font-weight: 800; }
.legal-nav { position: sticky; top: 112px; padding: 0; border-top: 1px solid var(--line); }
.legal-nav strong { display: block; padding: 18px 0; color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.legal-nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); color: rgba(255,255,255,.68); font-weight: 700; text-decoration: none; }
.legal-nav a:hover,
.legal-nav a[aria-current="page"] { color: var(--cyan); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.12); background: #07040b; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: start; padding: 58px 0 46px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; }
.footer-brand img { width: 38px; height: 38px; border-radius: 11px; }
.footer-copy { max-width: 610px; margin: 16px 0 0; color: rgba(255,255,255,.48); font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(130px, auto)); gap: 12px 28px; }
.footer-links a { color: rgba(255,255,255,.66); font-size: .82rem; font-weight: 700; }
.footer-bottom { padding: 18px 0 30px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.38); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; }

/* 404 */
.not-found { min-height: 100svh; display: grid; place-items: center; padding: 150px 0 80px; text-align: center; }
.not-found-code { margin: 0; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.82); font-family: var(--font-display); font-size: clamp(8rem, 26vw, 20rem); font-weight: 540; line-height: .68; letter-spacing: -.1em; }
.not-found h1 { margin: 38px 0 0; font-size: clamp(2.5rem,6vw,5.5rem); letter-spacing: -.06em; }
.not-found p { max-width: 620px; margin: 24px auto 0; color: rgba(255,255,255,.64); }
.actions-center { justify-content: center; margin-top: 32px; }

/* Motion */
@keyframes hero-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-6deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-3deg) translateY(-18px); }
}
@keyframes halo-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes halo-spin-reverse {
  from { transform: translate(-50%, -50%) rotate(24deg); }
  to { transform: translate(-50%, -50%) rotate(-336deg); }
}
@keyframes symbol-drift {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(12px,-18px,0) rotate(8deg); }
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-object { left: 62%; width: clamp(250px, 38vw, 430px); }
  .hero-copy { width: 42vw; }
  .editorial-layout,
  .access-editorial,
  .privacy-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
  .orbit-visual { left: 70%; width: 58vw; }
  .orbit-note { width: 36vw; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; order: -1; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--content)); }
  .site-header { position: absolute; }
  .header-inner { min-height: auto; align-items: flex-start; flex-direction: column; padding: 16px 0 15px; gap: 10px; }
  .site-nav { width: 100%; justify-content: flex-start; gap: 16px; }
  .site-nav a { font-size: .67rem; }
  .hero-stage { padding-top: 134px; }
  .hero-kicker { padding-top: 8px; }
  .hero-title { margin-top: 92px; font-size: clamp(5.1rem, 19vw, 9rem); line-height: .75; }
  .hero-title-line-bottom { margin-left: 4vw; }
  .hero-object { top: 47%; left: 61%; width: clamp(230px, 46vw, 350px); }
  .hero-copy { left: 0; bottom: 72px; width: min(430px, 72vw); }
  .hero-index { display: none; }
  .scroll-cue { left: auto; right: 0; transform: none; }
  .editorial-layout,
  .access-editorial,
  .privacy-layout { grid-template-columns: 1fr; align-content: center; gap: 70px; padding-top: 150px; padding-bottom: 90px; }
  .editorial-layout > .scene-index,
  .access-editorial > .scene-index,
  .privacy-layout > .scene-index,
  .orbit-content > .scene-index { top: 120px; }
  .editorial-title { font-size: clamp(4.5rem, 15vw, 8rem); }
  .editorial-side { max-width: 620px; }
  .orbit-content { justify-content: flex-start; padding-top: 190px; }
  .orbit-title { font-size: clamp(5rem, 16vw, 9rem); }
  .orbit-visual { top: 58%; left: 62%; width: min(78vw, 650px); opacity: .85; }
  .orbit-note { right: auto; left: 0; bottom: 64px; width: min(500px, 82vw); }
  .access-number { font-size: clamp(11rem, 43vw, 19rem); }
  .privacy-heading h2 { font-size: clamp(5rem, 17vw, 9rem); }
  .privacy-copy { max-width: 620px; }
  .grid-3,
  .grid-2,
  .access-panel { grid-template-columns: 1fr; }
  .grid-3 .card,
  .grid-2 .card { border-left: 1px solid var(--line); }
  .plan-grid { grid-template-columns: 1fr; }
  .plan { border-left: 1px solid var(--line); }
  .faq-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .brand img { width: 38px; height: 38px; }
  .site-nav { gap: 11px; }
  .site-nav a { letter-spacing: .055em; }
  .hero-scene,
  .hero-stage { min-height: 820px; }
  .hero-kicker { flex-direction: column; gap: 5px; }
  .hero-title { margin-top: 60px; font-size: clamp(4.5rem, 21.5vw, 7.2rem); }
  .hero-object { top: 43%; left: 55%; width: 60vw; }
  .hero-copy { bottom: 76px; width: 100%; }
  .hero-copy > p:first-child { max-width: 86%; font-size: .96rem; }
  .scroll-cue { display: none; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .editorial-layout,
  .access-editorial,
  .privacy-layout { padding-top: 132px; gap: 48px; }
  .editorial-layout > .scene-index,
  .access-editorial > .scene-index,
  .privacy-layout > .scene-index,
  .orbit-content > .scene-index { top: 105px; }
  .editorial-title { font-size: clamp(4rem, 19vw, 6rem); }
  .feature-lines li { grid-template-columns: 42px 1fr; gap: 10px; }
  .orbit-content { padding-top: 160px; }
  .orbit-title { font-size: clamp(4.3rem, 19vw, 6.7rem); }
  .orbit-visual { top: 54%; left: 58%; width: 105vw; opacity: .58; }
  .orbit-note { width: 100%; bottom: 48px; }
  .access-number { font-size: 55vw; }
  .tariff-row { grid-template-columns: 1fr auto; }
  .tariff-row em { grid-column: 1 / -1; }
  .privacy-heading h2 { font-size: clamp(4.6rem, 20vw, 7rem); }
  .closing-inner { min-height: 76svh; }
  .closing-inner h2 { font-size: clamp(4.3rem, 18.5vw, 6.8rem); }
  .page-hero { padding-top: 165px; }
  .page-hero h1 { font-size: clamp(3.4rem, 15vw, 5.8rem); }
  .card { padding: 28px 22px 34px; }
  .card-number { margin-bottom: 44px; }
  .status-box { grid-template-columns: 1fr; padding: 28px 22px; }
  .footer-links { grid-template-columns: 1fr; }
  .legal-page article { padding: 24px 20px; }
}

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

/* =========================================================
   Homepage V3 — product-led narrative concept
   The app icon is a brand sign only; the hero visual is the reasoning process.
   ========================================================= */
.home-v3 {
  --story-black: #07040b;
  --story-violet: #180b2d;
  --story-paper: #f3eee9;
  --story-ink: #17101d;
  --story-lilac: #bea9ff;
  background: var(--story-black);
}
.home-v3 .story-header {
  border-bottom-color: rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(7,4,11,.84), rgba(7,4,11,.32));
  backdrop-filter: blur(18px) saturate(135%);
}
.home-v3 .story-header .header-inner { min-height: 76px; }
.home-v3 .story-header .brand img { width: 36px; height: 36px; border-radius: 10px; }
.home-v3 .story-header .brand-name { font-size: .9rem; letter-spacing: .025em; }
.home-v3 .story-header .site-nav { gap: 26px; }
.home-v3 .story-header .site-nav a { font-size: .7rem; }
.home-v3 .story-header .site-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
}
.home-v3 .story-header .site-nav .nav-cta::after { display: none; }
.home-v3 .story-header .site-nav .nav-cta:hover {
  border-color: var(--cyan);
  background: rgba(54,230,255,.08);
}

.story-overline {
  margin: 0 0 22px;
  color: currentColor;
  opacity: .58;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.story-overline::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 11px 3px 0;
  background: currentColor;
}
.story-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }
.story-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}
.story-button:hover { transform: translateY(-2px); }
.story-button-primary {
  color: #071014;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  box-shadow: 0 18px 50px rgba(54,230,255,.18);
}
.story-button-primary:hover { color: #071014; background: #83efff; }
.story-button-ghost {
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.025);
}
.story-button-ghost:hover { color: #fff; border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.07); }
.story-button-dark { color: #fff; border: 1px solid #17101d; background: #17101d; }
.story-button-outline { color: #17101d; border: 1px solid rgba(23,16,29,.32); background: rgba(255,255,255,.16); }
.story-button-outline:hover { color: #17101d; border-color: #17101d; background: rgba(255,255,255,.3); }
.story-button.is-disabled { cursor: not-allowed; user-select: none; opacity: .74; }

/* Hero: a reasoning laboratory rather than a logo billboard */
.story-hero {
  position: relative;
  isolation: isolate;
  min-height: 1000px;
  overflow: hidden;
  padding: 126px 0 88px;
  background:
    radial-gradient(circle at 78% 21%, rgba(129,93,255,.29), transparent 29%),
    radial-gradient(circle at 25% 82%, rgba(54,230,255,.12), transparent 27%),
    linear-gradient(135deg, #07040b 0%, #11071f 45%, #08040d 100%);
}
.story-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 48% 36%, transparent 0 30%, rgba(255,255,255,.018) 30.2% 30.5%, transparent 30.7%),
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,.022) 46% 46.2%, transparent 46.2% 100%);
}
.story-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 66% 44%, #000 0 28%, transparent 72%);
}
.story-aura {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(25px);
  pointer-events: none;
}
.story-aura-one {
  top: 16%;
  right: -10%;
  width: 48vw;
  height: 48vw;
  min-width: 540px;
  min-height: 540px;
  background: radial-gradient(circle at 46% 44%, rgba(255,61,171,.21), rgba(129,93,255,.16) 35%, transparent 68%);
}
.story-aura-two {
  left: 34%;
  bottom: -24%;
  width: 38vw;
  height: 38vw;
  min-width: 430px;
  min-height: 430px;
  background: radial-gradient(circle, rgba(54,230,255,.17), transparent 67%);
}
.story-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(430px, .85fr) minmax(540px, 1.15fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}
.story-hero-copy { position: relative; z-index: 8; padding-top: 16px; }
.story-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(52px, 7vh, 82px);
  color: rgba(255,255,255,.55);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.story-status { display: inline-flex; align-items: center; gap: 8px; }
.story-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255,211,61,.9);
}
.story-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(5.4rem, 8.9vw, 9.2rem);
  font-weight: 520;
  letter-spacing: -.09em;
  line-height: .75;
  text-transform: lowercase;
}
.story-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.86);
}
.story-hero h1 em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 45px rgba(54,230,255,.17);
}
.story-lead {
  max-width: 570px;
  margin: 54px 0 27px;
  color: rgba(255,255,255,.75);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.62;
}
.story-caution {
  max-width: 520px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.42);
  font-size: .77rem;
}
.reasoning-stage {
  position: relative;
  min-height: 720px;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.reasoning-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.009);
  transform: translate(-50%,-50%) rotateX(64deg);
}
.stage-axis {
  position: absolute;
  left: 13%;
  right: 9%;
  top: 50%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%) rotate(-9deg);
}
.stage-axis::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  height: 1px;
  background: linear-gradient(90deg, rgba(54,230,255,.02), rgba(54,230,255,.55), rgba(255,61,171,.5), rgba(255,211,61,.12));
  box-shadow: 0 0 24px rgba(54,230,255,.2);
}
.stage-axis span { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 20px rgba(255,255,255,.9); }
.thought-card {
  position: absolute;
  z-index: 4;
  width: min(370px, 54%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  box-shadow: 0 38px 100px rgba(0,0,0,.38);
  backdrop-filter: blur(18px) saturate(130%);
  transform-style: preserve-3d;
}
.thought-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: rgba(255,255,255,.48);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.thought-card-label span { color: #fff; }
.thought-card-task {
  left: 0;
  top: 90px;
  color: #fff;
  background: linear-gradient(145deg, rgba(38,24,62,.86), rgba(15,10,25,.72));
  transform: rotateY(8deg) rotateZ(-5deg) translateZ(20px);
  animation: thought-float-a 8s ease-in-out infinite;
}
.thought-card-task p { margin: 0; font-size: clamp(1.02rem, 1.32vw, 1.18rem); line-height: 1.65; }
.thought-card-task mark {
  color: #fff;
  background: linear-gradient(transparent 58%, rgba(54,230,255,.26) 58%);
}
.task-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.task-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.69);
  background: rgba(255,255,255,.045);
  font-size: .68rem;
  font-weight: 800;
}
.thought-card-solution {
  right: 0;
  bottom: 78px;
  width: min(400px, 58%);
  color: #1a1021;
  border-color: rgba(255,255,255,.6);
  background: linear-gradient(150deg, rgba(255,255,255,.98), rgba(226,224,244,.94));
  transform: rotateY(-7deg) rotateZ(4deg) translateZ(55px);
  animation: thought-float-b 9s ease-in-out infinite;
}
.thought-card-solution .thought-card-label { color: rgba(26,16,33,.45); }
.thought-card-solution .thought-card-label span { color: #1a1021; }
.solution-equation {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: end;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(26,16,33,.15);
  font-family: var(--font-display);
}
.solution-equation strong { font-size: clamp(2.3rem, 4vw, 3.7rem); font-weight: 560; letter-spacing: -.07em; line-height: .9; }
.solution-equation i { color: rgba(26,16,33,.4); font-size: 1.2rem; font-style: normal; }
.solution-equation b { color: #6948e8; font-size: clamp(2.8rem, 5vw, 4.5rem); letter-spacing: -.07em; line-height: .84; }
.thought-card-solution > p { margin: 20px 0 0; color: rgba(26,16,33,.66); font-size: .88rem; font-weight: 700; }
.solution-answer { margin-top: 17px; padding: 13px 15px; border-radius: 15px; color: #121017; background: rgba(54,230,255,.2); font-size: .87rem; font-weight: 900; }
.reasoning-lens {
  position: absolute;
  z-index: 7;
  left: 51%;
  top: 49%;
  width: 178px;
  aspect-ratio: 1;
  transform: translate(-50%,-50%) rotate(-7deg);
}
.lens-core {
  position: absolute;
  inset: 34px;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.86), rgba(54,230,255,.2) 18%, rgba(129,93,255,.38) 46%, rgba(8,4,13,.9) 72%);
  box-shadow: inset 0 0 22px rgba(255,255,255,.19), 0 0 45px rgba(54,230,255,.22), 0 20px 60px rgba(0,0,0,.45);
}
.lens-core span { color: #fff; font-family: var(--font-display); font-size: 3.6rem; font-weight: 340; line-height: 1; text-shadow: 0 0 22px rgba(255,255,255,.6); }
.lens-ring { position: absolute; inset: 0; border: 1px solid rgba(54,230,255,.32); border-radius: 50%; }
.lens-ring-one { animation: lens-spin 18s linear infinite; }
.lens-ring-one::before,
.lens-ring-two::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}
.lens-ring-one::before { left: 18px; top: 18px; }
.lens-ring-two { inset: 14px -18px; border-color: rgba(255,61,171,.28); transform: rotate(72deg); animation: lens-spin-reverse 22s linear infinite; }
.lens-ring-two::before { right: 10px; bottom: 30px; background: var(--pink); box-shadow: 0 0 20px var(--pink); }
.lens-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  width: max-content;
  color: rgba(255,255,255,.52);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.floating-proof {
  position: absolute;
  z-index: 8;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  background: rgba(9,5,16,.48);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.floating-proof-a { left: 31%; top: 46px; transform: rotate(5deg); }
.floating-proof-b { right: 4%; top: 43%; transform: rotate(-6deg); }
.floating-proof-c { left: 18%; bottom: 30px; transform: rotate(4deg); }
.floating-symbol {
  position: absolute;
  z-index: 2;
  color: rgba(255,255,255,.18);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 260;
  animation: symbol-drift-v3 9s ease-in-out infinite;
}
.floating-symbol-one { right: 4%; top: 9%; color: rgba(255,61,171,.28); }
.floating-symbol-two { left: 4%; bottom: 20%; color: rgba(54,230,255,.25); animation-delay: -3s; }
.floating-symbol-three { right: 17%; bottom: 2%; color: rgba(255,211,61,.23); animation-delay: -6s; }
.story-marquee {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.018);
  white-space: nowrap;
}
.story-marquee div {
  flex: 0 0 auto;
  padding: 15px 0;
  color: rgba(255,255,255,.4);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: marquee-run 24s linear infinite;
}
.story-marquee span { margin: 0 22px; color: var(--cyan); }

/* Product story / three-stage explanation */
.product-story {
  position: relative;
  overflow: hidden;
  color: var(--story-ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.9), transparent 22%),
    radial-gradient(circle at 90% 70%, rgba(181,162,255,.24), transparent 28%),
    linear-gradient(135deg, #f4eee9 0%, #e5e6ec 55%, #d8e7e9 100%);
}
.product-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image:
    linear-gradient(rgba(23,16,29,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,16,29,.06) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.product-story-intro { position: relative; z-index: 2; padding-top: clamp(110px, 12vw, 170px); }
.product-story-intro h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(4.8rem, 10vw, 10rem);
  font-weight: 520;
  letter-spacing: -.09em;
  line-height: .78;
  text-transform: lowercase;
}
.product-story-intro h2 span { color: transparent; -webkit-text-stroke: 1.5px rgba(23,16,29,.82); }
.product-story-intro > p:last-child { max-width: 610px; margin: 48px 0 0 auto; color: rgba(23,16,29,.66); font-size: clamp(1.05rem, 1.45vw, 1.22rem); }
.process-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(110px, 14vw, 190px);
}
.process-rail::before { content: ""; position: absolute; left: 0; right: 0; top: clamp(80px, 10vw, 140px); height: 1px; background: rgba(23,16,29,.18); }
.process-card {
  position: relative;
  min-height: 520px;
  padding: 32px 30px 38px;
  border-right: 1px solid rgba(23,16,29,.17);
}
.process-card:first-child { border-left: 1px solid rgba(23,16,29,.17); }
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,.03));
  transition: opacity 260ms ease;
}
.process-card:hover::before { opacity: 1; }
.process-number { position: relative; z-index: 2; color: rgba(23,16,29,.42); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.process-card h3 { position: relative; z-index: 2; margin: 40px 0 15px; font-size: clamp(2.1rem, 3.5vw, 3.2rem); font-weight: 550; letter-spacing: -.055em; }
.process-card > p { position: relative; z-index: 2; max-width: 330px; color: rgba(23,16,29,.62); }
.process-icon {
  position: relative;
  z-index: 2;
  height: 235px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(23,16,29,.16);
  border-radius: 25px;
  background: rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58);
}
.process-card-one .process-icon b,
.process-card-one .process-icon i,
.process-card-one .process-icon em {
  position: absolute;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 560;
  letter-spacing: -.08em;
}
.process-card-one .process-icon b { left: 19%; top: 21%; color: #6948e8; font-size: 4.9rem; }
.process-card-one .process-icon i { right: 17%; top: 48%; color: #d92989; font-size: 3.7rem; }
.process-card-one .process-icon em { left: 42%; bottom: 12%; color: rgba(23,16,29,.28); font-size: 3.9rem; }
.scan-line { position: absolute; left: 0; right: 0; top: 24%; height: 1px; background: var(--cyan); box-shadow: 0 0 18px rgba(54,230,255,.8); animation: scan-pass 4s ease-in-out infinite; }
.relation-icon {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-content: center;
  gap: 13px 9px;
  padding: 26px;
  text-align: center;
}
.relation-icon span { padding: 11px 8px; border-radius: 13px; background: rgba(255,255,255,.52); font-size: .76rem; font-weight: 900; }
.relation-icon i { align-self: center; color: #d92989; font-family: var(--font-display); font-size: 2.7rem; font-style: normal; }
.relation-icon b { grid-column: 1 / -1; color: rgba(23,16,29,.28); font-size: 1.7rem; }
.relation-icon span:last-child { grid-column: 1 / -1; justify-self: center; width: 56%; color: #fff; background: #6948e8; }
.answer-icon { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 27px; }
.answer-icon span { padding: 16px 17px; border-radius: 16px; background: rgba(255,255,255,.6); font-size: .84rem; font-weight: 900; }
.answer-icon span:first-child { color: #fff; background: linear-gradient(135deg, #6948e8, #d92989); font-size: 1.06rem; }

/* Actual product proof instead of decorative branding */
.interface-proof {
  position: relative;
  isolation: isolate;
  min-height: 1000px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(129,93,255,.36), transparent 31%),
    radial-gradient(circle at 12% 82%, rgba(54,230,255,.13), transparent 27%),
    linear-gradient(145deg, #07040b 0%, #140923 52%, #08040e 100%);
}
.interface-proof::before {
  content: "РЕШЕНИЕ";
  position: absolute;
  z-index: -1;
  left: -4vw;
  top: 43%;
  color: rgba(255,255,255,.025);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 650;
  letter-spacing: -.1em;
  line-height: .7;
  transform: rotate(-90deg) translate(-50%,0);
  transform-origin: left top;
}
.interface-proof-layout {
  display: grid;
  min-height: 1000px;
  grid-template-columns: minmax(390px, .82fr) minmax(560px, 1.18fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}
.interface-proof-copy h2 {
  margin: 0;
  font-size: clamp(4.7rem, 8.4vw, 8.6rem);
  font-weight: 520;
  letter-spacing: -.09em;
  line-height: .78;
  text-transform: lowercase;
}
.interface-proof-copy h2 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.8); }
.interface-proof-copy > p:not(.story-overline) { max-width: 510px; margin: 42px 0 0; color: rgba(255,255,255,.64); font-size: 1.08rem; }
.proof-list { margin: 50px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.proof-list li { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font-weight: 750; }
.proof-list span { color: var(--cyan); font-size: .68rem; letter-spacing: .1em; }
.device-scene { position: relative; min-height: 760px; perspective: 1600px; }
.device-scene::before { content: ""; position: absolute; left: 50%; top: 54%; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(54,230,255,.16), rgba(129,93,255,.09) 42%, transparent 70%); filter: blur(22px); transform: translate(-50%,-50%); }
.device-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%) rotateX(65deg); }
.device-orbit-one { width: 92%; aspect-ratio: 1; animation: device-orbit 24s linear infinite; }
.device-orbit-two { width: 67%; aspect-ratio: 1; border-color: rgba(54,230,255,.17); animation: device-orbit-reverse 29s linear infinite; }
.device-shell {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: min(440px, 66%);
  min-height: 690px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(27,19,46,.96), rgba(11,8,20,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 55px 130px rgba(0,0,0,.5), 0 0 60px rgba(129,93,255,.14);
  transform: translate(-50%,-50%) rotateY(-11deg) rotateX(4deg) rotateZ(3deg);
  animation: device-float 8s ease-in-out infinite;
}
.device-topbar { display: flex; align-items: center; justify-content: space-between; padding: 5px 5px 16px; }
.device-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: .79rem; font-weight: 800; text-transform: uppercase; }
.device-brand img { width: 28px; height: 28px; border-radius: 8px; }
.device-grade { color: rgba(255,255,255,.44); font-size: .59rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.device-question { padding: 19px 20px 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 25px; background: linear-gradient(145deg, rgba(255,61,171,.09), rgba(129,93,255,.08)); }
.device-kicker { color: var(--cyan); font-size: .61rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.device-question p { margin: 11px 0 0; color: rgba(255,255,255,.86); font-size: .88rem; font-weight: 700; line-height: 1.55; }
.device-result { margin-top: 13px; padding: 20px; border-radius: 25px; color: #1d1125; background: linear-gradient(180deg, #fff, #f5f0fa); }
.device-result-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(29,17,37,.12); }
.device-result-head span { font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; }
.device-result-head i { color: #6b54bd; font-size: .56rem; font-style: normal; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.device-step { display: grid; grid-template-columns: 27px 1fr; gap: 11px; margin-top: 16px; align-items: start; }
.device-step b { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: #fff; background: #6e50e6; font-size: .68rem; }
.device-step p { margin: 2px 0 0; color: rgba(29,17,37,.72); font-size: .8rem; font-weight: 750; line-height: 1.45; }
.device-full-answer { margin-top: 18px; padding: 13px 14px; border-radius: 14px; background: rgba(54,230,255,.2); font-size: .82rem; font-weight: 900; }
.device-controls { display: flex; justify-content: center; gap: 5px; margin-top: 15px; }
.device-controls span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); }
.device-controls span:first-child { width: 17px; border-radius: 999px; background: var(--cyan); }
.device-note { position: absolute; z-index: 6; padding: 13px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; background: rgba(10,6,17,.7); box-shadow: 0 20px 50px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
.device-note span { display: block; color: var(--cyan); font-size: .57rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.device-note strong { display: block; margin-top: 4px; color: rgba(255,255,255,.77); font-size: .72rem; }
.device-note-left { left: 2%; top: 33%; transform: rotate(-8deg); }
.device-note-right { right: 0; bottom: 25%; transform: rotate(7deg); }

/* Privacy and factual trust */
.trust-scene {
  position: relative;
  overflow: hidden;
  color: var(--story-ink);
  background:
    radial-gradient(circle at 5% 15%, rgba(255,255,255,.75), transparent 24%),
    linear-gradient(128deg, #f0d9df 0%, #e0e0ea 46%, #cce5e8 100%);
}
.trust-scene::before {
  content: "0";
  position: absolute;
  right: -8vw;
  bottom: -23vw;
  color: rgba(23,16,29,.045);
  font-family: var(--font-display);
  font-size: 76vw;
  font-weight: 600;
  letter-spacing: -.13em;
  line-height: .7;
}
.trust-layout { position: relative; z-index: 2; display: grid; min-height: 920px; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 150px); align-items: center; padding-top: 110px; padding-bottom: 110px; }
.trust-title-wrap h2 { margin: 0; font-size: clamp(5rem, 9vw, 9rem); font-weight: 520; letter-spacing: -.09em; line-height: .76; text-transform: lowercase; }
.trust-title-wrap h2 span { color: transparent; -webkit-text-stroke: 1.5px rgba(23,16,29,.82); }
.trust-lead { max-width: 650px; margin: 0 0 55px; color: rgba(23,16,29,.7); font-size: clamp(1.15rem, 1.7vw, 1.43rem); line-height: 1.58; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid rgba(23,16,29,.18); border-left: 1px solid rgba(23,16,29,.18); }
.trust-grid > div { min-height: 190px; padding: 24px; border-right: 1px solid rgba(23,16,29,.18); border-bottom: 1px solid rgba(23,16,29,.18); background: rgba(255,255,255,.14); }
.trust-grid strong { display: block; font-family: var(--font-display); font-size: clamp(4.3rem, 7vw, 6.8rem); font-weight: 520; letter-spacing: -.09em; line-height: .8; }
.trust-grid span { display: block; max-width: 190px; margin-top: 22px; color: rgba(23,16,29,.61); font-size: .82rem; font-weight: 800; }
.trust-warning { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; margin-top: 26px; padding: 20px 0; border-top: 1px solid rgba(23,16,29,.18); border-bottom: 1px solid rgba(23,16,29,.18); }
.trust-warning > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(23,16,29,.3); border-radius: 50%; font-weight: 900; }
.trust-warning p { margin: 3px 0 0; color: rgba(23,16,29,.66); font-size: .88rem; }
.trust-warning strong { color: var(--story-ink); }

/* Access / pricing status */
.access-story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 5%, rgba(255,61,171,.17), transparent 25%),
    radial-gradient(circle at 8% 80%, rgba(54,230,255,.11), transparent 26%),
    #090510;
}
.access-story-layout { display: grid; min-height: 900px; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 130px); align-items: center; padding-top: 110px; padding-bottom: 110px; }
.access-story-head h2 { margin: 0; font-size: clamp(5rem, 9vw, 9rem); font-weight: 520; letter-spacing: -.09em; line-height: .76; text-transform: lowercase; }
.access-story-head h2 span { color: var(--cyan); }
.access-story-head > p:last-child { max-width: 480px; margin: 42px 0 0; color: rgba(255,255,255,.58); }
.access-story-cards { display: grid; grid-template-columns: .75fr 1.25fr; gap: 14px; align-items: stretch; }
.access-free,
.access-plans { border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: rgba(255,255,255,.035); backdrop-filter: blur(16px); }
.access-free { display: flex; min-height: 480px; flex-direction: column; justify-content: flex-end; padding: 27px; background: linear-gradient(160deg, rgba(54,230,255,.12), rgba(129,93,255,.06)); }
.access-card-label { margin-bottom: auto; color: rgba(255,255,255,.5); font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.access-free strong { font-family: var(--font-display); font-size: clamp(8rem, 13vw, 12rem); font-weight: 520; letter-spacing: -.12em; line-height: .65; }
.access-free p { max-width: 180px; margin: 35px 0 20px; color: rgba(255,255,255,.82); font-weight: 800; }
.access-free > span { color: var(--cyan); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.access-plans { align-self: center; padding: 28px; }
.access-plans-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.13); }
.access-plans-head span { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; }
.access-plans-head em { color: var(--gold); font-size: .62rem; font-style: normal; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.access-plan { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.access-plan span { color: rgba(255,255,255,.62); font-size: .83rem; font-weight: 800; }
.access-plan strong { font-family: var(--font-display); font-size: 1.75rem; letter-spacing: -.04em; }
.access-plans > p { margin: 23px 0 0; color: rgba(255,255,255,.46); font-size: .76rem; }

/* Closing conversion scene */
.final-story {
  position: relative;
  overflow: hidden;
  color: var(--story-ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.8), transparent 22%),
    linear-gradient(135deg, #f3d8d9 0%, #e1e2e9 50%, #c7e8e9 100%);
}
.final-story-inner { position: relative; z-index: 3; display: flex; min-height: 870px; flex-direction: column; justify-content: center; padding-top: 110px; padding-bottom: 95px; }
.final-story h2 { max-width: 1180px; margin: 0; font-size: clamp(5.2rem, 10.5vw, 10.5rem); font-weight: 520; letter-spacing: -.095em; line-height: .74; text-transform: lowercase; }
.final-story h2 span { color: transparent; -webkit-text-stroke: 1.5px rgba(23,16,29,.82); }
.final-story-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 55px; margin-top: 70px; padding-top: 28px; border-top: 1px solid rgba(23,16,29,.2); }
.final-story-footer > p { max-width: 520px; margin: 0; color: rgba(23,16,29,.64); }
.final-symbols { position: absolute; inset: 0; pointer-events: none; }
.final-symbols span { position: absolute; color: rgba(23,16,29,.055); font-family: var(--font-display); font-size: clamp(7rem, 16vw, 16rem); font-weight: 320; }
.final-symbols span:nth-child(1) { left: -2%; top: 5%; transform: rotate(-12deg); }
.final-symbols span:nth-child(2) { right: 5%; top: 3%; transform: rotate(11deg); }
.final-symbols span:nth-child(3) { left: 14%; bottom: -8%; transform: rotate(7deg); }
.final-symbols span:nth-child(4) { right: -2%; bottom: -6%; transform: rotate(-10deg); }
.story-footer { background: #07040b; }

/* Scroll-linked motion where supported; graceful static fallback elsewhere */
@supports (animation-timeline: view()) {
  .process-card,
  .interface-proof-copy,
  .device-scene,
  .trust-title-wrap,
  .trust-content,
  .access-story-head,
  .access-story-cards {
    animation: story-reveal both linear;
    animation-timeline: view();
    animation-range: entry 10% cover 35%;
  }
  .process-card:nth-child(2) { animation-range: entry 18% cover 43%; }
  .process-card:nth-child(3) { animation-range: entry 26% cover 51%; }
  .device-scene,
  .trust-content,
  .access-story-cards { animation-name: story-reveal-right; }
}

@keyframes thought-float-a {
  0%,100% { transform: rotateY(8deg) rotateZ(-5deg) translate3d(0,0,20px); }
  50% { transform: rotateY(5deg) rotateZ(-3deg) translate3d(9px,-16px,34px); }
}
@keyframes thought-float-b {
  0%,100% { transform: rotateY(-7deg) rotateZ(4deg) translate3d(0,0,55px); }
  50% { transform: rotateY(-4deg) rotateZ(2deg) translate3d(-8px,-18px,70px); }
}
@keyframes lens-spin { to { transform: rotate(360deg); } }
@keyframes lens-spin-reverse { from { transform: rotate(72deg); } to { transform: rotate(-288deg); } }
@keyframes symbol-drift-v3 { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 50% { transform: translate3d(12px,-18px,0) rotate(9deg); } }
@keyframes marquee-run { to { transform: translateX(-100%); } }
@keyframes scan-pass { 0%,100% { top: 23%; opacity: .55; } 50% { top: 77%; opacity: 1; } }
@keyframes device-float {
  0%,100% { transform: translate(-50%,-50%) rotateY(-11deg) rotateX(4deg) rotateZ(3deg) translateY(0); }
  50% { transform: translate(-50%,-50%) rotateY(-8deg) rotateX(2deg) rotateZ(1deg) translateY(-18px); }
}
@keyframes device-orbit { to { transform: translate(-50%,-50%) rotateX(65deg) rotateZ(360deg); } }
@keyframes device-orbit-reverse { to { transform: translate(-50%,-50%) rotateX(65deg) rotateZ(-360deg); } }
@keyframes story-reveal { from { opacity: 0; transform: translateY(55px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes story-reveal-right { from { opacity: 0; transform: translateX(65px) scale(.97); } to { opacity: 1; transform: none; } }

/* Homepage V3 responsive system */
@media (max-width: 1120px) {
  .story-hero-layout { grid-template-columns: minmax(380px,.78fr) minmax(500px,1.22fr); gap: 32px; }
  .story-hero h1 { font-size: clamp(4.9rem, 8.7vw, 7.8rem); }
  .reasoning-stage { min-height: 670px; }
  .interface-proof-layout { grid-template-columns: .82fr 1.18fr; gap: 45px; }
  .device-shell { width: min(410px,72%); }
  .access-story-cards { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 920px) {
  .home-v3 .story-header { position: absolute; }
  .home-v3 .story-header .header-inner { min-height: auto; padding-top: 14px; padding-bottom: 14px; }
  .home-v3 .story-header .site-nav { gap: 15px; }
  .home-v3 .story-header .site-nav .nav-cta { padding: 7px 12px; }
  .story-hero { min-height: 1450px; padding-top: 145px; }
  .story-hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 70px; }
  .story-hero-copy { max-width: 760px; }
  .story-meta { margin-bottom: 55px; }
  .story-hero h1 { font-size: clamp(5.5rem, 14vw, 9.4rem); }
  .reasoning-stage { width: min(760px,100%); min-height: 700px; margin-inline: auto; }
  .thought-card { width: min(380px,54%); }
  .process-rail { grid-template-columns: 1fr; }
  .process-rail::before { display: none; }
  .process-card { display: grid; min-height: auto; grid-template-columns: 65px minmax(240px,.8fr) 1fr; gap: 20px; align-items: center; padding: 36px 0; border-right: 0; border-bottom: 1px solid rgba(23,16,29,.18); }
  .process-card:first-child { border-left: 0; border-top: 1px solid rgba(23,16,29,.18); }
  .process-number { align-self: start; padding-top: 8px; }
  .process-icon { grid-row: 1 / span 2; grid-column: 2; height: 250px; margin-top: 0; }
  .process-card h3 { grid-column: 3; margin: 0; }
  .process-card > p { grid-column: 3; margin: -10px 0 0; }
  .interface-proof-layout { min-height: 1420px; grid-template-columns: 1fr; align-content: center; }
  .interface-proof-copy { max-width: 760px; }
  .interface-proof-copy h2 { font-size: clamp(5rem, 13vw, 9rem); }
  .device-scene { min-height: 740px; }
  .trust-layout { grid-template-columns: 1fr; gap: 70px; padding-top: 130px; padding-bottom: 130px; }
  .trust-title-wrap { max-width: 720px; }
  .trust-title-wrap h2 { font-size: clamp(5.3rem, 13vw, 9rem); }
  .access-story-layout { min-height: 1240px; grid-template-columns: 1fr; align-content: center; }
  .access-story-head { max-width: 760px; }
  .access-story-head h2 { font-size: clamp(5.3rem, 13vw, 9rem); }
  .final-story-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 650px) {
  .home-v3 .story-header .header-inner { flex-direction: row; align-items: center; }
  .home-v3 .story-header .brand-name { display: none; }
  .home-v3 .story-header .site-nav { width: auto; margin-left: auto; gap: 11px; }
  .home-v3 .story-header .site-nav a { font-size: .6rem; letter-spacing: .045em; }
  .home-v3 .story-header .site-nav a:nth-child(3) { display: none; }
  .story-hero { min-height: 1320px; padding-top: 112px; }
  .story-hero-layout { gap: 55px; }
  .story-meta { flex-direction: column; margin-bottom: 43px; gap: 8px; }
  .story-hero h1 { font-size: clamp(4.4rem, 20vw, 6.8rem); line-height: .77; }
  .story-lead { margin-top: 40px; font-size: .98rem; }
  .story-actions { align-items: stretch; flex-direction: column; }
  .story-button { width: 100%; }
  .story-caution { font-size: .7rem; }
  .reasoning-stage { min-height: 640px; }
  .reasoning-stage::before { width: 100%; }
  .thought-card { width: 86%; padding: 20px; }
  .thought-card-task { left: 0; top: 22px; }
  .thought-card-solution { right: 0; bottom: 20px; }
  .reasoning-lens { left: 55%; top: 51%; width: 142px; }
  .lens-core { inset: 28px; }
  .lens-label { display: none; }
  .floating-proof { display: none; }
  .floating-symbol-one { right: 2%; top: 38%; }
  .floating-symbol-two { left: 0; bottom: 34%; }
  .floating-symbol-three { display: none; }
  .story-marquee div { font-size: .58rem; }
  .product-story-intro { padding-top: 100px; }
  .product-story-intro h2 { font-size: clamp(4rem, 18vw, 6.5rem); }
  .product-story-intro > p:last-child { margin: 34px 0 0; font-size: .97rem; }
  .process-rail { padding-top: 75px; padding-bottom: 100px; }
  .process-card { display: block; padding: 33px 0 42px; }
  .process-number { margin-bottom: 24px; }
  .process-icon { height: 225px; margin-bottom: 28px; }
  .process-card h3 { font-size: 2.4rem; }
  .process-card > p { margin-top: 0; }
  .interface-proof-layout { min-height: 1260px; padding-top: 100px; padding-bottom: 100px; }
  .interface-proof-copy h2 { font-size: clamp(4.2rem, 18vw, 6.8rem); }
  .device-scene { min-height: 640px; margin-inline: -10px; }
  .device-shell { width: 88%; min-height: 610px; padding: 14px; border-radius: 35px; transform: translate(-50%,-50%) rotateY(-4deg) rotateZ(1deg); }
  .device-question { padding: 16px; }
  .device-question p { font-size: .79rem; }
  .device-result { padding: 16px; }
  .device-note { display: none; }
  .device-orbit-one { width: 112%; }
  .device-orbit-two { width: 84%; }
  .trust-layout { min-height: auto; padding-top: 105px; padding-bottom: 105px; }
  .trust-title-wrap h2 { font-size: clamp(4.3rem, 19vw, 6.8rem); }
  .trust-lead { font-size: 1.05rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 155px; }
  .trust-grid strong { font-size: 5.5rem; }
  .access-story-layout { min-height: auto; padding-top: 105px; padding-bottom: 105px; }
  .access-story-head h2 { font-size: clamp(4.5rem, 19vw, 6.8rem); }
  .access-story-cards { grid-template-columns: 1fr; }
  .access-free { min-height: 370px; }
  .access-free strong { font-size: 10rem; }
  .access-plans { align-self: auto; }
  .final-story-inner { min-height: 760px; }
  .final-story h2 { font-size: clamp(4.3rem, 18.7vw, 6.7rem); }
  .final-story-footer { margin-top: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .thought-card-task,
  .thought-card-solution,
  .lens-ring-one,
  .lens-ring-two,
  .floating-symbol,
  .story-marquee div,
  .scan-line,
  .device-shell,
  .device-orbit-one,
  .device-orbit-two { animation: none !important; }
}

@media (max-width: 650px) {
  .story-hero h1 { font-size: clamp(3.7rem, 16vw, 6.2rem); }
}
