:root {
  --cream: #F7F6F2;
  --cream-dark: #EEEDEA;
  --cream-darker: #E0DED8;
  --ink: #1A1A1A;
  --ink-soft: #3D3D3A;
  --ink-muted: #6B6B66;
  --ink-faint: #9B9B8E;
  --accent: #2D6B4A;
  --accent-light: #E8F0EB;
  --accent-dark: #1E4A33;
  --white: #FFFFFF;
  --px: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* Layout */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.divider {
  height: 1px;
  background: var(--cream-darker);
  max-width: 720px;
  margin: 0 auto;
}

/* Reveal — staggered scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse */
.pulse {
  animation: pulse-dot 3s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  animation: hero-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo-get { color: var(--ink-faint); }
.logo-headcount { color: var(--accent); }

.hero-sub {
  font-size: 21px;
  color: var(--ink-muted);
  margin-top: 32px;
  max-width: 400px;
  line-height: 1.5;
  font-weight: 400;
  animation: hero-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero .cta {
  animation: hero-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-badge {
  position: absolute;
  bottom: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  animation: hero-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- CTA BUTTON ---- */
.cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 40px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.cta:active {
  transform: translateY(0);
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- SECTIONS ---- */
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 64px;
}

/* ---- STATEMENT ---- */
.statement-headline {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 680px;
}

.statement-body {
  font-size: 18px;
  color: var(--ink-muted);
  margin-top: 48px;
  max-width: 440px;
  line-height: 1.65;
}

.statement-body + .statement-body {
  margin-top: 20px;
}
