:root {
  --bg: #050607;
  --surface: #0b0f11;
  --surface-2: #12171a;
  --text: #eef3f5;
  --muted: #9ba8af;
  --line: #1f2a30;
  --accent: #4fffb0;
  --accent-2: #5cf5ff;
  --danger: #ff8a8a;
  --max-width: 1100px;
  --radius: 14px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 80% -10%, rgba(92, 245, 255, 0.13), transparent 40%),
    radial-gradient(circle at -10% 40%, rgba(79, 255, 176, 0.1), transparent 45%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.25rem 0;
}

.section-tight {
  padding: 2.75rem 0;
}

.surface {
  background: linear-gradient(160deg, rgba(18, 23, 26, 0.95), rgba(10, 14, 16, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 7, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 42, 48, 0.65);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.logo span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--text);
  font-size: 0.95rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c8ffeb;
  background: rgba(79, 255, 176, 0.12);
  border: 1px solid rgba(79, 255, 176, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text);
}

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

.hero {
  display: grid;
  gap: 1.4rem;
  position: relative;
}

.hero-copy p {
  font-size: 1.02rem;
  color: #d8e1e5;
}

.hero-panel {
  padding: 1.2rem;
  animation: riseIn 0.7s ease both;
  animation-delay: 0.12s;
}

.hero-highlights {
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #d7fce9;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #001e11;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.05rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #03211c;
}

.btn-primary:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  text-decoration: none;
}

.btn-sm {
  padding: 0.55rem 0.8rem;
  font-size: 0.87rem;
}

.inline-cta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.lead-form {
  display: grid;
  gap: 0.75rem;
}

.lead-form-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

input,
select {
  width: 100%;
  color: var(--text);
  background: #0b1114;
  border: 1px solid #233138;
  border-radius: 10px;
  padding: 0.82rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus,
select:focus {
  outline: 2px solid rgba(79, 255, 176, 0.34);
  border-color: rgba(79, 255, 176, 0.65);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.form-success {
  margin: 0;
  color: #afffd6;
  font-size: 0.86rem;
}

.form-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.86rem;
}

.honeypot,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 0.95rem;
}

.card {
  padding: 1.05rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(15, 20, 23, 0.95), rgba(12, 16, 18, 0.95));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(92, 245, 255, 0.45);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 0.45rem;
}

.steps .card span {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-strip {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.proof-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem;
  background: rgba(12, 16, 18, 0.85);
}

.stats {
  display: grid;
  gap: 0.8rem;
}

.stat {
  border: 1px solid rgba(79, 255, 176, 0.23);
  border-radius: 12px;
  padding: 0.95rem;
  background: rgba(79, 255, 176, 0.06);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  text-align: left;
  padding: 0.82rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: rgba(92, 245, 255, 0.07);
  color: #d5faff;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag {
  display: inline-block;
  border: 1px solid #3b4d56;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  color: #c7d6dd;
}

.article {
  max-width: 780px;
}

.article p,
.article li {
  color: #dce5e9;
}

.article ul {
  margin: 0.5rem 0 1rem 1.2rem;
}

.article .cta-block {
  margin-top: 2rem;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}

.footer-copy {
  display: flex;
  gap: 0.7rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

.small {
  font-size: 0.86rem;
}

.kicker {
  color: #b9fceb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.hero-copy {
  animation: riseIn 0.65s ease both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }

  .lead-form-inline {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

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

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

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

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