:root {
  --blue: #5b7da3;
  --blue-dark: #4a6a8f;
  --blue-deeper: #2f4560;
  --blue-muted: rgba(91, 125, 163, 0.15);
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.55);
  --radius: 20px;
  --radius-pill: 999px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-hand: "Patrick Hand", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--blue-deeper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(47, 69, 96, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  border-radius: 10px;
  display: block;
}

.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.header-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.badge-ticker {
  background: var(--blue);
  color: var(--white);
}

.badge-ca {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(180deg, var(--blue-deeper) 0%, var(--blue-dark) 50%, var(--blue) 100%);
}

.hero-inner {
  max-width: 640px;
  text-align: center;
}

.hero-logo {
  border-radius: 28px;
  margin-bottom: 1.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title-accent {
  font-family: var(--font-hand);
  font-weight: 400;
  color: var(--white);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.scroll-hint {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.scroll-hint:hover {
  color: var(--white);
}

/* Manifesto */

.manifesto {
  padding: 5rem 1.5rem;
  background: var(--blue-deeper);
}

.manifesto-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-line {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.manifesto-emphasis {
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.manifesto-pivot {
  font-family: var(--font-hand);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
}

/* Vision */

.vision {
  padding: 4rem 1.5rem 5rem;
  background: var(--blue-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vision-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.vision p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.vision-closer {
  font-size: 1.15rem !important;
  color: var(--text) !important;
  font-weight: 500;
}

/* How it works */

.how {
  padding: 5rem 1.5rem;
  background: var(--blue-deeper);
}

.how-inner {
  max-width: 560px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.step-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Quote */

.quote {
  padding: 4rem 1.5rem;
  background: var(--blue);
}

.quote blockquote {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.quote p {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA */

.cta {
  padding: 5rem 1.5rem;
  background: var(--blue-deeper);
}

.cta-inner {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

.cta-logo {
  border-radius: 18px;
  margin-bottom: 1.25rem;
}

.cta-ticker {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.cta-ca {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

/* Footer */

.footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .header-badges {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}
