:root {
  --bg: #08090c;
  --bg-alt: #101218;
  --surface: rgba(18, 21, 28, 0.94);
  --surface-strong: #171b22;
  --line: #2d333d;
  --text: #f4f7fb;
  --muted: #a9b2bf;
  --accent: #c53a3a;
  --accent-strong: #e24d4d;
  --accent-soft: rgba(197, 58, 58, 0.15);
  --max-width: 72rem;
  --radius: 1.2rem;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Aptos", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(197, 58, 58, 0.18), transparent 28rem),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.05), transparent 22rem),
    linear-gradient(180deg, #050608 0%, #0a0d12 45%, #090b0f 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

main {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #1b1f27, #0f1217);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-family: "Bahnschrift SemiBold", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-text {
  min-width: 0;
}

.brand-text strong,
h1,
h2,
h3 {
  font-family: "Bahnschrift SemiBold", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(13, 16, 22, 0.98);
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 0.35rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 30px rgba(197, 58, 58, 0.22);
  color: #fff;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(197, 58, 58, 0.28);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  color: var(--text);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
}

.hero,
.page-hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #cfd6df;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.hero-copy p,
.page-hero p,
.section-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-card,
.card,
.info-card,
.cta-panel,
.notice,
.quote-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 25, 33, 0.95), rgba(12, 15, 20, 0.95));
  box-shadow: var(--shadow);
}

.hero-card,
.info-card,
.notice,
.quote-panel {
  padding: 1.4rem;
}

.hero-card h2,
.info-card h3,
.card h3,
.cta-panel h2,
.quote-panel h2,
.section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.hero-card p,
.info-card p,
.card p,
.cta-panel p,
.notice p,
.quote-panel p,
li {
  color: var(--muted);
}

.stat-list,
.trust-band,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffe3e3;
  font-size: 0.9rem;
}

.trust-band {
  padding: 1.25rem 0 0;
}

.trust-item {
  flex: 1 1 14rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: #dbe3eb;
}

.section,
.section-alt {
  padding: 3.4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

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

.card-grid,
.info-grid,
.steps {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.3rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: #f7cbcb;
  font-weight: 600;
}

.checklist,
.feature-list,
.detail-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.checklist li,
.feature-list li,
.detail-list li {
  position: relative;
  padding-left: 1.45rem;
}

.checklist li::before,
.feature-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 0.3rem rgba(226, 77, 77, 0.14);
  transform: translateY(-50%);
}

.cta-panel {
  padding: 1.75rem;
}

.quote-panel {
  position: relative;
  overflow: hidden;
}

.quote-panel::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 58, 58, 0.22), transparent 70%);
}

.steps {
  counter-reset: step;
}

.step {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.step h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.65rem;
}

.step h3::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #ffe8e8;
  font-size: 0.9rem;
}

.form-shell {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 25, 33, 0.98), rgba(10, 13, 17, 0.98));
  box-shadow: var(--shadow);
}

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

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  color: #e7ecf3;
  font-weight: 600;
}

.field-group .optional {
  color: var(--muted);
  font-weight: 400;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.field-group select {
  color-scheme: dark;
}

.field-group select option {
  color: #101218;
  background: #ffffff;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: 2px solid rgba(226, 77, 77, 0.45);
  outline-offset: 2px;
  border-color: rgba(226, 77, 77, 0.6);
}

.field-group textarea {
  min-height: 10rem;
  resize: vertical;
}

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

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: #f9d3d3;
}

.form-status.is-success {
  color: #cfe8d5;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-meta {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

@media (min-width: 720px) {
  .hero-grid,
  .split,
  .card-grid,
  .info-grid,
  .steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-grid .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.8fr);
    align-items: center;
  }

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

  .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
    gap: 1.4rem;
    align-items: end;
  }

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