:root {
  --bg: #07110f;
  --bg-soft: #0d1d19;
  --panel: #102520;
  --panel-strong: #12312a;
  --text: #effaf6;
  --muted: #a9beb7;
  --line: rgba(239, 250, 246, 0.14);
  --green: #43f0a6;
  --cyan: #65d9ff;
  --amber: #ffd166;
  --danger: #ff7a90;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(67, 240, 166, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(101, 217, 255, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

main {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.trust-line,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #06110e;
}

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #07110f;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-narrow {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 62px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.accent-text {
  display: block;
  color: var(--amber);
}

.hero-lead,
.section-heading p,
.feature p,
.flow-step p,
.plan li,
.faq-list p,
.site-footer p,
.policy-lead {
  color: var(--muted);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #06110e;
  box-shadow: 0 16px 44px rgba(67, 240, 166, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.trust-line {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-line span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

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

.phone {
  position: absolute;
  inset: 30px 64px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(239, 250, 246, 0.2);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    #0b1715;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: auto -20% -18% -20%;
  height: 220px;
  background: linear-gradient(90deg, rgba(67, 240, 166, 0.2), rgba(101, 217, 255, 0.18));
  filter: blur(34px);
}

.phone-top {
  width: 84px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(239, 250, 246, 0.26);
}

.chat-row,
.plan-tile,
.status-message {
  position: relative;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 18px;
}

.chat-row {
  max-width: 82%;
  background: #172b27;
  color: var(--text);
}

.plan-tile {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(67, 240, 166, 0.4);
  background: rgba(67, 240, 166, 0.08);
}

.plan-tile strong {
  color: var(--green);
}

.status-message {
  display: grid;
  align-self: stretch;
  gap: 4px;
  border: 1px solid rgba(101, 217, 255, 0.24);
  background: rgba(101, 217, 255, 0.08);
}

.status-message span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-message strong {
  color: var(--cyan);
}

.status-ring {
  position: relative;
  z-index: 1;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  margin: 10px auto 0;
  border: 2px solid rgba(67, 240, 166, 0.36);
  border-radius: 50%;
  animation: pulse 2.8s ease-in-out infinite;
}

.status-ring span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(239, 250, 246, 0.28);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(67, 240, 166, 0.38), rgba(101, 217, 255, 0.3));
  color: #06110e;
  font-weight: 900;
}

.connection-meta {
  position: relative;
  z-index: 1;
  margin-top: -4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(101, 217, 255, 0.22);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-one {
  inset: 0 24px 0 24px;
}

.orbit-two {
  inset: 72px 0 78px 0;
  animation-duration: 24s;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  border-radius: 24px;
  background: var(--line);
  overflow: hidden;
}

.stats div {
  padding: 28px;
  background: rgba(13, 29, 25, 0.88);
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 32px;
}

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

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.feature-grid,
.plans,
.flow {
  display: grid;
  gap: 18px;
}

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

.feature,
.flow-step,
.plan,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 37, 32, 0.72);
}

.feature {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 900;
}

.flow-section {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, rgba(13, 29, 25, 0.2), rgba(67, 240, 166, 0.06));
}

.flow {
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}

.flow-step {
  padding: 26px;
}

.flow-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--amber);
  color: #1a1400;
  font-weight: 900;
}

.plans-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
}

.plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
}

.plan.highlighted {
  border-color: rgba(67, 240, 166, 0.55);
  background: linear-gradient(180deg, rgba(67, 240, 166, 0.12), rgba(16, 37, 32, 0.74));
  transform: translateY(-14px);
}

.plan p {
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 800;
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 24px;
  padding-left: 20px;
}

.plan .button {
  margin-top: auto;
}

.faq-list {
  display: grid;
  width: min(820px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 78px;
  padding: 34px;
  border: 1px solid rgba(67, 240, 166, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(67, 240, 166, 0.12), rgba(101, 217, 255, 0.08));
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.final-cta .button {
  flex: 0 0 auto;
  min-width: 174px;
  padding-inline: 26px;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 34px max(16px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #050b0a;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  flex-wrap: wrap;
  gap: 18px;
}

.copyright {
  font-size: 14px;
}

.policy-body {
  background: #f4f7f5;
  color: #10201d;
}

.policy-body .site-header {
  background: rgba(244, 247, 245, 0.84);
}

.policy-body .nav,
.policy-body .hero-lead,
.policy-body .policy-lead {
  color: #596b65;
}

.policy-body .header-cta {
  background: #10201d;
  color: #f4f7f5;
}

.policy-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.policy-main h1 {
  color: #10201d;
  font-size: clamp(34px, 6vw, 64px);
}

.policy-card {
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(16, 32, 29, 0.08);
}

.policy-card h2 {
  margin-top: 34px;
  color: #10201d;
  font-size: 28px;
}

.policy-card p {
  color: #31423e;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67, 240, 166, 0.22); }
  50% { box-shadow: 0 0 0 24px rgba(67, 240, 166, 0); }
}

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

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .plans-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 18px;
    min-height: auto;
  }

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

  .phone {
    inset: 20px max(18px, 11vw);
  }

  .feature-grid,
  .flow,
  .plans,
  .stats {
    grid-template-columns: 1fr;
  }

  .plan.highlighted {
    transform: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .section {
    width: calc(100% - 24px);
    padding: 58px 0;
  }

  h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

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

  .phone {
    inset: 8px 0;
    padding: 22px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }
}

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