:root {
  --bg: #0b1220;
  --bg-elevated: #121a2b;
  --bg-soft: #162033;
  --text: #e8eef9;
  --muted: #9aa8c0;
  --line: rgba(232, 238, 249, 0.1);
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --accent-soft: rgba(245, 158, 11, 0.14);
  --success: #34d399;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 24%),
    var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.narrow {
  width: min(760px, calc(100% - 2rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner,
.hero-grid,
.contact-grid,
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  color: #111827;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.logo-mark.small {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent) !important;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.contact-grid,
.split {
  align-items: stretch;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.15rem;
}

.lede,
.section p,
.card p,
.contact-copy p,
.footer-brand p {
  color: var(--muted);
}

.lede {
  font-size: 1.08rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  color: #111827;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

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

.btn-secondary:hover {
  border-color: rgba(232, 238, 249, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points,
.checklist,
.contact-bullets,
.steps,
.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li,
.checklist li,
.contact-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.55rem 0;
  color: var(--muted);
}

.hero-points li::before,
.checklist li::before,
.contact-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero-card,
.card,
.form-shell,
.steps li {
  background: rgba(18, 26, 43, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.08), transparent 40%),
    var(--bg-elevated);
}

.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-card li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hero-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-card strong {
  color: var(--text);
}

.hero-card-note {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.35rem;
  background: var(--bg-elevated);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.checklist {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: var(--bg-elevated);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.section-contact {
  padding-bottom: 5rem;
}

.contact-simple {
  display: grid;
  place-items: center;
}

.contact-copy.center {
  width: min(640px, 100%);
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.08), transparent 40%),
    var(--bg-elevated);
  box-shadow: var(--shadow);
}

.contact-bullets.center-list {
  display: inline-block;
  text-align: left;
  margin: 1rem auto 1.4rem;
}

.contact-email-btn {
  margin-top: 0.25rem;
}

.contact-email-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-email-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer-brand p,
.footer-meta {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  h1 {
    max-width: none;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
