:root {
  --bg: #0b122b;
  --bg2: #111827;
  --panel-border: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --accent: #f59e0b;
  --accent-2: #7dd3fc;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 24%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg2) 100%);
}

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

.wrap {
  width: min(calc(100% - 2rem), var(--maxw));
  margin: 0 auto;
}

.main-wrap { padding: 22px 0 34px; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.88));
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 42px 36px;
  margin-bottom: 26px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.14), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.accent {
  background: linear-gradient(135deg, #fde68a, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p { margin: 0; color: var(--muted); line-height: 1.65; }

.hero-actions,
.cta-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #0f172a;
  background: linear-gradient(135deg, #fbbf24, #7dd3fc);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-card,
.tile,
.section-card,
.flow-step,
.support-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.hero-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.section {
  margin-top: 22px;
}

.section-shell {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.section-heading { margin-bottom: 20px; max-width: 780px; }

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

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

.tile h3 { margin: 0 0 8px; }

.footer {
  margin-top: 24px;
  color: var(--muted-2);
  font-size: 0.95rem;
  text-align: center;
  padding: 12px 0 0;
}

@media (max-width: 1020px) {
  .hero-grid,
  .feature-grid,
  .two-col,
  .flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .main-wrap { padding: 18px 0 34px; }

  .hero,
  .section-shell { padding: 22px 18px; border-radius: 22px; }

  h1 { font-size: 2.35rem; }
}
