@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --surface: rgba(15, 23, 42, 0.78);
  --surface-strong: #111827;
  --line: rgba(148, 163, 184, 0.24);
  --line-strong: rgba(148, 163, 184, 0.4);
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #a855f7;
  --accent-2: #6366f1;
  --accent-soft: #c084fc;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% -5%, rgba(168, 85, 247, 0.28), transparent 42%),
    radial-gradient(circle at 82% 2%, rgba(99, 102, 241, 0.24), transparent 46%),
    radial-gradient(circle at 50% 120%, rgba(168, 85, 247, 0.16), transparent 44%),
    linear-gradient(170deg, #020617 0%, #0b1120 55%, #111827 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 20%, black 24%, transparent 78%);
}

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

a:hover {
  color: var(--accent-soft);
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 68px 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

h3 {
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
}

.lead {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 68ch;
}

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

.small {
  font-size: 0.88rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #e9d5ff;
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(168, 85, 247, 0.14);
  width: fit-content;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.72);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand:hover {
  color: #ffffff;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 32px rgba(168, 85, 247, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.actions {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  border-color: rgba(216, 180, 254, 0.32);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(168, 85, 247, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(168, 85, 247, 0.45);
}

.btn-ghost {
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.28);
}

.btn-ghost:hover {
  border-color: rgba(216, 180, 254, 0.5);
  background: rgba(51, 65, 85, 0.72);
}

.hero {
  padding: 96px 0 62px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.16), transparent 48%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

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

.trust-pill {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.83rem;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.66);
}

.hero-card {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.92));
  box-shadow: 0 28px 65px rgba(2, 6, 23, 0.62), 0 0 0 1px rgba(192, 132, 252, 0.14);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.22), transparent 38%);
}

.hero-card img {
  width: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.62);
}

.trust-row {
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.68);
}

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

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

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.88), rgba(15, 23, 42, 0.84));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.2), transparent 38%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.card:hover::before {
  opacity: 1;
}

.card p {
  margin: 10px 0 0;
  color: #cbd5e1;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #e9d5ff;
  border: 1px solid rgba(168, 85, 247, 0.55);
  background: rgba(168, 85, 247, 0.2);
}

.workflow {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(15, 23, 42, 0.86));
}

.flow {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin: 20px 0 16px;
}

.flow-step {
  min-width: min(440px, 90%);
  text-align: center;
  border-radius: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(30, 41, 59, 0.66);
  color: #e2e8f0;
}

.arrow {
  color: #c084fc;
  font-weight: 700;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shot {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.88);
}

.shot figcaption {
  font-size: 0.84rem;
  color: #cbd5e1;
  border-top: 1px solid var(--line);
  padding: 10px 12px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.78);
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-item p {
  margin: 8px 0 0;
  color: #cbd5e1;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 22px;
  border: 1px solid rgba(168, 85, 247, 0.45);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.24), transparent 40%),
    linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  padding: 30px;
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
}

th,
td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

th {
  font-family: Sora, Inter, sans-serif;
  background: rgba(51, 65, 85, 0.5);
}

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

.field {
  display: grid;
  gap: 6px;
}

label {
  font-size: 0.85rem;
  color: #dbe4f5;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 11px 12px;
  font: inherit;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.84);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(216, 180, 254, 0.9);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

main ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

main li + li {
  margin-top: 6px;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 74px;
  padding: 30px 0 40px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.page-head {
  padding: 78px 0 38px;
}

.page-head p {
  max-width: 760px;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .shot-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 84px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 8px 10px;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 14px 4vw 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a::after {
    bottom: -4px;
  }

  .nav .actions .btn-ghost {
    display: none;
  }

  .flow-step {
    min-width: 100%;
  }

  .cta-panel {
    padding: 24px;
  }
}
