:root {
  --bg: #09090b;
  --panel: #111115;
  --panel-2: #16161c;
  --ink: #f5f2e9;
  --muted: #a3a0aa;
  --line: rgba(255, 255, 255, 0.11);
  --violet: #8d5cff;
  --violet-soft: #b79cff;
  --lime: #b7ff45;
  --orange: #ff754a;
  --radius: 28px;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[hidden] { display: none !important; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(103, 58, 183, 0.13), transparent 28%),
    var(--bg);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.modal-open {
  overscroll-behavior: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 100;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.09;
  filter: blur(20px);
  background: var(--violet);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  box-shadow: 0 0 14px var(--lime);
}

.section-shell,
.site-header {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  margin-left: -5px;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
}

.brand-mark::before {
  width: 5px;
  height: 5px;
  left: 3px;
  top: 3px;
}

.brand-mark::after {
  width: 3px;
  height: 3px;
  right: 3px;
  bottom: 4px;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  color: var(--muted);
  font-size: 13px;
}

.nav-dashboard {
  padding: 0;
  color: var(--violet-soft);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--lime);
  transition: right 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions,
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trial-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 15px 0 0 4px;
  color: #77737e;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.trial-note span {
  color: var(--lime);
}

.trial-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4e4a54;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-ghost {
  background: transparent;
  color: var(--muted);
}

.button-light {
  color: #101014;
  background: var(--ink);
}

.button-accent {
  color: #12110f;
  background: var(--lime);
  box-shadow: 0 16px 42px rgba(183, 255, 69, 0.14);
}

.button-large {
  min-height: 62px;
  padding: 16px 22px 16px 28px;
  font-size: 15px;
}

.button-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.12);
}

.hero {
  min-height: 880px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  grid-template-rows: 1fr auto;
  gap: 38px 64px;
  padding: 72px 0 42px;
}

.hero-copy {
  align-self: center;
  padding-bottom: 42px;
}

.eyebrow,
.section-label {
  font-size: 11px;
  letter-spacing: 0.19em;
  color: var(--muted);
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(183, 255, 69, 0.1);
  animation: statusPulse 2.3s ease-in-out infinite;
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 9px rgba(183, 255, 69, 0); }
}

.hero h1 {
  margin: 30px 0 26px;
  font-size: clamp(64px, 7.4vw, 122px);
  line-height: 0.83;
  letter-spacing: -0.075em;
  font-weight: 760;
}

.hero h1 > span {
  display: block;
}

.hero h1 .serif-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  color: var(--violet-soft);
  transform: translateX(6%);
}

.accent-line {
  position: relative;
}

.spark {
  position: absolute;
  color: var(--lime);
  font-size: 0.27em;
  top: -10px;
  margin-left: 18px;
  animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
  50% { transform: rotate(180deg) scale(1.35); }
  100% { transform: rotate(360deg); }
}

.hero-lead {
  max-width: 540px;
  color: #b7b3bc;
  font-size: 18px;
  line-height: 1.55;
}

.hero-cta {
  margin-top: 38px;
  gap: 26px;
}

.micro-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.micro-proof strong,
.micro-proof small {
  display: block;
}

.micro-proof strong {
  font-size: 12px;
}

.micro-proof small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #111;
  background: var(--violet-soft);
  font-size: 10px;
  font-weight: 800;
}

.avatars span:first-child {
  margin-left: 0;
  background: var(--lime);
}

.avatars span:last-child {
  background: #f5c0a7;
}

.hero-visual {
  min-height: 650px;
  position: relative;
}

.image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 180px 22px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #17131f;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 45%;
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.hero-visual:hover .image-frame img {
  transform: scale(1.055);
}

.image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(6, 6, 9, 0.7)),
    linear-gradient(90deg, rgba(10, 9, 14, 0.14), transparent 50%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(183, 156, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 480px;
  height: 170px;
  right: -130px;
  top: 82px;
  transform: rotate(-24deg);
  animation: orbitFloat 8s ease-in-out infinite;
}

.orbit-two {
  width: 240px;
  height: 240px;
  left: -130px;
  bottom: -110px;
  border-color: rgba(183, 255, 69, 0.15);
}

@keyframes orbitFloat {
  50% { transform: rotate(-18deg) translateY(10px); }
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 17, 25, 0.68);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.25);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #aaa5b1;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card-top {
  top: 17%;
  left: -40px;
}

.floating-card-bottom {
  right: -28px;
  bottom: 18%;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #101014;
}

.mini-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
}

.mini-wave i {
  width: 2px;
  height: 35%;
  background: var(--violet-soft);
  border-radius: 10px;
  animation: wave 1.2s ease-in-out infinite;
}

.mini-wave i:nth-child(2),
.mini-wave i:nth-child(6) { animation-delay: -0.2s; }
.mini-wave i:nth-child(3),
.mini-wave i:nth-child(5) { animation-delay: -0.4s; }
.mini-wave i:nth-child(4) { animation-delay: -0.6s; }

@keyframes wave {
  50% { height: 90%; }
}

.hero-index {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.16em;
}

.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-metrics article {
  padding: 28px 30px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hero-metrics article:last-child {
  border-right: 0;
}

.hero-metrics span {
  font-size: 38px;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.hero-metrics article > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.hero-metrics p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signal-strip {
  overflow: hidden;
  padding: 18px 0;
  background: var(--lime);
  color: #11120f;
  transform: rotate(-1.3deg) scale(1.02);
  margin: 50px 0 140px;
}

.immersive {
  min-height: 980px;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 70px;
  align-items: center;
  padding-bottom: 160px;
}

.immersive-copy {
  position: sticky;
  top: 72px;
  align-self: start;
  padding-top: 24px;
}

.immersive-copy h2 {
  margin: 28px 0 22px;
  font-size: clamp(58px, 6.5vw, 98px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.immersive-copy h2 em {
  color: var(--violet-soft);
  font-family: var(--serif);
  font-weight: 400;
}

.immersive-copy > p {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.65;
}

.story-points {
  display: grid;
  gap: 2px;
  margin: 38px 0;
}

.story-points span {
  padding: 15px 0;
  color: #65616b;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  transition: color 0.25s ease, padding 0.25s ease;
}

.story-points span.active,
.story-points span:hover {
  color: var(--ink);
  padding-left: 10px;
}

.story-points i {
  margin-right: 16px;
  color: var(--lime);
  font-size: 9px;
  font-style: normal;
}

.immersive-gallery {
  min-height: 850px;
  position: relative;
}

.story-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.story-image:hover img {
  transform: scale(1.045);
}

.story-image-main {
  width: 78%;
  height: 570px;
  right: 0;
  top: 30px;
  border-radius: 30px;
}

.story-image-secondary {
  width: 52%;
  height: 380px;
  left: 0;
  bottom: 20px;
  z-index: 2;
  border-radius: 30px;
}

.story-image figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: #d9d5df;
  background: rgba(8,8,11,.66);
  backdrop-filter: blur(15px);
  font-size: 10px;
  letter-spacing: .05em;
}

.story-image figcaption span {
  color: var(--lime);
}

.gallery-orbit {
  width: 450px;
  height: 450px;
  position: absolute;
  right: -130px;
  bottom: -10px;
  border: 1px solid rgba(183, 156, 255, 0.18);
  border-radius: 50%;
  animation: memorySpin 18s linear infinite;
}

.marquee {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.12em;
  animation: marquee 30s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.intro,
.progress,
.steps {
  padding-bottom: 160px;
}

.intro-heading,
.progress-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin: 26px 0 62px;
}

.intro-heading h2,
.progress-heading h2,
.economy-copy h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.intro-heading p,
.progress-heading p,
.economy-copy > p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  max-width: 440px;
}

.progress-heading h2 span,
.economy-copy h2 em {
  color: var(--violet-soft);
  font-family: var(--serif);
  font-weight: 400;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bento-card {
  min-height: 410px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--panel);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 156, 255, 0.38);
}

.bento-card-wide {
  grid-column: span 2;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #76727c;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  color: var(--ink);
}

.bento-card h3,
.insight-card h3 {
  font-size: 28px;
  letter-spacing: -0.045em;
  margin: 0 0 10px;
}

.bento-card p,
.insight-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-size: 14px;
  max-width: 420px;
}

.availability-visual {
  padding: 18px;
  border-radius: 17px;
  background: #0c0c0f;
  border: 1px solid var(--line);
}

.day-track {
  display: flex;
  justify-content: space-between;
  color: #696671;
  font-size: 9px;
}

.availability-line {
  height: 5px;
  margin: 14px 0 10px;
  border-radius: 10px;
  background: #29282d;
}

.availability-line i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  box-shadow: 0 0 22px rgba(183, 255, 69, 0.28);
}

.availability-visual small {
  color: var(--muted);
  font-size: 10px;
}

.memory-orbits {
  width: 180px;
  height: 180px;
  margin: 0 auto 5px;
  position: relative;
  display: grid;
  place-items: center;
}

.memory-orbits span {
  position: absolute;
  border: 1px solid rgba(183, 156, 255, 0.23);
  border-radius: 50%;
  animation: memorySpin 12s linear infinite;
}

.memory-orbits span:nth-child(1) { inset: 8px 24px; }
.memory-orbits span:nth-child(2) { inset: 24px 8px; animation-direction: reverse; }
.memory-orbits span:nth-child(3) { inset: 42px; border-color: rgba(183, 255, 69, 0.3); }

.memory-orbits i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--violet);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

@keyframes memorySpin {
  to { transform: rotate(360deg); }
}

.card-lime {
  color: #11140d;
  background: var(--lime);
  border-color: transparent;
}

.card-lime p,
.card-lime .card-topline {
  color: rgba(17, 20, 13, 0.65);
}

.card-lime .card-icon {
  color: #11140d;
  border-color: rgba(17, 20, 13, 0.22);
}

.response-time {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.response-time strong {
  font-size: 72px;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.response-time span {
  font-size: 12px;
  margin-bottom: 4px;
}

.speed-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(17, 20, 13, 0.18);
  position: absolute;
  right: -12px;
  bottom: -30px;
  box-shadow: inset 0 0 0 13px rgba(17, 20, 13, 0.035);
}

.compare-card {
  grid-column: 1 / -1;
  min-height: 610px;
  padding: 36px 40px;
}

.comparison-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.comparison-head > span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.comparison-head h3 {
  margin-top: 10px;
  font-size: 38px;
}

.comparison-score {
  display: flex;
  align-items: center;
  gap: 13px;
}

.comparison-score strong {
  color: var(--lime);
  font-size: 42px;
  letter-spacing: -.06em;
}

.comparison-score span {
  max-width: 145px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.comparison-table {
  width: 100%;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr .65fr;
  gap: 24px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.comparison-row b {
  color: var(--lime);
  font-weight: 650;
}

.comparison-row > span:first-child {
  color: var(--ink);
  font-weight: 600;
}

.comparison-title {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
}

.compare-meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #2a282f;
}

.compare-meter u {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  box-shadow: 0 0 12px rgba(183,255,69,.22);
  text-decoration: none;
}

.human-advantage b {
  color: var(--violet-soft);
}

.human-advantage .compare-meter u {
  background: var(--violet-soft);
}

.comparison-note {
  margin-top: 22px !important;
  max-width: 900px !important;
  font-size: 11px !important;
}

.format-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.format-compare-item {
  min-height: 156px;
  padding: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.022);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.format-compare-item:hover {
  transform: translateY(-5px);
  border-color: rgba(183,255,69,.24);
  background: rgba(183,255,69,.035);
}

.format-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183,255,69,.18);
  border-radius: 10px;
  color: var(--lime);
  background: rgba(183,255,69,.07);
  font-size: 14px;
}

.format-compare-item h4 {
  margin: 0;
  align-self: center;
  font-size: 13px;
}

.format-compare-item > div {
  padding-top: 10px;
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.format-compare-item small {
  color: #68636e;
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.format-compare-item b,
.format-compare-item > div > span {
  color: #aaa4af;
  font-size: 9px;
  line-height: 1.35;
}

.format-compare-item .format-ai b { color: var(--lime); }
.format-compare-item .format-human b { color: var(--violet-soft); }
.specialist-card { border-color: rgba(183,156,255,.16); }

.economy {
  padding-bottom: 160px;
}

.trial-band {
  min-height: 440px;
  margin-bottom: 160px;
  padding: 52px 58px;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(290px,.75fr) auto;
  gap: clamp(32px,4vw,62px);
  align-items: center;
  overflow: hidden;
  position: relative;
  color: #11130e;
  border-radius: 32px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,.65), transparent 20%),
    var(--lime);
  box-shadow: 0 35px 100px rgba(183,255,69,.08);
  transform: translateZ(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}

.trial-band:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 44px 120px rgba(183,255,69,.2), 0 0 0 1px rgba(255,255,255,.28);
}

.trial-band::before {
  background: radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.55), transparent 48%);
  mix-blend-mode: soft-light;
}

.trial-band::after {
  content: "7";
  position: absolute;
  right: 28%;
  top: -120px;
  color: rgba(17,19,14,.035);
  font-size: 460px;
  line-height: 1;
  font-weight: 900;
}

.trial-band > div {
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 2;
}

.trial-main-copy {
  align-items: center !important;
}

.trial-number-lockup {
  min-width: 150px;
  display: grid !important;
  gap: 8px !important;
  justify-items: center;
  align-content: center;
  align-self: stretch;
  border-right: 1px solid rgba(17,19,14,.16);
}

.trial-seven {
  display: block;
  font-size: 170px;
  line-height: .67;
  font-weight: 900;
  letter-spacing: -.09em;
}

.trial-number-lockup b {
  font-size: 17px;
  letter-spacing: .24em;
}

.trial-band small {
  letter-spacing: .15em;
  font-size: 9px;
}

.trial-band h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}

.trial-main-copy p {
  max-width: 450px;
  margin: 0;
  color: rgba(17,19,14,.68);
  font-size: 12px;
  line-height: 1.55;
}

.trial-band h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.trial-band ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
  font-size: 12px;
}

.trial-benefits li {
  min-height: 54px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17,19,14,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.18);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.trial-benefits li:hover { transform: translateX(7px); border-color: rgba(17,19,14,.28); background: rgba(255,255,255,.35); }
.trial-benefits li > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--lime); background: #11130e; font-size: 12px; font-weight: 800; }
.trial-benefits li div { display: grid; gap: 3px; }
.trial-benefits li b { font-size: 12px; }
.trial-benefits li small { color: rgba(17,19,14,.62); font-size: 8px; letter-spacing: .02em; line-height: 1.25; }

.trial-action {
  display: grid !important;
  gap: 11px !important;
  justify-items: center;
}

.trial-action .button { min-width: 190px; padding-inline: 22px; }

.trial-action > small {
  color: rgba(17,19,14,.58);
  text-align: center;
}

.trial-band .button {
  position: relative;
  z-index: 2;
  background: #11130e;
  color: var(--ink);
  box-shadow: none;
}

.spotlight-card {
  --spot-x: 50%;
  --spot-y: 50%;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(450px circle at var(--spot-x) var(--spot-y), rgba(183,156,255,.13), transparent 45%);
  transition: opacity .25s ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.trial-band.spotlight-card::before {
  background: radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.58), transparent 48%);
  mix-blend-mode: soft-light;
}

.economy-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel);
}

.economy-copy,
.economy-dashboard {
  padding: clamp(34px, 5vw, 74px);
}

.economy-copy {
  border-right: 1px solid var(--line);
}

.economy-copy h2 {
  font-size: clamp(52px, 5.3vw, 82px);
  margin: 25px 0 26px;
}

.calculator-control {
  margin-top: 52px;
}

.range-label,
.cost-meta,
.frequency-switch,
.annual-saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.range-label span,
.frequency-switch > span {
  color: var(--muted);
  font-size: 12px;
}

.range-label strong {
  font-size: 20px;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 24px 0 9px;
  appearance: none;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--violet) 33%, #2b2930 33%);
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid var(--ink);
  background: var(--violet);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  cursor: grab;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  color: #696671;
  font-size: 9px;
}

.frequency-switch {
  margin-top: 32px;
}

.frequency-switch div {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  background: #09090b;
}

.frequency-switch button {
  width: 44px;
  height: 35px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.frequency-switch button.active {
  color: #101014;
  background: var(--ink);
}

.economy-dashboard {
  position: relative;
  background:
    radial-gradient(circle at 75% 15%, rgba(141, 92, 255, 0.25), transparent 27%),
    #0d0d11;
}

.saving-badge {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(183, 255, 69, 0.28);
  color: var(--lime);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.saving-value {
  display: block;
  margin-top: 18px;
  font-size: clamp(62px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.saving-period {
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
}

.cost-bars {
  margin: 72px 0 48px;
}

.cost-row + .cost-row {
  margin-top: 25px;
}

.cost-meta {
  margin-bottom: 10px;
  font-size: 11px;
}

.cost-meta span {
  color: var(--muted);
}

.cost-track {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #222127;
}

.cost-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  transition: width 0.55s cubic-bezier(.2,.8,.2,1);
}

.human-bar {
  width: 100%;
  background: linear-gradient(90deg, #4e4859, #887e95);
}

.ai-bar {
  width: 5%;
  min-width: 18px;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(183, 255, 69, 0.35);
}

.annual-saving {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.annual-saving span {
  color: var(--muted);
  font-size: 12px;
}

.annual-saving strong {
  color: var(--violet-soft);
  font-size: 28px;
}

.annual-saving small {
  width: 100%;
  color: #67636e;
  text-align: right;
  font-size: 9px;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}

.insight-card {
  min-height: 400px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.insight-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.insight-card-head small {
  color: #76727c;
  letter-spacing: 0.13em;
  font-size: 9px;
}

.insight-card-head h3 {
  margin-top: 10px;
}

.trend-pill,
.live-dot {
  padding: 7px 10px;
  border-radius: 999px;
  color: #10140d;
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.line-chart {
  height: 265px;
  position: relative;
  margin-top: 42px;
  padding-left: 0;
}

.chart-kpi {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.chart-kpi small {
  color: #706c76;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chart-grid {
  position: absolute;
  inset: 0 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid i {
  display: block;
  border-top: 1px dashed rgba(255, 255, 255, 0.09);
}

.line-chart svg {
  width: 100%;
  height: 210px;
  overflow: visible;
}

.chart-points {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 210px;
  pointer-events: none;
}

.chart-points button {
  width: 24px;
  height: 24px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding: 0;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(17,17,21,.9);
  box-shadow: 0 0 0 2px rgba(255,111,120,.22), 0 0 18px rgba(255,111,120,.18);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .2s ease;
}

.chart-points button.negative { border-color: rgba(255,111,120,.55); }
.chart-points button.neutral { border-color: rgba(255,255,255,.5); box-shadow: 0 0 0 2px rgba(255,255,255,.14); }
.chart-points button.positive { border-color: rgba(183,255,69,.55); box-shadow: 0 0 0 2px rgba(183,255,69,.24), 0 0 18px rgba(183,255,69,.2); }

.chart-points button:hover,
.chart-points button:focus-visible,
.chart-points button.active {
  z-index: 4;
  transform: translate(-50%, -50%) scale(1.35);
  border-color: var(--lime);
}

.chart-points button::after {
  content: attr(data-month) " · " attr(data-insight);
  width: max-content;
  max-width: 230px;
  position: absolute;
  left: 50%;
  bottom: 22px;
  padding: 9px 11px;
  transform: translateX(-50%) scale(.8);
  transform-origin: bottom;
  opacity: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(11,11,14,.92);
  backdrop-filter: blur(12px);
  font-size: 8px;
  line-height: 1.35;
  pointer-events: none;
  transition: .2s ease;
}

.chart-points button:hover::after,
.chart-points button:focus-visible::after,
.chart-points button.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.chart-area-positive { fill: url(#areaPositive); }
.chart-area-negative { fill: url(#areaNegative); }

.chart-axis-line {
  stroke: rgba(255,255,255,.16);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.axis-zero { stroke: rgba(255,255,255,.28); stroke-dasharray: 5 5; }

.chart-y-axis {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 66px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #77717c;
  font-size: 7px;
  pointer-events: none;
}

.chart-y-axis span:nth-child(1) { color: rgba(183,255,69,.7); }
.chart-y-axis span:nth-child(2) { color: #aaa4ae; }
.chart-y-axis span:nth-child(3) { color: rgba(255,111,120,.75); }

.chart-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.chart-line-negative { stroke: #ff6f78; filter: drop-shadow(0 0 7px rgba(255,111,120,.28)); }
.chart-line-positive { stroke: var(--lime); filter: drop-shadow(0 0 7px rgba(183,255,69,.25)); }

.in-view .chart-line {
  animation: drawLine 1.8s ease forwards 0.25s;
}

.in-view .chart-line-positive { animation-delay: 1.05s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  color: #66626c;
  font-size: 9px;
  text-transform: uppercase;
}

.progress-journey {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 5px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(183,156,255,.4) transparent;
}

.journey-stage {
  min-width: 190px;
  min-height: 106px;
  flex: 1 0 190px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.journey-stage:hover { transform: translateY(-4px); border-color: rgba(183,255,69,.25); background: rgba(183,255,69,.035); }
.journey-stage > i { color: #6d6873; font-size: 9px; font-style: normal; }
.journey-stage span { display: grid; gap: 8px; }
.journey-stage b { font-size: 13px; }
.journey-stage small { color: #85808b; font-size: 10px; line-height: 1.45; }
.stage-notice b { color: #aaa4b0; }
.stage-stable b { color: var(--violet-soft); }
.stage-grow b, .stage-live b { color: var(--lime); }

.pulse-card {
  background:
    radial-gradient(circle at 70% 38%, rgba(141, 92, 255, 0.16), transparent 30%),
    var(--panel);
}

.live-dot {
  color: var(--lime);
  background: rgba(183, 255, 69, 0.08);
  border: 1px solid rgba(183, 255, 69, 0.18);
}

.streak-number {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 42px 0 32px;
}

.streak-number strong {
  font-size: 82px;
  line-height: 0.75;
  letter-spacing: -0.08em;
  color: var(--violet-soft);
}

.streak-number span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 28px;
  overflow: visible;
}

.heatmap-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 0 0 8px;
  color: #5f5a66;
  font-size: 7px;
  text-align: center;
  letter-spacing: .1em;
}

.heatmap-legend {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: -15px 0 17px;
  color: #625e68;
  font-size: 8px;
}

.heatmap-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #25232a;
}

.heatmap-legend i.warm { background: rgba(141,92,255,.58); }
.heatmap-legend i.hot { background: var(--violet-soft); }

.heatmap i {
  aspect-ratio: 1;
  position: relative;
  border-radius: 5px;
  background: #25232a;
  cursor: help;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.heatmap i:not(.warm):not(.hot) {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.16) 0 2px, transparent 2.5px),
    #201f25;
}

.heatmap i:hover {
  z-index: 5;
  transform: translateY(-5px) scale(1.12);
  filter: brightness(1.25);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.heatmap i::after {
  content: attr(data-day) "\A" attr(data-note);
  width: max-content;
  max-width: 150px;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  padding: 8px 10px;
  transform: translate(-50%, 5px) scale(.92);
  opacity: 0;
  white-space: pre-line;
  color: #d8d3de;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(12,12,16,.96);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  font-size: 7px;
  font-style: normal;
  line-height: 1.45;
  text-align: center;
  pointer-events: none;
  transition: .2s ease;
}

.heatmap i:hover::after { opacity: 1; transform: translate(-50%, 0) scale(1); }

.heatmap i.warm {
  background: rgba(141, 92, 255, 0.58);
}

.heatmap i.hot {
  background: var(--violet-soft);
  box-shadow: 0 0 14px rgba(141, 92, 255, 0.28);
}

.program-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin: -14px 0 16px;
}

.program-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #77727d;
  font-size: 8px;
}

.program-legend i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: #25232a;
}

.program-legend i.warm { background: rgba(141,92,255,.58); }
.program-legend i.hot { background: var(--violet-soft); box-shadow: 0 0 9px rgba(141,92,255,.28); }

.topics-card {
  grid-column: 1 / -1;
  min-height: 360px;
}

.topic-cloud {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 36px;
  padding: 28px 4%;
}

.topic-cloud span {
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
  cursor: default;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}

.topic-cloud span:nth-child(2n) { transform: translateY(13px) rotate(-2deg); }
.topic-cloud span:nth-child(3n) { transform: translateY(-12px) rotate(1.5deg); }
.topic-cloud span:nth-child(5n) { transform: translateX(18px) rotate(-1deg); }
.topic-cloud span:hover { z-index: 2; color: var(--lime); transform: scale(1.11) rotate(0); text-shadow: 0 0 28px rgba(183,255,69,.2); }

.topic-xl {
  font-size: clamp(58px, 8vw, 118px);
  color: var(--violet-soft);
}

.topic-lg { font-size: clamp(38px, 5vw, 72px); }
.topic-md { font-size: clamp(24px, 3.2vw, 44px); color: #c8c3cf; }
.topic-sm { font-size: 18px; color: #6d6974; }
.topic-xs { font-size: 12px; color: #58545e; text-transform: uppercase; letter-spacing: .08em !important; }
.topic-warm { color: #ff9a79; }
.topic-lime { color: var(--lime); }
.topic-violet { color: #8d76c4; }

.topic-legend {
  display: flex;
  justify-content: space-between;
  color: #6d6974;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.topic-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--violet);
}

.steps-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 0.25fr 1.5fr 0.25fr;
  gap: 20px;
  align-items: center;
  min-height: 170px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}

.step:hover {
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.step > span {
  color: var(--lime);
  font-size: 11px;
}

.step h3 {
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.045em;
  margin: 0 0 8px;
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.step > i {
  font-size: 30px;
  font-style: normal;
  text-align: right;
  color: var(--violet-soft);
}

.final-cta {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 110%, rgba(141, 92, 255, 0.52), transparent 43%),
    #0e0d12;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-kicker {
  color: var(--lime);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.final-cta h2 {
  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  margin: 28px 0 22px;
}

.final-cta h2 em {
  color: var(--violet-soft);
  font-family: var(--serif);
  font-weight: 400;
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 32px;
}

.final-cta .button {
  margin: 0 auto;
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgba(183, 156, 255, 0.15);
  border-radius: 50%;
}

.orbit-a {
  width: 920px;
  height: 300px;
  transform: rotate(12deg);
}

.orbit-b {
  width: 630px;
  height: 630px;
  border-color: rgba(183, 255, 69, 0.08);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding: 90px 0 28px;
}

.footer-brand p,
.footer-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
}

.footer-note {
  max-width: 680px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #66626c;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(.2,.7,.2,1),
    transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.auth-modal {
  width: min(1040px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: #101014;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}

.auth-modal[open] {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  animation: modalIn 0.35s cubic-bezier(.2,.8,.2,1);
}

.auth-modal::backdrop {
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(12px);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
}

.modal-close {
  position: absolute;
  z-index: 5;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(10, 10, 14, 0.5);
  cursor: pointer;
  font-size: 23px;
}

.modal-visual {
  min-height: 680px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 30% 50%, rgba(141, 92, 255, 0.48), transparent 33%),
    linear-gradient(160deg, #171320, #0a090d);
}

.modal-visual small {
  color: var(--violet-soft);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.modal-visual h2 {
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.modal-visual h2 em {
  font-family: var(--serif);
  color: var(--lime);
  font-weight: 400;
}

.modal-visual p {
  position: relative;
  z-index: 2;
  color: #aaa6b0;
  font-size: 12px;
  line-height: 1.6;
  max-width: 290px;
}

.modal-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: 80px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.42), transparent 5%),
    radial-gradient(circle at 42% 42%, #9f7cff, #332752 50%, #0d0a13 72%);
  box-shadow: 0 0 100px rgba(141, 92, 255, 0.36);
}

.modal-form-side {
  padding: 42px clamp(34px, 5vw, 70px);
  overflow-y: auto;
  position: relative;
}

.auth-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 38px;
}

.auth-tab {
  padding: 0 0 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  position: relative;
}

.auth-tab.active {
  color: var(--ink);
}

.auth-tab.active::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background: var(--lime);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: formIn 0.32s ease;
}

@keyframes formIn {
  from { opacity: 0; transform: translateX(12px); }
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading span {
  color: var(--violet-soft);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.form-heading h3 {
  margin: 10px 0 8px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.form-heading p {
  color: var(--muted);
  font-size: 12px;
}

.auth-form > label {
  display: block;
  margin-bottom: 18px;
}

.auth-form label > span {
  display: block;
  color: #8b8792;
  font-size: 10px;
  margin-bottom: 8px;
}

.auth-form input:not([type="checkbox"]) {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  color: var(--ink);
  outline: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0a0a0d;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.auth-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(141, 92, 255, 0.1);
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
}

.checkbox-label input {
  margin-top: 2px;
  accent-color: var(--lime);
}

.checkbox-label span {
  margin: 0 !important;
  line-height: 1.45;
}

.modal-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.text-button {
  border: 0;
  color: var(--violet-soft);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.auth-success {
  display: none;
  min-height: 520px;
  text-align: center;
  place-items: center;
  align-content: center;
}

.auth-success.active {
  display: grid;
}

.auth-success > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #111;
  border-radius: 50%;
  background: var(--lime);
  font-size: 28px;
}

.auth-success small {
  color: var(--violet-soft);
  letter-spacing: 0.18em;
}

.auth-success h3 {
  margin: 13px 0;
  font-size: 38px;
  line-height: 1;
}

.auth-success p {
  max-width: 370px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
  margin-bottom: 24px;
}

.assessment {
  padding-bottom: 160px;
}

.assessment-panel {
  min-height: 660px;
  padding: clamp(36px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 42%, rgba(141,92,255,.2), transparent 28%),
    #111115;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 40px 120px rgba(0,0,0,.18);
}

.assessment-panel::before {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  right: 2%;
  top: 14%;
  border-radius: 50%;
  background: rgba(141,92,255,.08);
  filter: blur(55px);
  animation: assessmentAura 5s ease-in-out infinite;
}

@keyframes assessmentAura { 50% { transform: scale(1.18); opacity: .55; } }

.assessment-copy h2 {
  margin: 27px 0 22px;
  font-size: clamp(55px, 6vw, 88px);
  line-height: .91;
  letter-spacing: -.07em;
}

.assessment-copy h2 em {
  color: var(--violet-soft);
  font-family: var(--serif);
  font-weight: 400;
}

.assessment-copy p {
  max-width: 450px;
  color: var(--muted);
  line-height: 1.6;
}

.assessment-copy .button { margin-top: 28px; }

.assessment-visual {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}

.assessment-glow-orbit {
  width: min(455px, 100%);
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(183,255,69,.15);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(141,92,255,.08), 0 0 60px rgba(141,92,255,.08);
  animation: orbitPulse 3.8s ease-in-out infinite;
}

@keyframes orbitPulse { 50% { transform: scale(1.035); border-color: rgba(183,255,69,.32); } }

.assessment-signal {
  position: absolute;
  z-index: 4;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #aaa5b1;
  background: rgba(13,13,17,.76);
  backdrop-filter: blur(12px);
  font-size: 8px;
  animation: signalFloat 4s ease-in-out infinite;
}

.signal-energy { right: 1%; top: 22%; color: var(--lime); }
.signal-sleep { left: 0; top: 38%; animation-delay: -.9s; }
.signal-focus { right: 5%; bottom: 20%; color: var(--violet-soft); animation-delay: -1.8s; }
@keyframes signalFloat { 50% { transform: translateY(-7px); } }

.assessment-radar {
  width: min(400px, 88%);
  aspect-ratio: 1;
  position: relative;
  filter: drop-shadow(0 0 32px rgba(141,92,255,.13));
}

.radar-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.radar-grid polygon,
.radar-grid line {
  fill: none;
  stroke: rgba(255,255,255,.1);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.radar-data {
  fill: rgba(141,92,255,.3);
  stroke: var(--violet-soft);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 8px rgba(183,156,255,.22));
  transform-origin: 100px 100px;
  animation: radarBreathe 3.8s ease-in-out infinite;
}

@keyframes radarBreathe { 50% { transform: scale(1.025); fill: rgba(183,255,69,.18); } }

.assessment-radar span { position: absolute; color: #77737e; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.assessment-radar span:nth-of-type(1) { top: 2px; left: 44%; }
.assessment-radar span:nth-of-type(2) { right: -3px; top: 33%; }
.assessment-radar span:nth-of-type(3) { right: 1px; bottom: 12%; }
.assessment-radar span:nth-of-type(4) { left: 2px; bottom: 12%; }
.assessment-radar span:nth-of-type(5) { left: -4px; top: 33%; }

.assessment-score {
  position: absolute;
  display: grid;
  justify-items: center;
  text-align: center;
}

.assessment-score small { color: #77737e; font-size: 8px; letter-spacing: .14em; }
.assessment-score > div { display: flex; align-items: flex-end; justify-content: center; }
.assessment-score strong {
  font-size: 70px;
  line-height: .9;
  letter-spacing: -.09em;
  cursor: default;
  transition: transform .28s ease, color .28s ease, text-shadow .28s ease;
}
.assessment-score strong:hover {
  color: var(--lime);
  transform: scale(1.16);
  text-shadow: 0 0 14px rgba(183,255,69,.55), 0 0 44px rgba(183,255,69,.28);
}
.assessment-score > div span { padding-bottom: 7px; color: #77737e; font-size: 11px; }
.assessment-score b { margin-top: 12px; color: var(--lime); font-size: 8px; font-weight: 500; }

.assessment-score strong.count-complete,
.exit-mini-score strong.count-complete {
  animation: scoreArrive .9s cubic-bezier(.2,.85,.3,1);
}

@keyframes scoreArrive {
  0% { transform: scale(.84); filter: blur(3px); }
  45% { transform: scale(1.18); color: var(--lime); text-shadow: 0 0 34px rgba(183,255,69,.5); }
  72% { transform: scale(.97); }
  100% { transform: scale(1); filter: none; }
}

.photo-boundary {
  position: absolute;
  left: clamp(36px, 5vw, 72px);
  right: clamp(36px, 5vw, 72px);
  bottom: 30px;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border-top: 1px solid var(--line);
}

.photo-boundary > span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: rgba(183,255,69,.08);
}

.photo-boundary strong { font-size: 10px; }
.photo-boundary p { max-width: 670px; margin: 5px 0 0; color: #6c6872; font-size: 9px; line-height: 1.45; }

.photo-safety-tags {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.photo-safety-tags b {
  padding: 6px 8px;
  white-space: nowrap;
  color: #8c8791;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 500;
}

.exit-offer-modal {
  width: min(1040px, calc(100% - 32px));
  max-height: min(720px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  grid-template-columns: .88fr 1.12fr;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 30px;
  background: #101014;
  box-shadow: 0 40px 140px rgba(0,0,0,.78);
}

.exit-offer-modal[open] {
  display: grid;
  animation: exitOfferIn .48s cubic-bezier(.18,.86,.25,1);
}

.exit-offer-modal::backdrop {
  background: rgba(4,4,7,.82);
  backdrop-filter: blur(14px);
}

@keyframes exitOfferIn {
  from { opacity: 0; transform: translateY(30px) scale(.965); }
}

.exit-offer-art {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #0b0a0e;
}

.exit-offer-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.exit-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5,5,8,.78));
}

.duration-orbit {
  width: 116px;
  height: 116px;
  position: absolute;
  right: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, rgba(11,10,15,.86) 84%, transparent 85%),
    conic-gradient(var(--lime) 0 82%, rgba(255,255,255,.13) 82%);
  backdrop-filter: blur(10px);
  animation: durationBreathe 3s ease-in-out infinite;
}

@keyframes durationBreathe { 50% { transform: scale(1.035); box-shadow: 0 0 35px rgba(183,255,69,.13); } }

.duration-orbit span {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.duration-orbit small {
  margin-top: 3px;
  color: #8f8a95;
  font-size: 6px;
  letter-spacing: .12em;
}

.exit-art-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 11px;
  background: rgba(10,9,13,.64);
  backdrop-filter: blur(14px);
  font-size: 8px;
  letter-spacing: .05em;
}

.exit-art-caption i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.exit-offer-copy {
  min-height: 640px;
  padding: 62px clamp(38px,5vw,72px) 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 95% 10%, rgba(141,92,255,.18), transparent 24%),
    #101014;
}

.exit-kicker {
  color: var(--lime);
  font-size: 8px;
  letter-spacing: .2em;
}

.exit-offer-copy h2 {
  margin: 20px 0 18px;
  font-size: clamp(49px,5vw,72px);
  line-height: .91;
  letter-spacing: -.065em;
}

.exit-offer-copy h2 em {
  color: var(--violet-soft);
  font-family: var(--serif);
  font-weight: 400;
}

.exit-offer-copy > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.exit-result-preview {
  margin-top: 20px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183,255,69,.16);
  border-radius: 15px;
  background:
    radial-gradient(circle at 12% 45%, rgba(183,255,69,.09), transparent 30%),
    rgba(255,255,255,.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.exit-result-preview::after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: rgba(141,92,255,.14);
  filter: blur(20px);
  animation: durationBreathe 3.5s ease-in-out infinite;
}

.exit-mini-score { display: grid; gap: 5px; }
.exit-mini-score small { color: #6e6974; font-size: 6px; letter-spacing: .1em; }
.exit-mini-score > span { display: flex; align-items: flex-end; }
.exit-mini-score strong { display: inline-block; color: var(--lime); font-size: 34px; line-height: .9; letter-spacing: -.07em; }
.exit-mini-score i { padding-bottom: 3px; color: #615d66; font-size: 8px; font-style: normal; }

.exit-mini-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
}

.exit-mini-signals span { color: #89848f; font-size: 7px; white-space: nowrap; }
.exit-mini-signals span:last-child { grid-column: 1 / -1; }
.exit-mini-signals i { width: 5px; height: 5px; margin-right: 6px; display: inline-block; border-radius: 50%; background: var(--violet-soft); box-shadow: 0 0 8px rgba(183,156,255,.45); }
.exit-mini-signals span:first-child i { background: var(--lime); box-shadow: 0 0 8px rgba(183,255,69,.45); }

.exit-offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  margin: 18px 0;
  border-top: 1px solid var(--line);
}

.exit-offer-list span {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: #b9b4bf;
  font-size: 9px;
}

.exit-offer-list span:last-child { grid-column: 1 / -1; }
.exit-offer-list i { margin-right: 8px; color: var(--lime); font-style: normal; }

.exit-offer-copy .button { width: 100%; }

.exit-decline {
  margin-top: 16px;
  border: 0;
  color: #6e6974;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
}

.exit-decline:hover { color: var(--ink); }

.exit-ethics {
  margin-top: 16px;
  color: #57535d;
  text-align: center;
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.assessment-modal,
.policy-modal {
  width: min(760px, calc(100% - 32px));
  max-height: min(780px, calc(100vh - 32px));
  padding: 42px;
  overflow: auto;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(141,92,255,.18), transparent 27%),
    radial-gradient(circle at 8% 92%, rgba(183,255,69,.07), transparent 25%),
    #111115;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}

.assessment-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  isolation: isolate;
}
.assessment-modal::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.035);
  border-radius: 20px;
  pointer-events: none;
}

.assessment-modal::backdrop,
.policy-modal::backdrop { background: rgba(5,5,8,.84); backdrop-filter: blur(12px); }

.assessment-modal-head {
  display: flex;
  justify-content: space-between;
  padding-right: 48px;
  color: #77737e;
  font-size: 9px;
  letter-spacing: .13em;
}

.assessment-modal > .modal-close {
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border-color: rgba(255,255,255,.14);
  background: rgba(10,10,13,.86);
  backdrop-filter: blur(10px);
}

.assessment-modal-head small {
  padding: 7px 10px;
  color: var(--lime);
  border: 1px solid rgba(183,255,69,.18);
  border-radius: 999px;
  background: rgba(183,255,69,.06);
}

.assessment-progress { height: 4px; margin: 18px 0 50px; overflow: hidden; border-radius: 4px; background: #29272e; }
.assessment-progress i { display: block; width: 25%; height: 100%; position: relative; border-radius: inherit; background: linear-gradient(90deg,var(--violet),var(--lime)); box-shadow: 0 0 20px rgba(183,255,69,.3); transition: width .35s ease; }
.assessment-progress i::after { content: ""; width: 42px; position: absolute; inset: 0 0 0 auto; background: linear-gradient(90deg,transparent,rgba(255,255,255,.85)); animation: progressShine 1.8s ease-in-out infinite; }
@keyframes progressShine { 50% { opacity: .3; } }

.assessment-question { display: none; padding: 0; border: 0; }
.assessment-question.active { display: block; animation: formIn .3s ease; }
.assessment-question.needs-answer { animation: answerShake .42s ease; }
@keyframes answerShake { 25% { transform: translateX(-7px); } 50% { transform: translateX(7px); } 75% { transform: translateX(-4px); } }
.assessment-question legend { max-width: 580px; font-size: clamp(30px, 4vw, 48px); line-height: 1.06; letter-spacing: -.05em; }
.assessment-question p { color: var(--muted); }

.answer-scale { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 42px; }
.answer-scale input { position: absolute; opacity: 0; }
.answer-scale span { aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 22px; color: #77737e; background: linear-gradient(145deg,rgba(255,255,255,.025),transparent),#0c0c0f; cursor: pointer; transition: .2s ease; }
.answer-scale span:hover { color: var(--ink); border-color: rgba(183,156,255,.35); transform: translateY(-4px); }
.answer-scale input:checked + span { color: #111; border-color: var(--lime); background: var(--lime); box-shadow: 0 0 25px rgba(183,255,69,.2); transform: scale(1.08); }

.assessment-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; }
.assessment-result { display: none; text-align: center; padding: 10px 10px 30px; }
.assessment-result.active { display: block; }
.assessment-result > small { color: var(--violet-soft); letter-spacing: .16em; }
.assessment-result > strong { display: inline-block; margin: 25px 0 0; color: var(--lime); font-size: 110px; line-height: .8; letter-spacing: -.1em; text-shadow: 0 0 45px rgba(183,255,69,.16); }
.assessment-result > span { color: #77737e; }
.assessment-result h3 { max-width: 520px; margin: 30px auto 12px; font-size: 31px; letter-spacing: -.04em; }
.assessment-result p { max-width: 500px; margin: 0 auto 28px; color: var(--muted); line-height: 1.5; }

.policy-modal { width: min(820px, calc(100% - 32px)); }
.policy-content { max-width: 650px; margin: auto; }
.policy-content > small { color: var(--violet-soft); letter-spacing: .16em; }
.policy-content h2 { margin: 18px 0 28px; font-size: clamp(42px, 6vw, 70px); line-height: .92; letter-spacing: -.065em; }
.policy-content h3 { margin: 30px 0 8px; font-size: 16px; }
.policy-content p { color: #aaa5b1; font-size: 12px; line-height: 1.7; }
.policy-content .legal-draft { padding: 13px 15px; color: #15120d; border-radius: 12px; background: #ffd777; }

.policy-link,
.inline-policy {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
}

.inline-policy { color: var(--violet-soft); text-decoration: underline; text-underline-offset: 2px; }
.checkbox-label .inline-policy { display: inline; }
.optional-consent { padding-top: 12px; border-top: 1px solid var(--line); }

.cookie-banner {
  width: min(820px, calc(100% - 32px));
  position: fixed;
  z-index: 250;
  left: 50%;
  bottom: 18px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 17px;
  background: rgba(15,15,19,.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 90px rgba(0,0,0,.5);
  transition: opacity .3s ease, transform .3s ease;
}

.cookie-banner.hidden { opacity: 0; transform: translate(-50%,20px); pointer-events: none; }
.cookie-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--lime); background: rgba(183,255,69,.08); }
.cookie-banner strong { font-size: 11px; }
.cookie-banner p { margin: 4px 0 0; color: #77737e; font-size: 9px; line-height: 1.4; }
.cookie-banner .button { padding: 11px 17px; }

/* Dashboard */
.dashboard-view {
  min-height: 100vh;
  display: none;
  grid-template-columns: 255px 1fr;
  background:
    radial-gradient(circle at 85% 0%, rgba(141,92,255,.13), transparent 27%),
    #09090b;
}

body.dashboard-active > .site-header,
body.dashboard-active > main,
body.dashboard-active > .site-footer,
body.dashboard-active > .scroll-progress {
  display: none;
}

body.dashboard-active .dashboard-view {
  display: grid;
}

.dash-sidebar {
  min-height: 100vh;
  padding: 30px 22px 22px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  border-right: 1px solid var(--line);
  background: rgba(13,13,17,.86);
  backdrop-filter: blur(22px);
}

.dash-nav {
  display: grid;
  gap: 6px;
  margin-top: 64px;
}

.dash-nav button {
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #77737e;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: .25s ease;
}

.dash-nav button span {
  width: 23px;
  color: #aaa5b1;
  font-size: 17px;
}

.dash-nav button.active,
.dash-nav button:hover {
  color: var(--ink);
  background: rgba(255,255,255,.06);
}

.dash-nav button.active span {
  color: var(--lime);
}

.dash-trial-mini {
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(183,255,69,.15);
  border-radius: 18px;
  background: rgba(183,255,69,.045);
}

.dash-trial-mini small,
.dash-trial-mini strong,
.dash-trial-mini span {
  display: block;
}

.dash-trial-mini small {
  color: var(--lime);
  font-size: 8px;
  letter-spacing: .15em;
}

.dash-trial-mini strong {
  margin-top: 8px;
  font-size: 13px;
}

.dash-trial-mini div {
  height: 4px;
  margin: 16px 0 9px;
  border-radius: 4px;
  background: #27272c;
}

.dash-trial-mini div i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.dash-trial-mini span {
  color: #716d77;
  font-size: 9px;
}

.dash-profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 20px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.profile-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #14140f;
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.dash-profile strong,
.dash-profile small {
  display: block;
}

.dash-profile strong { font-size: 11px; }
.dash-profile small { color: #6f6b75; font-size: 8px; margin-top: 3px; }
.dash-profile button { color: #77737e; border: 0; background: transparent; }

.dash-main {
  width: min(1320px, 100%);
  padding: 28px 34px 70px;
  overflow: hidden;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.dash-header small,
.panel-intro small,
.dash-card-head small,
.dash-stat-card > small,
.next-step-card > small,
.plan-card > small,
.payment-preview small,
.progress-big-number small,
.progress-summary small {
  color: #6f6b75;
  font-size: 8px;
  letter-spacing: .16em;
}

.dash-header h1 {
  margin: 8px 0 0;
  font-size: 27px;
  letter-spacing: -.04em;
}

.dash-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dash-icon-button {
  width: 42px;
  height: 42px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
}

.dash-icon-button i {
  width: 5px;
  height: 5px;
  position: absolute;
  right: 7px;
  top: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.dash-panel { display: none; }
.dash-panel.active { display: block; animation: dashPanelIn .45s cubic-bezier(.2,.8,.2,1); }

@keyframes dashPanelIn {
  from { opacity: 0; transform: translateY(12px); }
}

.dash-hero-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 14px;
}

.active-agent-card,
.daily-checkin,
.dash-stat-card,
.dash-topics,
.next-step-card,
.agent-choice,
.progress-dashboard-card,
.plan-card,
.payment-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--panel);
}

.active-agent-card {
  min-height: 390px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  background:
    radial-gradient(circle at 78% 40%, rgba(141,92,255,.28), transparent 30%),
    linear-gradient(140deg, #15131c, #0f0e13);
}

.agent-status {
  color: var(--violet-soft);
  font-size: 8px;
  letter-spacing: .14em;
}

.agent-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.agent-card-copy h2 {
  margin: 28px 0 16px;
  font-size: 64px;
  line-height: .79;
  letter-spacing: -.07em;
}

.agent-card-copy h2 em {
  color: var(--violet-soft);
  font-family: var(--serif);
  font-weight: 400;
}

.agent-card-copy p {
  max-width: 360px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.agent-card-copy .button { margin-top: 24px; }

.agent-orb {
  width: 230px;
  height: 230px;
  position: absolute;
  right: 32px;
  top: 25px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 31%, rgba(255,255,255,.52), transparent 3%),
    radial-gradient(circle at 45% 42%, #b698ff, #6a48b5 37%, #211b32 65%, #0b0a0e 74%);
  box-shadow: 0 0 100px rgba(141,92,255,.28);
}

.agent-orb span,
.agent-orb i {
  position: absolute;
  inset: -18px 16px;
  border: 1px solid rgba(183,156,255,.25);
  border-radius: 50%;
  transform: rotate(28deg);
  animation: memorySpin 10s linear infinite;
}

.agent-orb i {
  inset: 8px -20px;
  animation-direction: reverse;
}

.last-dialog {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 43%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(8,8,11,.62);
  backdrop-filter: blur(16px);
}

.last-dialog small,
.last-dialog strong,
.last-dialog span { display: block; }
.last-dialog small { color: #716d77; font-size: 7px; letter-spacing: .13em; }
.last-dialog strong { margin: 7px 0; font-size: 10px; }
.last-dialog span { color: #65616b; font-size: 8px; }

.daily-checkin {
  padding: 27px;
  background: linear-gradient(145deg, #17161c, #111115);
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dash-card-head h3 {
  margin: 9px 0 0;
  font-size: 21px;
  letter-spacing: -.04em;
}

.dash-card-head > span {
  color: #6f6b75;
  font-size: 9px;
}

.mood-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 52px 0 9px;
}

.mood-scale button {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #817d87;
  background: #0d0d10;
  cursor: pointer;
}

.mood-scale button.selected,
.mood-scale button:hover {
  color: #111;
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 20px rgba(183,255,69,.18);
}

.mood-labels {
  display: flex;
  justify-content: space-between;
  color: #5d5963;
  font-size: 8px;
}

.dash-secondary-button {
  width: 100%;
  min-height: 45px;
  margin-top: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.035);
  cursor: pointer;
  font-size: 10px;
}

.dash-metrics-grid {
  display: grid;
  grid-template-columns: .7fr .7fr 1.6fr;
  gap: 14px;
  margin-top: 14px;
}

.dash-stat-card {
  min-height: 215px;
  padding: 23px;
}

.dash-stat-card > strong {
  display: block;
  margin-top: 19px;
  font-size: 58px;
  line-height: .85;
  letter-spacing: -.07em;
}

.dash-stat-card > span {
  display: block;
  margin-top: 10px;
  color: #68646e;
  font-size: 8px;
}

.dash-stat-card > span.positive { color: var(--lime); }

.micro-bars {
  height: 35px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 23px;
}

.micro-bars i {
  flex: 1;
  height: 30%;
  border-radius: 3px 3px 0 0;
  background: #38353f;
}

.micro-bars i:nth-child(2) { height: 45%; }
.micro-bars i:nth-child(3) { height: 38%; }
.micro-bars i:nth-child(4) { height: 62%; }
.micro-bars i:nth-child(5) { height: 53%; }
.micro-bars i:nth-child(6) { height: 78%; background: var(--violet); }
.micro-bars i:nth-child(7) { height: 100%; background: var(--lime); }

.ring-stat {
  width: 62px;
  height: 62px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--violet-soft) 76%, #26242b 0);
}

.ring-stat::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--panel);
}

.ring-stat i {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-size: 9px;
}

.dash-trend-head {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-top: 20px;
}

.dash-trend-head strong {
  font-size: 36px;
  color: var(--lime);
  letter-spacing: -.05em;
}

.dash-trend-head span {
  color: #6f6b75;
  font-size: 9px;
}

.dash-stat-wide svg {
  width: 100%;
  height: 92px;
  margin-top: 7px;
}

.dash-stat-wide path {
  fill: none;
  stroke: var(--violet-soft);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(141,92,255,.35));
}

.dash-lower-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 14px;
  margin-top: 14px;
}

.dash-topics,
.next-step-card { min-height: 260px; padding: 25px; }
.dash-card-head button { color: var(--violet-soft); border: 0; background: transparent; font-size: 9px; }

.dash-topic-cloud {
  min-height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  flex-wrap: wrap;
}

.dash-topic-cloud span { line-height: .9; letter-spacing: -.05em; }
.dash-topic-cloud .xl { color: var(--violet-soft); font-size: 58px; }
.dash-topic-cloud .lg { font-size: 36px; }
.dash-topic-cloud .md { color: #aaa5b1; font-size: 25px; }
.dash-topic-cloud .sm { color: #625e68; font-size: 14px; }

.next-step-card {
  color: #11140d;
  background: var(--lime);
  border-color: transparent;
}

.next-step-card > small { color: rgba(17,20,13,.55); }
.next-step-card h3 { max-width: 360px; font-size: 22px; line-height: 1.18; letter-spacing: -.04em; }
.next-step-card label { position: absolute; left: 25px; bottom: 24px; font-size: 9px; }
.next-step-card input { accent-color: #111; }
.step-illustration { position: absolute; right: -15px; bottom: -40px; font-size: 160px; line-height: 1; color: rgba(17,20,13,.07); }

.panel-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 12px 0 35px;
}

.panel-intro h2 {
  margin: 10px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -.065em;
}

.panel-intro p {
  max-width: 390px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.dash-assessment-card {
  min-height: 590px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 45px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 68% 45%, rgba(141,92,255,.22), transparent 28%),
    var(--panel);
}

.dash-assessment-copy h3 {
  margin: 30px 0 20px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: .88;
  letter-spacing: -.07em;
}

.dash-assessment-copy h3 em {
  color: var(--violet-soft);
  font-family: var(--serif);
  font-weight: 400;
}

.dash-assessment-copy p {
  max-width: 480px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.dash-assessment-copy .button { margin-top: 28px; }
.dash-assessment-card .assessment-radar { width: 100%; max-width: 430px; margin: auto; }

.dash-assessment-facts {
  position: absolute;
  left: 55px;
  right: 55px;
  bottom: 25px;
  display: flex;
  gap: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.dash-assessment-facts div { display: flex; align-items: baseline; gap: 7px; }
.dash-assessment-facts strong { color: var(--lime); font-size: 22px; }
.dash-assessment-facts span { color: #77737e; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }

.agent-choice {
  min-height: 535px;
  padding: 18px;
  transition: transform .3s ease, border-color .3s ease;
}

.agent-choice:hover { transform: translateY(-6px); border-color: rgba(183,156,255,.4); }
.agent-choice.active { border-color: rgba(183,255,69,.45); }

.agent-art {
  height: 210px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0a0a0d;
}

.agent-art::before,
.agent-art::after,
.agent-art i {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.agent-art::before { width: 130px; height: 130px; left: calc(50% - 65px); top: 40px; }
.agent-art::after { inset: 22px 35px; border: 1px solid rgba(255,255,255,.15); }
.agent-art i { width: 7px; height: 7px; right: 30px; top: 35px; background: var(--lime); box-shadow: 0 0 14px var(--lime); }
.art-balance::before { background: radial-gradient(circle at 35% 30%, #e6ddff, #8d5cff 30%, #241a3d 68%); box-shadow: 0 0 70px rgba(141,92,255,.4); }
.art-focus::before { border-radius: 22%; transform: rotate(35deg); background: linear-gradient(135deg, var(--lime), #242d18 65%); box-shadow: 0 0 60px rgba(183,255,69,.2); }
.art-relations::before { box-shadow: -35px 0 0 -8px #8d5cff, 35px 0 0 -8px #ff754a; background: rgba(255,255,255,.07); }
.art-reset::before { background: radial-gradient(circle, #ffc091, #ff754a 27%, #2a1713 66%); box-shadow: 0 0 60px rgba(255,117,74,.25); }

.agent-choice-top { display: flex; justify-content: space-between; margin-top: 20px; }
.agent-choice-top span, .agent-choice-top b { font-size: 8px; letter-spacing: .12em; }
.agent-choice-top span { color: #77737e; }
.agent-choice-top b { color: var(--lime); }
.agent-choice h3 { margin: 14px 0 9px; font-size: 25px; letter-spacing: -.04em; }
.agent-choice p { min-height: 56px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.agent-choice ul { margin: 18px 0; padding: 0; list-style: none; color: #77737e; font-size: 9px; }
.agent-choice li { padding: 7px 0; border-bottom: 1px solid var(--line); }
.agent-choice button { width: calc(100% - 36px); height: 42px; position: absolute; left: 18px; bottom: 18px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: transparent; cursor: pointer; font-size: 9px; }
.agent-choice.active button { color: #111; border-color: var(--lime); background: var(--lime); }

.progress-dashboard-card {
  min-height: 560px;
  padding: 50px;
  display: grid;
  grid-template-columns: .7fr 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: radial-gradient(circle at 45% 50%, rgba(141,92,255,.15), transparent 25%), var(--panel);
}

.progress-big-number strong { display: inline-block; font-size: 120px; line-height: .8; letter-spacing: -.1em; }
.progress-big-number > span { color: #6f6b75; font-size: 18px; }
.progress-big-number b { display: block; margin-top: 25px; color: var(--lime); font-size: 10px; }

.progress-radar {
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 49px, rgba(255,255,255,.1) 50px 51px);
}

.progress-radar::before {
  content: "";
  position: absolute;
  inset: 18%;
  clip-path: polygon(50% 0, 98% 37%, 78% 93%, 18% 80%, 0 28%);
  background: rgba(141,92,255,.35);
  border: 1px solid var(--violet-soft);
}

.progress-radar i { position: absolute; left: 50%; top: 0; bottom: 0; border-left: 1px solid rgba(255,255,255,.07); }
.progress-radar i:nth-child(2) { transform: rotate(60deg); }
.progress-radar i:nth-child(3) { transform: rotate(120deg); }
.progress-radar span { position: absolute; color: #77737e; font-size: 8px; text-transform: uppercase; }
.progress-radar span:nth-of-type(1) { top: -8px; left: 43%; }
.progress-radar span:nth-of-type(2) { right: -16px; top: 45%; }
.progress-radar span:nth-of-type(3) { bottom: -8px; left: 45%; }
.progress-radar span:nth-of-type(4) { left: -12px; top: 45%; }

.progress-summary h3 { font-size: 27px; line-height: 1.2; letter-spacing: -.04em; }
.progress-summary .dash-secondary-button { width: auto; min-width: 220px; }

.billing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr;
  gap: 14px;
}

.plan-card,
.payment-preview { min-height: 500px; padding: 30px; }
.plan-card.recommended { border-color: rgba(183,255,69,.35); background: linear-gradient(145deg, rgba(183,255,69,.06), transparent), var(--panel); }
.recommend-label { position: absolute; right: 18px; top: 18px; padding: 7px 9px; border-radius: 999px; color: #111; background: var(--lime); font-size: 7px; font-weight: 800; }
.plan-card h3 { margin: 32px 0 10px; font-size: 48px; letter-spacing: -.06em; }
.plan-card h3 span { color: #77737e; font-size: 11px; font-weight: 400; }
.plan-card p, .payment-preview p { color: var(--muted); font-size: 11px; line-height: 1.55; }
.plan-card ul { margin: 36px 0; padding: 0; list-style: none; color: #b4afb9; font-size: 10px; }
.plan-card li { padding: 11px 0; border-bottom: 1px solid var(--line); }
.plan-card li::before { content: "✓"; margin-right: 9px; color: var(--lime); }
.plan-card > button { width: calc(100% - 60px); position: absolute; left: 30px; bottom: 30px; }
.payment-preview { display: flex; flex-direction: column; justify-content: space-between; background: #0f0f13; }

.payment-card-visual {
  aspect-ratio: 1.58;
  padding: 22px;
  display: grid;
  align-content: space-between;
  border-radius: 18px;
  color: #111;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.55), transparent 20%),
    linear-gradient(135deg, var(--violet-soft), var(--lime));
  box-shadow: 0 25px 50px rgba(0,0,0,.3);
  transform: rotate(4deg);
}

.payment-card-visual span { font-weight: 900; letter-spacing: .08em; }
.payment-card-visual i { font-size: 12px; font-style: normal; }
.payment-card-visual b { text-align: right; font-size: 8px; }

.dash-toast {
  position: fixed;
  z-index: 200;
  right: 28px;
  bottom: 28px;
  padding: 15px 18px;
  border: 1px solid rgba(183,255,69,.25);
  border-radius: 12px;
  color: #111;
  background: var(--lime);
  box-shadow: 0 20px 70px rgba(0,0,0,.4);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: .3s ease;
}

.dash-toast.show { opacity: 1; transform: translateY(0); }

/* Platform data, settings and owner control */
.owner-nav-entry { color: var(--lime) !important; border: 1px solid rgba(183,255,69,.14) !important; background: rgba(183,255,69,.045) !important; }
.platform-assessment, .platform-assessment-result, .assessment-history, .settings-card, .support-compose, .support-history, .owner-chart-card, .owner-table-card { border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.platform-assessment { padding: clamp(24px, 4vw, 48px); }
.platform-assessment-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.platform-assessment-head h3 { margin: 20px 0 0; font-size: clamp(32px, 4vw, 58px); letter-spacing: -.055em; }
.platform-assessment-head h3 em { color: var(--violet-soft); font-family: var(--serif); font-weight: 400; }
.assessment-live-score { min-width: 170px; padding: 20px; text-align: right; border: 1px solid rgba(183,255,69,.15); border-radius: 18px; background: rgba(183,255,69,.035); }
.assessment-live-score small { display: block; color: #77727e; font-size: 7px; letter-spacing: .12em; }
.assessment-live-score strong { color: var(--lime); font-size: 48px; letter-spacing: -.07em; }
.assessment-live-score span { color: #77727e; font-size: 11px; }
.assessment-question-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; margin: 34px 0 20px; }
.assessment-question-grid fieldset { min-width: 0; padding: 19px 16px; border: 1px solid var(--line); border-radius: 17px; background: rgba(7,7,10,.48); transition: border-color .25s ease, transform .25s ease; }
.assessment-question-grid fieldset:hover { transform: translateY(-4px); border-color: rgba(141,92,255,.45); }
.assessment-question-grid legend { width: 100%; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.assessment-question-grid legend span { color: var(--lime); font-size: 8px; }
.assessment-question-grid p { min-height: 34px; margin: 16px 0 7px; color: #85818b; font-size: 9px; line-height: 1.45; }
.assessment-question-grid input[type="range"] { width: 100%; accent-color: var(--violet-soft); }
.assessment-scale-note { display: flex; align-items: center; gap: 14px; margin: 0 0 26px; color: #66626b; font-size: 8px; }
.assessment-scale-note i { height: 1px; flex: 1; background: linear-gradient(90deg, #554a66, var(--violet-soft), var(--lime)); }
.platform-assessment-result { margin-top: 18px; padding: clamp(26px, 4vw, 46px); display: grid; grid-template-columns: minmax(300px,.8fr) 1.2fr; gap: 50px; align-items: center; background: radial-gradient(circle at 15% 50%, rgba(141,92,255,.15), transparent 35%), #111116; }
.platform-assessment-result[hidden] { display: none; }
.result-radar-wrap { max-width: 430px; position: relative; aspect-ratio: 1; margin: auto; }
.result-radar-wrap svg { width: 100%; height: 100%; overflow: visible; }
.result-radar-grid polygon, .result-radar-grid line { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 1; }
.result-radar-data { fill: rgba(141,92,255,.28); stroke: var(--lime); stroke-width: 2; filter: drop-shadow(0 0 10px rgba(183,255,69,.2)); transition: points .5s ease; }
.result-radar-wrap > span { position: absolute; color: #8a8591; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.result-radar-wrap > span:nth-of-type(1) { left: 50%; top: -1%; transform: translateX(-50%); }
.result-radar-wrap > span:nth-of-type(2) { right: -4%; top: 31%; }
.result-radar-wrap > span:nth-of-type(3) { right: 1%; bottom: 11%; }
.result-radar-wrap > span:nth-of-type(4) { left: 2%; bottom: 11%; }
.result-radar-wrap > span:nth-of-type(5) { left: -5%; top: 31%; }
.result-narrative > small, .settings-card > small, .support-compose > small { color: var(--lime); font-size: 8px; letter-spacing: .16em; }
.result-score-line { margin: 14px 0 3px; }
.result-score-line strong { font-size: clamp(70px, 8vw, 120px); letter-spacing: -.09em; line-height: .8; }
.result-score-line span { color: #77727d; }
.result-narrative h3 { margin: 18px 0 10px; font-size: 32px; }
.result-narrative > p { max-width: 650px; color: var(--muted); line-height: 1.6; }
.result-poles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.result-poles div { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.result-poles small { display: block; margin-bottom: 7px; color: #747079; font-size: 7px; letter-spacing: .12em; }
.result-poles strong { font-size: 13px; }
.result-poles div:last-child strong { color: #ff9a79; }
.result-narrative ul { display: grid; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.result-narrative li { padding-left: 22px; position: relative; color: #aaa6b0; font-size: 11px; line-height: 1.5; }
.result-narrative li::before { content: "↗"; position: absolute; left: 0; color: var(--lime); }
.assessment-history { margin-top: 18px; padding: 26px; }
.assessment-history-list { display: flex; gap: 10px; overflow-x: auto; padding-top: 15px; }
.history-point { min-width: 150px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; }
.history-point strong { display: block; margin: 7px 0 4px; font-size: 28px; }
.history-point small, .history-point span { color: #77727e; font-size: 8px; }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.settings-card { padding: clamp(24px, 3vw, 38px); }
.settings-card h3, .support-compose h3 { margin: 11px 0 26px; font-size: 28px; }
.settings-card label, .support-compose label { display: block; margin-bottom: 16px; color: #8f8a95; font-size: 9px; }
.settings-card input, .settings-card select, .support-compose input, .support-compose textarea, .owner-table-card input { width: 100%; margin-top: 8px; padding: 0 14px; color: var(--ink); outline: 0; border: 1px solid var(--line); border-radius: 11px; background: #0b0b0f; }
.settings-card input, .settings-card select, .support-compose input, .owner-table-card input { height: 48px; }
.support-compose textarea { min-height: 170px; padding-top: 14px; resize: vertical; }
.settings-card input:focus, .settings-card select:focus, .support-compose input:focus, .support-compose textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(141,92,255,.1); }
.settings-hint, .form-status { color: #77727e; font-size: 9px; line-height: 1.5; }
.form-status.success { color: var(--lime); }
.form-status.error { color: #ff8e82; }
.form-error { margin: 12px 0 0; padding: 10px 12px; color: #ff9a8e; border: 1px solid rgba(255,120,110,.2); border-radius: 10px; background: rgba(255,100,90,.055); font-size: 10px; line-height: 1.45; }
.support-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.support-compose, .support-history { padding: clamp(24px, 3vw, 36px); }
.support-ticket { margin-top: 10px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.018); }
.support-ticket-head { display: flex; justify-content: space-between; gap: 15px; }
.support-ticket p { color: #96919d; font-size: 10px; line-height: 1.55; }
.ticket-status { padding: 5px 8px; border-radius: 20px; color: var(--violet-soft); background: rgba(141,92,255,.1); font-size: 7px; text-transform: uppercase; }
.ticket-response { margin-top: 12px; padding: 12px; border-left: 2px solid var(--lime); background: rgba(183,255,69,.035); }
.empty-state { color: #747079; font-size: 11px; }
.owner-tabs { display: flex; gap: 8px; margin-bottom: 18px; padding: 6px; border: 1px solid var(--line); border-radius: 14px; background: #0e0e12; }
.owner-tabs button { min-height: 38px; padding: 0 18px; border: 0; border-radius: 9px; color: #7f7a85; background: transparent; cursor: pointer; }
.owner-tabs button.active { color: #0d0d0f; background: var(--lime); }
.owner-section { display: none; }
.owner-section.active { display: block; animation: dashPanelIn .3s ease; }
.owner-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.owner-metrics article { min-height: 145px; padding: 22px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg,#17161d,#0f0f13); }
.owner-metrics article::after { content: ""; width: 80px; height: 80px; position: absolute; right: -20px; bottom: -30px; border-radius: 50%; background: var(--violet); opacity: .12; filter: blur(12px); }
.owner-metrics small { display: block; color: #77727e; font-size: 7px; letter-spacing: .12em; }
.owner-metrics strong { display: block; margin: 15px 0 3px; font-size: 40px; }
.owner-metrics span { color: #747079; font-size: 9px; }
.owner-chart-card, .owner-table-card { margin-top: 14px; padding: 28px; }
.owner-bars { height: 240px; display: flex; align-items: flex-end; gap: 8px; margin-top: 24px; border-bottom: 1px solid var(--line); }
.owner-bar { min-width: 10px; height: max(8px, var(--height)); flex: 1; position: relative; border-radius: 7px 7px 0 0; background: linear-gradient(180deg,var(--lime),var(--violet)); opacity: .85; transition: height .4s ease, filter .2s ease; }
.owner-bar:hover { filter: brightness(1.25); }
.owner-bar::after { content: attr(data-value); position: absolute; left: 50%; top: -19px; transform: translateX(-50%); color: #85808a; font-size: 8px; }
.owner-table-wrap { overflow-x: auto; }
.owner-table-card input { max-width: 260px; }
.owner-table-card table { width: 100%; margin-top: 22px; border-collapse: collapse; font-size: 10px; }
.owner-table-card th { padding: 12px; color: #6f6b74; font-size: 7px; text-align: left; letter-spacing: .1em; border-bottom: 1px solid var(--line); }
.owner-table-card td { padding: 14px 12px; color: #aaa6b0; border-bottom: 1px solid rgba(255,255,255,.05); }
.owner-table-card td strong { display: block; color: var(--ink); }
.owner-table-card td small { color: #716d76; }
.role-pill { padding: 5px 8px; border-radius: 20px; color: var(--lime); background: rgba(183,255,69,.07); font-size: 7px; }
.owner-ticket-board { display: grid; gap: 12px; }
.owner-ticket-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #111116; }
.owner-ticket-card header { display: flex; justify-content: space-between; gap: 20px; }
.owner-ticket-card header small { display: block; margin-top: 4px; color: #77727e; }
.owner-ticket-card > p { color: #aaa6b0; line-height: 1.6; }
.owner-ticket-card textarea { width: 100%; min-height: 95px; margin: 13px 0; padding: 12px; color: var(--ink); border: 1px solid var(--line); border-radius: 12px; background: #09090c; resize: vertical; }
.owner-ticket-actions { display: flex; gap: 9px; }
.system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.system-grid article { min-height: 190px; padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: #111116; }
.system-grid i { width: 10px; height: 10px; display: block; margin-bottom: 28px; border-radius: 50%; }
.system-ok { background: var(--lime); box-shadow: 0 0 14px rgba(183,255,69,.45); }
.system-wait { background: #ffb66f; box-shadow: 0 0 14px rgba(255,182,111,.35); }
.system-grid small { color: #77727e; font-size: 8px; letter-spacing: .12em; }
.system-grid h3 { margin: 9px 0; }
.system-grid p { color: #77727e; font-size: 10px; line-height: 1.5; }

@media (max-width: 1100px) {
  .assessment-question-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .owner-metrics { grid-template-columns: 1fr 1fr; }
  .hero {
    grid-template-columns: 1fr 0.85fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(60px, 8.5vw, 92px);
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .economy-panel {
    grid-template-columns: 1fr;
  }

  .economy-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trial-band { grid-template-columns: 1fr 1fr; }
  .trial-band ul { display: grid; }
  .trial-action { grid-column: 1 / -1; justify-self: start; justify-items: start; }
  .dashboard-view { grid-template-columns: 88px 1fr; }
  .dash-sidebar { padding-inline: 15px; }
  .dash-sidebar .brand span:not(.brand-mark), .dash-sidebar .brand small, .dash-nav button:not(.active) { }
  .dash-nav button { justify-content: center; font-size: 0; }
  .dash-nav button span { width: auto; font-size: 19px; }
  .dash-trial-mini, .dash-profile div, .dash-profile button { display: none; }
  .dash-profile { grid-template-columns: 1fr; justify-items: center; }
  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .format-compare-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 700px);
  }

  .site-header {
    height: 76px;
  }

  .desktop-nav,
  .button-ghost {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 52px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 92px);
  }

  .hero h1 .serif-line {
    transform: none;
  }

  .hero-visual {
    min-height: 610px;
  }

  .floating-card-top {
    left: 12px;
  }

  .floating-card-bottom {
    right: 12px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics article:last-child {
    border-bottom: 0;
  }

  .signal-strip {
    margin-bottom: 100px;
  }

  .intro-heading,
  .progress-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .advantage-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-wide,
  .compare-card,
  .topics-card {
    grid-column: 1;
  }

  .saving-value {
    font-size: 16vw;
  }

  .step {
    grid-template-columns: 0.18fr 1fr 0.12fr;
  }

  .step p {
    display: none;
  }

  .final-cta {
    min-height: 580px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .auth-modal[open] {
    display: block;
    overflow-y: auto;
  }

  .modal-visual {
    min-height: 250px;
    padding: 30px;
  }

  .modal-visual h2 {
    font-size: 38px;
  }

  .modal-visual p {
    display: none;
  }

  .modal-orb {
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -90px;
  }

  .immersive { min-height: auto; grid-template-columns: 1fr; gap: 30px; }
  .immersive-copy { position: static; padding-top: 0; }
  .immersive-gallery { min-height: 700px; }
  .trial-band { grid-template-columns: 1fr; padding: 34px; }
  .trial-band > div { align-items: flex-start; }
  .trial-seven { font-size: 100px; }
  .trial-band .button { justify-self: start; }
  .trial-benefits { width: 100%; }
  .trial-action { grid-column: auto; }
  .comparison-score { display: none; }
  .format-compare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-row { grid-template-columns: 1.15fr 1fr 1fr; gap: 10px; font-size: 11px; }
  .compare-meter { display: none; }
  .assessment-panel { grid-template-columns: 1fr; padding-bottom: 130px; }
  .assessment-visual { min-height: 390px; }
  .photo-boundary { left: 34px; right: 34px; }
  .photo-safety-tags { display: none; }
  .progress-journey { margin-right: -20px; padding-right: 20px; }
  .dashboard-view { grid-template-columns: 1fr; }
  .dash-sidebar { min-height: auto; position: static; flex-direction: row; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .dash-nav { display: flex; margin: 0 0 0 auto; overflow-x: auto; }
  .dash-profile { display: none; }
  .dash-main { padding: 22px 16px 60px; }
  .dash-hero-grid, .dash-metrics-grid, .dash-lower-grid, .billing-grid { grid-template-columns: 1fr; }
  .agent-grid { grid-template-columns: 1fr 1fr; }
  .active-agent-card { grid-template-columns: 1fr; }
  .agent-orb { opacity: .55; right: -25px; }
  .last-dialog { display: none; }
  .progress-dashboard-card { grid-template-columns: 1fr; padding: 30px; }
  .exit-offer-modal[open] { display: block; overflow-y: auto; }
  .exit-offer-art { min-height: 280px; height: 280px; }
  .exit-offer-art img { object-position: 50% 37%; }
  .duration-orbit { width: 90px; height: 90px; }
  .duration-orbit span { font-size: 19px; }
  .exit-offer-copy { min-height: auto; padding: 34px; }
  .dash-assessment-card { grid-template-columns: 1fr; padding: 34px 34px 130px; }
  .dash-assessment-card .assessment-radar { max-width: 360px; }
  .dash-assessment-facts { left: 34px; right: 34px; }
  .progress-radar { max-width: 380px; width: 90%; margin: auto; }
  .platform-assessment-result, .settings-grid, .support-layout { grid-template-columns: 1fr; }
  .owner-metrics, .system-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .header-actions .button-light {
    padding: 11px 14px;
  }

  .hero-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 520px;
  }

  .image-frame {
    border-radius: 110px 20px 20px 20px;
  }

  .floating-card {
    padding: 11px 12px;
  }

  .intro,
  .progress,
  .steps,
  .economy {
    padding-bottom: 110px;
  }

  .bento-card {
    min-height: 370px;
  }

  .comparison-row {
    grid-template-columns: 1.15fr 1fr 1fr;
    font-size: 10px;
  }

  .compare-card { padding: 26px 20px; }
  .comparison-head h3 { font-size: 29px; }
  .format-compare-grid { grid-template-columns: 1fr; }
  .format-compare-item { min-height: 140px; }

  .economy-copy,
  .economy-dashboard {
    padding: 30px 22px;
  }

  .annual-saving strong {
    width: 100%;
  }

  .annual-saving small {
    text-align: left;
  }

  .topic-cloud {
    justify-content: flex-start;
  }

  .line-chart { margin-top: 34px; }
  .chart-points button { width: 21px; height: 21px; font-size: 10px; }
  .chart-axis { font-size: 7px; }
  .journey-stage { min-width: 245px; min-height: 98px; flex-basis: 245px; }

  .footer-links {
    flex-wrap: wrap;
  }

  .story-image-main { width: 92%; height: 430px; }
  .story-image-secondary { width: 72%; height: 300px; }
  .immersive-gallery { min-height: 620px; }
  .trial-band > div { gap: 15px; }
  .trial-band h2 { font-size: 24px; }
  .trial-number-lockup { min-width: 92px; padding-right: 14px; }
  .trial-number-lockup b { font-size: 11px; }
  .assessment-panel { padding: 30px 22px 175px; }
  .assessment-copy h2 { font-size: 53px; }
  .assessment-visual { min-height: 330px; }
  .assessment-signal { display: none; }
  .photo-boundary { left: 22px; right: 22px; bottom: 24px; }
  .assessment-modal, .policy-modal { padding: 32px 22px; }
  .answer-scale { gap: 6px; }
  .cookie-banner { grid-template-columns: auto 1fr; }
  .cookie-banner .button { grid-column: 1 / -1; width: 100%; }
  .exit-offer-art { min-height: 220px; height: 220px; }
  .exit-art-caption { display: none; }
  .duration-orbit { width: 76px; height: 76px; right: 14px; top: 14px; }
  .duration-orbit span { font-size: 16px; }
  .exit-offer-copy { padding: 30px 22px; }
  .exit-offer-copy h2 { font-size: 44px; }
  .exit-offer-list { margin: 20px 0; }
  .exit-result-preview { grid-template-columns: 76px 1fr; padding: 13px; }
  .exit-mini-signals { grid-template-columns: 1fr; }
  .exit-mini-signals span:last-child { grid-column: auto; }
  .dash-sidebar .brand { display: none; }
  .dash-sidebar { padding: 10px; }
  .dash-nav { width: 100%; justify-content: space-around; }
  .dash-nav button { min-width: 48px; width: 48px; padding: 0; }
  .dash-header { align-items: flex-start; }
  .dash-header h1 { font-size: 21px; }
  .dash-header-actions .dash-icon-button { display: none; }
  .dash-header-actions .button { padding: 10px 13px; font-size: 9px; }
  .active-agent-card { padding: 24px; min-height: 430px; }
  .agent-card-copy h2 { font-size: 52px; }
  .dash-metrics-grid { grid-template-columns: 1fr 1fr; }
  .dash-stat-wide { grid-column: 1 / -1; }
  .agent-grid { grid-template-columns: 1fr; }
  .dash-assessment-card { padding: 28px 22px 145px; }
  .dash-assessment-facts { left: 22px; right: 22px; flex-wrap: wrap; gap: 14px 25px; }
  .panel-intro { display: block; }
  .panel-intro p { margin-top: 16px; }
  .assessment-question-grid, .owner-metrics, .system-grid { grid-template-columns: 1fr; }
  .platform-assessment-head { display: block; }
  .assessment-live-score { margin-top: 18px; text-align: left; }
  .platform-assessment-result { gap: 20px; }
  .owner-tabs { overflow-x: auto; }
  .owner-tabs button { white-space: nowrap; }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
