@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #060713;
  --bg-2: #090b1c;
  --surface: rgba(18, 20, 43, 0.72);
  --surface-strong: #11152d;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f6f7ff;
  --muted: #9aa3c2;
  --blue: #3f6dff;
  --cyan: #19d8ff;
  --violet: #8557ff;
  --purple: #b052ff;
  --soft-purple: #d6c5ff;
  --danger: #ff4f87;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(67, 54, 255, 0.18), transparent 31rem),
    radial-gradient(circle at 7% 36%, rgba(17, 207, 255, 0.08), transparent 29rem),
    linear-gradient(180deg, #05060f 0%, #090a19 52%, #060712 100%);
  font-family: "Inter", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.ambient {
  position: fixed;
  width: 480px;
  height: 480px;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.14;
  pointer-events: none;
  z-index: -4;
}

.ambient-one {
  background: #6040ff;
  right: -160px;
  top: 15%;
}

.ambient-two {
  background: #00c8ff;
  left: -190px;
  top: 55%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 7, 19, 0.72);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(6, 7, 19, 0.88);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 0 26px rgba(67, 105, 255, .22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 29px;
  color: #bac1d9;
  font-size: .92rem;
}

.nav-links a {
  transition: .2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  border: 1px solid rgba(137, 91, 255, .55);
  background: linear-gradient(135deg, rgba(62, 105, 255, .17), rgba(134, 83, 255, .2));
  padding: 10px 16px;
  border-radius: 12px;
  color: white !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: white;
  display: block;
  border-radius: 2px;
}

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding-top: 45px;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9bb7ff;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--cyan);
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(25, 216, 255, .42);
  border-radius: 50%;
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% { transform: scale(.7); opacity: 0; }
  45% { opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.065em;
  margin: 22px 0 28px;
  max-width: 760px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(100deg, #4e7bff, #8f5cff 52%, #18d6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(90, 94, 255, .15);
}

.hero-lead {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.07rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: linear-gradient(100deg, #3f6dff, #8557ff 68%, #a454ff);
  color: #fff;
  box-shadow: 0 10px 34px rgba(80, 79, 255, .3);
}

.btn-primary:hover {
  box-shadow: 0 15px 46px rgba(80, 79, 255, .42);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: white;
}

.btn-secondary:hover {
  border-color: rgba(122, 93, 255, .6);
}

.full {
  width: 100%;
}

.hero-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #8f99b9;
  font-size: .84rem;
}

.hero-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(25, 216, 255, .6);
}

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

.glass-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015)),
    rgba(9, 11, 30, .68);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-logo-card {
  width: min(100%, 470px);
  aspect-ratio: 1/1;
  border-radius: 34px;
  padding: 44px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(70, 105, 255, .08), transparent 40%),
    radial-gradient(circle at 65% 37%, rgba(104, 76, 255, .15), transparent 46%);
}

.hero-logo-card img {
  width: 100%;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
}

.logo-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(74, 103, 255, .32), rgba(137, 79, 255, .12) 38%, transparent 70%);
  filter: blur(45px);
}

.logo-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(110, 93, 255, .12);
  border-radius: 50%;
  animation: orbit 20s linear infinite;
}

.logo-orbit::before,
.logo-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan);
}

.logo-orbit::before {
  top: 55px;
  right: 75px;
}

.logo-orbit::after {
  bottom: 42px;
  left: 105px;
  background: var(--violet);
  box-shadow: 0 0 20px var(--violet);
}

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

.floating-chip {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10, 12, 30, .84);
  backdrop-filter: blur(18px);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: 0 18px 42px rgba(0,0,0,.3);
  z-index: 4;
}

.floating-chip small {
  display: block;
  color: #7f89a9;
  font-size: .62rem;
  letter-spacing: .12em;
  margin-bottom: 5px;
}

.floating-chip strong {
  color: #eef0ff;
  font-size: .83rem;
}

.chip-a {
  left: -14px;
  top: 29%;
}

.chip-a strong {
  color: var(--cyan);
  font-size: 1.5rem;
}

.chip-b {
  right: -17px;
  top: 19%;
}

.chip-c {
  right: 2%;
  bottom: 20%;
}

.chip-c strong {
  color: #8bb7ff;
}

.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  background: linear-gradient(90deg, #fff, #aebfff);
  -webkit-background-clip: text;
  color: transparent;
}

.stats-grid span {
  color: var(--muted);
  font-size: .8rem;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.preview-copy h2,
.how-card h2,
.final-cta h2 {
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  letter-spacing: -.045em;
  line-height: 1.04;
  margin: 14px 0 18px;
}

.section-heading p,
.preview-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border-radius: 22px;
  padding: 27px;
  min-height: 250px;
  transition: .25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -75px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(83, 75, 255, .19), transparent 70%);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(115, 97, 255, .35);
  background: linear-gradient(145deg, rgba(78, 92, 255, .075), rgba(255,255,255,.018));
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(69, 107, 255, .18), rgba(133, 87, 255, .18));
  border: 1px solid rgba(109, 99, 255, .27);
  color: #cdd6ff;
  box-shadow: inset 0 0 20px rgba(74, 104, 255, .08);
}

.wave-icon {
  font-size: 1.8rem;
  line-height: 0;
  color: var(--cyan);
}

.feature-card h3 {
  margin: 24px 0 10px;
  font-size: 1.12rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.68;
  font-size: .92rem;
}

.preview-section {
  position: relative;
}

.preview-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 58px;
  align-items: center;
}

.preview-copy {
  max-width: 440px;
}

.grade-row {
  display: flex;
  gap: 9px;
  margin: 27px 0 13px;
}

.grade {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-weight: 900;
  font-family: "Space Grotesk", sans-serif;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
}

.grade-a { color: #36ddff; box-shadow: inset 0 0 24px rgba(25,216,255,.08); }
.grade-b { color: #6f8cff; }
.grade-c { color: #b173ff; }
.grade-d { color: #ca77ff; }
.grade-f { color: #ff5c8d; }

.microcopy {
  font-size: .78rem !important;
  color: #6f7898 !important;
}

.terminal {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.terminal-top {
  height: 54px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b4057;
}

.terminal-title {
  color: #7f89a8;
  letter-spacing: .15em;
  font-size: .64rem;
}

.status-badge {
  justify-self: end;
  color: #a9b1c9;
  font-size: .64rem;
  display: flex;
  gap: 6px;
  align-items: center;
}

.status-badge i {
  width: 6px;
  height: 6px;
  background: #35dfff;
  border-radius: 50%;
  box-shadow: 0 0 11px #35dfff;
}

.chart {
  height: 330px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(63, 84, 255, .035), transparent 45%),
    #080a18;
}

.chart-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px);
  background-size: 52px 52px;
}

.candle {
  position: absolute;
  width: 11px;
  border-radius: 2px;
  background: #547bff;
  box-shadow: 0 0 14px rgba(68, 116, 255, .28);
}

.candle::before,
.candle::after {
  content: "";
  position: absolute;
  left: 5px;
  width: 1px;
  background: inherit;
}

.candle::before {
  height: 18px;
  top: -18px;
}

.candle::after {
  height: 15px;
  bottom: -15px;
}

.candle.down {
  background: #a65cff;
}

.c1 { left: 7%; height: 42px; bottom: 56px; }
.c2 { left: 17%; height: 63px; bottom: 75px; }
.c3 { left: 28%; height: 40px; bottom: 105px; }
.c4 { left: 38%; height: 78px; bottom: 113px; }
.c5 { left: 49%; height: 54px; bottom: 148px; }
.c6 { left: 60%; height: 72px; bottom: 161px; }
.c7 { left: 70%; height: 38px; bottom: 195px; }
.c8 { left: 80%; height: 61px; bottom: 207px; }
.c9 { left: 90%; height: 72px; bottom: 227px; }

.wave-svg {
  position: absolute;
  width: 100%;
  height: 88%;
  bottom: 9px;
  overflow: visible;
}

.wave-halo {
  fill: none;
  stroke: url(#waveGradient);
  stroke-width: 23;
  opacity: .19;
  filter: url(#glow);
  stroke-linecap: round;
}

.wave-line {
  fill: none;
  stroke: url(#waveGradient);
  stroke-width: 6;
  filter: url(#glow);
  stroke-linecap: round;
}

.signal-marker {
  position: absolute;
  left: 51%;
  bottom: 121px;
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(29, 45, 110, .92);
  border: 1px solid rgba(95, 123, 255, .6);
  box-shadow: 0 0 25px rgba(72, 94, 255, .18);
}

.signal-marker span,
.signal-marker strong {
  display: block;
}

.signal-marker span {
  color: #dbe4ff;
  font-size: .68rem;
  font-weight: 900;
}

.signal-marker strong {
  color: #42d9ff;
  margin-top: 3px;
  font-size: .59rem;
  letter-spacing: .08em;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.dashboard div {
  padding: 17px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dashboard div:nth-child(3n) {
  border-right: 0;
}

.dashboard span,
.dashboard strong {
  display: block;
}

.dashboard span {
  color: #676f8d;
  font-size: .6rem;
  letter-spacing: .12em;
  margin-bottom: 6px;
}

.dashboard strong {
  font-size: .78rem;
  color: #dbe0f2;
}

.dashboard .cyan {
  color: var(--cyan);
}

.dashboard .violet {
  color: #a377ff;
}

.dashboard .soft {
  color: #96a6d9;
}

.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border-radius: 26px;
  padding: 32px;
  position: relative;
}

.price-card.featured {
  border-color: rgba(114, 92, 255, .4);
  background:
    radial-gradient(circle at 80% 0%, rgba(115, 76, 255, .16), transparent 40%),
    linear-gradient(145deg, rgba(66, 88, 255, .07), rgba(255,255,255,.015));
  box-shadow: 0 28px 80px rgba(52, 43, 170, .17);
}

.popular-badge {
  position: absolute;
  right: 24px;
  top: -12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #496eff, #9258ff);
  color: white;
  font-size: .61rem;
  letter-spacing: .11em;
  font-weight: 900;
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plan-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-pill {
  color: #9ba4c4;
  border: 1px solid var(--line);
  padding: 6px 9px;
  border-radius: 999px;
  font-size: .66rem;
}

.plan-pill.bright {
  border-color: rgba(133, 87, 255, .32);
  color: #b9a7ff;
}

.price {
  margin: 30px 0 12px;
  display: flex;
  align-items: baseline;
}

.price .currency {
  color: #a9b0c8;
  font-size: 1.2rem;
  margin-right: 4px;
}

.price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.4rem;
  letter-spacing: -.07em;
  line-height: 1;
}

.price .period {
  color: #7d86a5;
  margin-left: 8px;
}

.price-card > p {
  color: var(--muted);
  min-height: 48px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
  display: grid;
  gap: 13px;
}

.price-card li {
  color: #c3c9dc;
  font-size: .9rem;
}

.price-card li::before {
  content: "✓";
  display: inline-block;
  color: #77a1ff;
  margin-right: 10px;
  font-weight: 900;
}

.pricing-note {
  text-align: center;
  color: #686f8a;
  font-size: .75rem;
  margin-top: 20px;
}

.how-card {
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 50px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  background: rgba(255,255,255,.017);
}

.step > span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #9eb4ff;
  background: rgba(67, 105, 255, .08);
  border: 1px solid rgba(83, 100, 255, .16);
  font-size: .69rem;
  letter-spacing: .08em;
}

.step h3 {
  margin: 1px 0 5px;
  font-size: .98rem;
}

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

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  padding: 25px 2px;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: #8d9fff;
  font-size: 1.3rem;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.faq[open] summary::after {
  content: "–";
}

.faq p {
  margin: -4px 0 25px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.final-cta {
  padding: 30px 0 120px;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 30px;
  border: 1px solid rgba(113, 97, 255, .25);
  background:
    radial-gradient(circle at 80% 15%, rgba(70, 94, 255, .18), transparent 38%),
    radial-gradient(circle at 20% 120%, rgba(150, 68, 255, .13), transparent 45%),
    rgba(16, 18, 40, .7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-cta p {
  margin: 0;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 5, 12, .72);
  padding: 55px 0 32px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 420px;
  font-size: .85rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 23px;
  color: #929bb8;
  font-size: .85rem;
}

.disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #626a84;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  font-size: .72rem;
}

.disclaimer p {
  max-width: 820px;
  line-height: 1.65;
  margin: 0;
}

.disclaimer strong {
  color: #8b93ad;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-one {
  transition-delay: .1s;
}

.delay-two {
  transition-delay: .2s;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 90px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

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

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-copy {
    max-width: 650px;
  }

  .how-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(8, 9, 24, .96);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 75px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-logo-card {
    width: 92%;
    padding: 30px;
  }

  .logo-orbit {
    width: 390px;
    height: 390px;
  }

  .floating-chip {
    transform: scale(.88);
  }

  .chip-a { left: -4px; }
  .chip-b { right: -4px; }
  .chip-c { right: 0; }

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

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .preview-section {
    overflow: hidden;
  }

  .terminal {
    width: 100%;
  }

  .chart {
    height: 285px;
  }

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

  .dashboard div:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .dashboard div:nth-child(2n) {
    border-right: 0;
  }

  .how-card {
    padding: 27px;
  }

  .final-cta-inner,
  .footer-grid,
  .disclaimer {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 480px) {
  .brand span {
    font-size: .95rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .floating-chip {
    font-size: .8rem;
  }

  .chip-a {
    top: 23%;
  }

  .chip-b {
    top: 12%;
  }

  .chip-c {
    bottom: 14%;
  }

  .stats-grid strong {
    font-size: 1.4rem;
  }

  .grade {
    width: 44px;
    height: 44px;
  }

  .price-card {
    padding: 25px;
  }

  .final-cta-inner {
    padding: 32px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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


/* =========================================================
   RESULTS / TESTIMONIALS
========================================================= */
.results-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.result-card { overflow:hidden; border:1px solid rgba(255,255,255,.09); border-radius:24px; background:linear-gradient(145deg, rgba(77,89,255,.06), rgba(255,255,255,.015)); transition:transform .25s ease, border-color .25s ease; }
.result-card:hover { transform:translateY(-5px); border-color:rgba(118,93,255,.4); }
.result-image { width:100%; aspect-ratio:16 / 10; overflow:hidden; background:#080a18; }
.result-image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.result-card:hover .result-image img { transform:scale(1.025); }
.result-content { padding:23px; }
.result-grade { display:inline-flex; padding:6px 10px; border-radius:999px; background:linear-gradient(90deg, rgba(63,109,255,.15), rgba(133,87,255,.15)); border:1px solid rgba(117,99,255,.25); color:#9eb6ff; font-size:.66rem; font-weight:800; letter-spacing:.1em; }
.result-content h3 { margin:17px 0 9px; font-size:1.08rem; }
.result-content p { color:var(--muted); line-height:1.65; font-size:.88rem; }
.testimonial-card { padding:28px; display:flex; flex-direction:column; justify-content:center; min-height:100%; }
.quote-mark { font-family:Georgia, serif; font-size:5rem; line-height:.7; color:#7c64ff; opacity:.55; }
.testimonial-card blockquote { margin:22px 0 28px; color:#dce1f5; font-size:1.04rem; line-height:1.75; }
.testimonial-user { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:43px; height:43px; border-radius:50%; display:grid; place-items:center; font-weight:800; background:linear-gradient(135deg,#416dff,#8c56ff); }
.testimonial-user strong { display:block; font-size:.87rem; }
.testimonial-user span { display:block; color:var(--muted); margin-top:3px; font-size:.73rem; }
.results-disclaimer { max-width:720px; margin:25px auto 0; text-align:center; color:#69718e; font-size:.72rem; line-height:1.6; }
@media (max-width: 900px) { .results-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 620px) { .results-grid { grid-template-columns:1fr; } }
