/* Landing page styles (index.html) */
:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: rgba(17, 24, 39, 0.12);
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.10);
  --shadow-sm: 0 10px 30px rgba(17, 24, 39, 0.10);
  --brand: #C8102E;
  --brand-ink: #7a0b1b;
  --radius: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(200, 16, 46, 0.12), transparent 55%),
    radial-gradient(800px 420px at 85% 5%, rgba(17, 24, 39, 0.08), transparent 60%),
    var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand.brand--text .brand-text {
  padding-left: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: rgba(17, 24, 39, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: rgba(17, 24, 39, 0.06);
}

.nav .nav-cta {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(200, 16, 46, 0.22);
}

.nav .nav-cta:hover {
  background: #b30f29;
}

/* Hero */
.hero {
  padding: 52px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 26px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-ink);
  background: rgba(200, 16, 46, 0.10);
  border: 1px solid rgba(200, 16, 46, 0.16);
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0 0 18px;
  color: rgba(17, 24, 39, 0.78);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 34px rgba(200, 16, 46, 0.22);
}

.btn-primary:hover {
  background: #b30f29;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.70);
  color: rgba(17, 24, 39, 0.92);
  border-color: rgba(17, 24, 39, 0.12);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.btn-secondary:hover {
  background: #fff;
}

.btn-block {
  width: 100%;
}

.hero-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-highlights li {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.hero-highlights strong {
  display: block;
  font-size: 0.95rem;
}

.hero-highlights span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 3px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 2px 0 8px;
  letter-spacing: -0.02em;
}

.hero-card p {
  margin: 0 0 14px;
  color: rgba(17, 24, 39, 0.76);
}

.fineprint {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 44px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}

.section-head h2 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: rgba(17, 24, 39, 0.74);
  max-width: 64ch;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card {
  display: block;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 140px;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
  border-color: rgba(200, 16, 46, 0.22);
}

.card h3 {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0 0 10px;
  color: rgba(17, 24, 39, 0.72);
}

.card-link {
  font-weight: 800;
  color: var(--brand-ink);
}

/* Steps */
.steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps li {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.steps h3 {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
}

.process-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* FAQ */
.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

details {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
}

details p {
  margin: 10px 0 0;
  color: rgba(17, 24, 39, 0.72);
}

/* Footer */
.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  color: rgba(17, 24, 39, 0.70);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 900;
  color: rgba(17, 24, 39, 0.88);
}

.footer-sub {
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(17, 24, 39, 0.74);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
}

.footer-links a:hover {
  background: rgba(17, 24, 39, 0.06);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .nav {
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
  .brand-logo {
    width: 60px;
    height: 60px;
  }
  .brand-tagline {
    display: none;
  }
}

