﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg-0: #061226;
  --bg-1: #0c1f3e;
  --bg-2: #143664;
  --panel: rgba(14, 31, 58, 0.72);
  --panel-strong: rgba(17, 39, 72, 0.92);
  --line: rgba(142, 182, 235, 0.28);
  --ink: #eef4ff;
  --muted: #9fb8dd;
  --brand: #34e0ff;
  --brand-2: #53ffce;
  --accent: #ffd86a;
  --ok: #2ed17e;
  --bad: #ff6e7a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(130deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

a { color: var(--brand); }

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-1 {
  top: -10rem;
  right: -10rem;
  background: radial-gradient(circle at 30% 30%, var(--brand), transparent 62%);
}

.orb-2 {
  bottom: -12rem;
  left: -12rem;
  background: radial-gradient(circle at 70% 60%, var(--brand-2), transparent 62%);
  animation-duration: 18s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -26px) scale(1.08); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  backdrop-filter: blur(14px);
  background: rgba(6, 18, 38, 0.58);
  border-bottom: 1px solid var(--line);
}

.logo {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.28rem;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: #d6e7ff;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 220ms ease;
}

nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

main {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 26px;
}

.narrow {
  max-width: 820px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 34px;
  margin-bottom: 22px;
  background: linear-gradient(140deg, rgba(14, 42, 81, 0.94), rgba(13, 28, 58, 0.9) 46%, rgba(15, 62, 90, 0.82));
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(52, 224, 255, 0.34), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--brand-2);
  margin: 0 0 10px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.07;
}

.hero p {
  margin: 0 0 18px;
  color: #cfe0ff;
  max-width: 65ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  padding: 11px 16px;
  transition: transform 180ms ease, box-shadow 200ms ease, filter 200ms ease;
}

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

.btn-primary {
  color: #032430;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 26px rgba(12, 172, 206, 0.34);
}

.btn-ghost {
  color: #d7edff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn-small {
  padding: 7px 9px;
  margin-right: 6px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.08);
  color: #e6f1ff;
  border: 1px solid var(--line);
}

.btn-wa {
  background: linear-gradient(135deg, #25d366, #16a34a);
  border: 0;
  color: #f7fff8;
}

.hero-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  padding: 11px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
}

.hero-metrics span {
  color: #d0e4ff;
  font-size: 0.85rem;
}

.panel {
  backdrop-filter: blur(9px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 18px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.panel-head h2 {
  margin: 0;
}

.panel-head a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  border-radius: 14px;
  padding: 12px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card h3 {
  margin: 0 0 9px;
  font-size: 1.04rem;
}

.card p {
  margin: 0 0 6px;
  color: var(--muted);
}

.plan-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan-free {
  background: rgba(186, 198, 218, 0.12);
  color: #d9e6f9;
  border: 1px solid rgba(186, 198, 218, 0.35);
}

.plan-basic {
  background: rgba(126, 142, 165, 0.25);
  color: #d6e5f8;
  border: 1px solid rgba(164, 188, 221, 0.35);
}

.plan-featured {
  background: rgba(83, 255, 206, 0.2);
  color: #bbffe9;
  border: 1px solid rgba(83, 255, 206, 0.5);
}

.plan-premium {
  background: rgba(255, 216, 106, 0.22);
  color: #fff0bf;
  border: 1px solid rgba(255, 216, 106, 0.55);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #d2e6ff;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font: inherit;
}

.password-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.password-field input {
  flex: 1;
}

.toggle-pass {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #e6f1ff;
  border-radius: 10px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.form-grid select option {
  background: #0b1d37;
  color: #f3f9ff;
}

.form-grid select option[value=""] {
  color: #c9ddfb;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(52, 224, 255, 0.2);
}

.form-grid button.btn {
  background: linear-gradient(135deg, var(--accent), #ffefba);
  color: #322405;
}

.full { grid-column: 1 / -1; }
.msg { color: var(--ok); font-weight: 700; }
.small-note { color: var(--muted); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 16px 0; }

.google-wrap {
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 700ms ease forwards;
}

.reveal:nth-of-type(2) { animation-delay: 80ms; }
.reveal:nth-of-type(3) { animation-delay: 150ms; }
.reveal:nth-of-type(4) { animation-delay: 220ms; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  text-align: center;
  padding: 18px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 22px;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }
}

