:root {
  --bg: #07121f;
  --bg-2: #0b1728;
  --card: rgba(13, 31, 51, 0.74);
  --card-2: rgba(15, 39, 67, 0.64);
  --text: #eef7ff;
  --muted: #9fb4c9;
  --line: rgba(155, 220, 255, 0.16);
  --green: #38f58a;
  --cyan: #38d5ff;
  --gold: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(56, 213, 255, 0.18), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(56, 245, 138, 0.13), transparent 30%),
    linear-gradient(180deg, #06101c 0%, #07121f 42%, #050a12 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

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

.page-glow {
  position: fixed;
  pointer-events: none;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .22;
  z-index: 0;
}
.page-glow-1 { background: var(--cyan); top: -180px; left: -180px; }
.page-glow-2 { background: var(--green); right: -220px; top: 220px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 54px);
  backdrop-filter: blur(16px);
  background: rgba(5, 12, 22, .76);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand { display: inline-flex; gap: 12px; align-items: center; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #031017;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(56, 245, 138, .22);
}
.brand strong { display: block; font-size: 15px; letter-spacing: .2px; }
.brand small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }
.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #04131d;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 12px 30px rgba(56, 245, 138, .18);
}

.section {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 44px;
  padding-top: 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}
h1, h2 { margin: 0; letter-spacing: -0.04em; line-height: 0.98; }
h1 { font-size: clamp(44px, 7vw, 82px); margin-top: 16px; max-width: 760px; }
h2 { font-size: clamp(34px, 4.2vw, 58px); }
p { color: var(--muted); line-height: 1.65; font-size: 17px; }
.hero-text { font-size: clamp(18px, 2.2vw, 23px); max-width: 650px; color: #cfe0ef; }
.hero-badges {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}
.limit-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 209, 102, .12);
  border: 1px solid rgba(255, 209, 102, .35);
  color: #ffe19a;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255, 209, 102, .08);
}
.scenario-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(56, 245, 138, .10);
  border: 1px solid rgba(56, 245, 138, .30);
  box-shadow: 0 0 28px rgba(56, 245, 138, .08);
}
.scenario-badge strong {
  color: #aaffcf;
  font-weight: 950;
}
.scenario-badge span {
  color: #9fb4c9;
  font-size: 12px;
  font-weight: 700;
}
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #04131d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 18px 46px rgba(56, 245, 138, .25);
}
.micro-note { color: #7f94a9; font-size: 13px; }

.hero-visual { position: relative; min-height: 460px; display: grid; place-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px 0 0 0;
  border-radius: 44px;
  background:
    linear-gradient(130deg, rgba(56, 213, 255, .18), rgba(56, 245, 138, .1)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 54px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-7deg) rotateX(3deg);
}
.signal-card {
  position: relative;
  width: min(430px, 92vw);
  padding: 20px;
  border-radius: 32px;
  background: rgba(7, 18, 31, .86);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 34px 90px rgba(0,0,0,.42), inset 0 0 0 1px rgba(56, 245, 138, .08);
  backdrop-filter: blur(20px);
}
.signal-top { display: flex; align-items: center; gap: 12px; color: #eafff5; font-weight: 900; }
.bot-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: #12283c; color: var(--green); border: 1px solid rgba(56,245,138,.28); }
.pulse-dot { margin-left: auto; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.signal-chart { position: relative; height: 210px; margin: 24px 0; border-radius: 22px; background: linear-gradient(180deg, rgba(56, 245, 138, .08), rgba(56, 213, 255, .02)); overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.signal-chart span { position: absolute; bottom: 18px; width: 12px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--green), rgba(56,245,138,.25)); box-shadow: 0 0 18px rgba(56,245,138,.2); }
.signal-chart span:nth-child(1){ left: 28px; height: 46px; }
.signal-chart span:nth-child(2){ left: 70px; height: 72px; }
.signal-chart span:nth-child(3){ left: 112px; height: 58px; }
.signal-chart span:nth-child(4){ left: 154px; height: 98px; }
.signal-chart span:nth-child(5){ left: 196px; height: 84px; }
.signal-chart span:nth-child(6){ left: 238px; height: 128px; }
.signal-chart span:nth-child(7){ left: 280px; height: 154px; }
.signal-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.signal-chart path { fill: none; stroke: var(--cyan); stroke-width: 4; filter: drop-shadow(0 0 10px rgba(56, 213, 255, .7)); }
.signal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.signal-grid div { padding: 15px; border-radius: 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.signal-grid small { color: var(--muted); display: block; margin-bottom: 4px; }
.signal-grid strong { color: var(--green); font-size: 21px; }

.section-head { display: grid; gap: 14px; margin-bottom: 26px; }
.features-grid, .bot-grid, .reviews-grid { display: grid; gap: 16px; }
.features-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card, .review-card, .mini-panel, .urgency-card, .final-card, .bot-grid div {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 24px; }
.feature-card span { color: var(--green); font-weight: 900; }
.feature-card strong { display: block; margin-top: 28px; font-size: 20px; }
.feature-card p, .bot-grid p { font-size: 15px; margin-bottom: 0; }
.split-section { display: grid; grid-template-columns: 1fr .72fr; gap: 28px; align-items: center; }
.highlight-line { color: #dff4ff; padding-left: 18px; border-left: 3px solid var(--green); }
.mini-panel { padding: 22px; display: grid; gap: 14px; }
.mini-panel-row { display: flex; justify-content: space-between; gap: 16px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.045); }
.mini-panel-row span { color: var(--muted); }
.mini-panel-row b { text-align: right; color: #e9fbff; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.step { padding: 18px; border-radius: 22px; border: 1px solid var(--line); background: var(--card-2); min-height: 150px; }
.step b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: rgba(56,245,138,.12); color: var(--green); margin-bottom: 20px; }
.step p { margin: 0; font-weight: 750; color: #d9e9f6; font-size: 16px; }
.urgency-card, .final-card { padding: clamp(24px, 4vw, 48px); text-align: center; background: linear-gradient(135deg, rgba(56,245,138,.11), rgba(56,213,255,.08)), var(--card); }
.urgency-card p, .final-card p { max-width: 760px; margin-left: auto; margin-right: auto; }
.bot-grid { grid-template-columns: repeat(5, 1fr); }
.bot-grid div { padding: 20px; }
.bot-grid strong { color: #fff; }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.review-card { padding: 20px; }
.review-card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(56,245,138,.7); box-shadow: 0 0 24px rgba(56,245,138,.16); }
.review-card h3 { margin: 14px 0 4px; font-size: 20px; }
.review-card p { font-size: 15px; margin: 0; }
.final-card h2 { margin-bottom: 12px; }
.final-card .micro-note { display: block; margin-top: 14px; }
.footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #6f8193;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer p, .footer a { font-size: 12px; margin: 0; color: #6f8193; }
.footer a { text-decoration: underline; text-underline-offset: 3px; }
.risk-disclaimer { width: 100%; font-size: 9px !important; line-height: 1.25 !important; opacity: .46; margin-top: 4px !important; }

@media (max-width: 960px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 420px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bot-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .header-cta { display: none; }
  .section { width: min(100% - 28px, 1120px); padding: 46px 0; }
  .hero { padding-top: 34px; gap: 24px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero-text { font-size: 17px; }
  .hero-badges { gap: 10px; }
  .limit-badge, .scenario-badge { width: 100%; font-size: 14px; padding: 11px 13px; }
  .btn { width: 100%; min-height: 60px; }
  .cta-row { gap: 10px; }
  .hero-visual { min-height: 360px; }
  .hero-visual::before { border-radius: 30px; inset: 20px 0 0 0; transform: none; }
  .signal-card { width: 100%; padding: 16px; border-radius: 26px; }
  .signal-chart { height: 178px; }
  .features-grid, .steps, .bot-grid { grid-template-columns: 1fr; }
  .step { min-height: auto; display: flex; align-items: center; gap: 16px; }
  .step b { margin-bottom: 0; flex: 0 0 auto; }
  .review-card { display: flex; gap: 16px; align-items: flex-start; }
  .review-card h3 { margin-top: 4px; }
  .footer { display: block; }
  .footer p, .footer a { display: block; margin-bottom: 8px; }
}
