/* Recaptra — landing page styles
   Brand: deep navy + cyan→blue gradient. Font: Inter. */

:root {
  --navy-900: #060f22;
  --navy-800: #0a1730;
  --navy-700: #0f2143;
  --navy-600: #16294f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --cyan: #35c9f0;
  --blue: #2f6bff;
  --indigo: #1e40af;

  --text: #eaf1fb;
  --muted: #9db0d0;
  --muted-2: #7188ac;

  --grad: linear-gradient(120deg, #35c9f0 0%, #2f6bff 55%, #1e40af 100%);
  --grad-soft: linear-gradient(120deg, rgba(53, 201, 240, 0.16), rgba(47, 107, 255, 0.16));

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --maxw: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.4em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ── Brand mark ─────────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-logo { height: 80px; width: auto; display: block; }
.brand-logo-lg { height: 72px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad);
  color: #061021;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px -6px rgba(47, 107, 255, 0.7);
}
.brand-word {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #eaf1fb, #bcd2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad);
  color: #04101f;
  box-shadow: 0 12px 30px -12px rgba(47, 107, 255, 0.8);
}
.btn-primary:hover { box-shadow: 0 16px 38px -12px rgba(47, 107, 255, 0.95); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); }
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 15, 34, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a:not(.btn) { color: var(--muted); font-weight: 500; transition: color 0.15s ease; }
.nav-menu a:not(.btn):hover { color: var(--text); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 56px;
  background:
    radial-gradient(1000px 500px at 78% -8%, rgba(47, 107, 255, 0.22), transparent 60%),
    radial-gradient(720px 420px at 8% 10%, rgba(53, 201, 240, 0.14), transparent 60%),
    var(--navy-900);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--grad-soft);
  border: 1px solid var(--line-strong);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.lede { font-size: 1.18rem; color: #cdd9ee; max-width: 34ch; }
.hero-copy .lede { max-width: 46ch; }
.sub-lede { font-size: 1.05rem; color: var(--muted); font-style: italic; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 16px; }
.hero-note { font-size: 0.9rem; color: var(--muted-2); }

/* Phone mock */
.hero-visual { display: grid; place-items: center; }
.phone {
  position: relative;
  width: 300px;
  max-width: 80vw;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  padding: 22px 16px 20px;
  box-shadow: var(--shadow);
}
.phone-notch {
  width: 120px;
  height: 22px;
  background: var(--navy-900);
  border-radius: 0 0 14px 14px;
  margin: -22px auto 16px;
}
.chat { display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
}
.bubble.in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--muted);
}
.bubble.out {
  align-self: flex-end;
  background: var(--grad);
  color: #04101f;
  font-weight: 500;
}
.chat-tag {
  align-self: center;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cyan);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 12px;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.86rem; color: var(--muted); }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: clamp(56px, 8vw, 92px) 0; }
.section-alt { background: var(--navy-800); border-block: 1px solid var(--line); }
.section-title { text-align: center; max-width: 20ch; margin-inline: auto; }
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 44px;
  font-size: 1.05rem;
}

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card p { color: var(--muted); margin-bottom: 0; }
.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.card-feature { padding: 32px 30px; }
.tier-note {
  margin-top: 14px !important;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 12px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: #04101f;
  font-weight: 800;
  margin-bottom: 16px;
}
.step p { color: var(--muted); margin-bottom: 0; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing { align-items: stretch; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.plan-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--navy-800), var(--navy-800)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 60px -30px rgba(47, 107, 255, 0.8);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #04101f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.plan-name { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; }
.plan-price { font-size: 1.1rem; color: var(--muted); margin-bottom: 20px; }
.plan-price span { font-size: 2.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.plan-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.pricing-note { text-align: center; color: var(--muted); margin-top: 30px; font-size: 0.95rem; }

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(47, 107, 255, 0.25), transparent 65%),
    var(--navy-900);
}
.cta-inner { text-align: center; }
.cta-inner h2 { max-width: 22ch; margin: 0 auto 28px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); padding: 46px 0; background: var(--navy-900); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: start;
}
.footer-tag { color: var(--muted); margin-top: 12px; max-width: 30ch; }
.footer-note p { color: var(--muted); font-size: 0.92rem; }
.footer-copy { color: var(--muted-2); font-size: 0.85rem; margin-bottom: 0; }

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px 24px 22px;
    background: rgba(6, 15, 34, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-menu a:not(.btn) { padding: 8px 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .pricing { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
}
