*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #fff7ed;
  --bg-deep: #111827;
  --surface: #ffffff;
  --surface-warm: #fffaf3;
  --text: #172033;
  --text-inverse: #fff7ed;
  --muted: #6b7280;
  --muted-inverse: #d1d5db;
  --border: #fed7aa;
  --border-dark: rgba(255, 255, 255, 0.16);
  --accent: #f97316;
  --accent-strong: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-glow: rgba(249, 115, 22, 0.28);
  --shadow: 0 1px 2px rgba(17, 24, 39, 0.07);
  --shadow-md: 0 10px 24px rgba(17, 24, 39, 0.1);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(249, 115, 22, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(251, 191, 36, 0.22), transparent 22rem),
    var(--bg);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 24, 39, 0.92);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.95rem 0;
}

.logo {
  color: var(--text-inverse);
  font-size: 1.125rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.logo:hover {
  color: #ffedd5;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-nav a {
  color: var(--muted-inverse);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9375rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-dark);
}

main {
  flex: 1;
  padding-bottom: 3.75rem;
}

.hero {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 72% 38%, rgba(249, 115, 22, 0.32), transparent 17rem),
    linear-gradient(135deg, #111827 0%, #1f2937 48%, #431407 100%);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: 28rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 22rem;
  }
}

.hero-copy {
  max-width: 42rem;
}

.hero-eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(251, 146, 60, 0.5);
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.12);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1.125rem;
  max-width: 40rem;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero .lead {
  margin: 0;
  max-width: 39rem;
  color: var(--muted-inverse);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.pulse-panel {
  position: relative;
  min-height: 18rem;
  display: grid;
  place-items: center;
}

.pulse-ring {
  width: min(18rem, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(251, 146, 60, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(249, 115, 22, 0.18) 0 19%, transparent 20% 43%, rgba(249, 115, 22, 0.12) 44% 45%, transparent 46%),
    radial-gradient(circle, rgba(255, 247, 237, 0.14), transparent 62%);
  box-shadow: 0 0 80px var(--accent-glow);
}

.pulse-card {
  position: absolute;
  width: min(16rem, 72vw);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.74);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pulse-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #fdba74;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pulse-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.pulse-card p {
  margin: 0;
  color: var(--muted-inverse);
  font-size: 0.9375rem;
}

.section {
  padding: 3.25rem 0;
}

.section-contrast {
  background: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(254, 215, 170, 0.8);
  border-bottom: 1px solid rgba(254, 215, 170, 0.8);
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step,
.card,
.faq-item,
.disclosure {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step {
  padding: 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover,
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #7c2d12;
  background: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.step h3,
.card h3,
.faq-item h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.25;
}

.step p,
.card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  padding: 1.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq {
  display: grid;
  gap: 0.85rem;
  max-width: 44rem;
}

.faq-item {
  padding: 1.15rem 1.35rem;
}

.disclosure {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border-left: 5px solid var(--accent);
  color: var(--muted);
  font-size: 0.875rem;
}

.disclosure p {
  margin: 0;
}

.site-footer {
  margin-top: auto;
  padding: 1.75rem 0;
  color: var(--muted-inverse);
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dark);
}

.site-footer .inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
}

@media (min-width: 560px) {
  .site-footer .inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.site-footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1rem;
}

.site-footer a {
  color: var(--muted-inverse);
}

.site-footer a:hover {
  color: #fed7aa;
}

.legal-page {
  padding: 2.75rem 0 4rem;
}

.legal-page .container {
  max-width: 46rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.legal-page .updated {
  margin: 0 0 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page section {
  margin-bottom: 1.75rem;
}

.legal-page h2 {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 850;
}

.legal-page p,
.legal-page ul {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.955rem;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.legal-page li:last-child {
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--accent-strong);
  font-weight: 750;
  font-size: 0.9375rem;
}

@media (max-width: 520px) {
  .site-header .inner {
    align-items: flex-start;
  }

  .site-nav a {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition: none !important;
  }

  .step:hover,
  .card:hover {
    transform: none;
  }
}
