/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c1117;
  --bg-alt: #111827;
  --surface: #16202e;
  --surface-hover: #1c2938;
  --fg: #e8e6e0;
  --fg-muted: #8a949e;
  --fg-subtle: #4a5568;
  --accent: #e8a849;
  --accent-dim: rgba(232, 168, 73, 0.15);
  --border: rgba(232, 168, 73, 0.12);
  --border-hover: rgba(232, 168, 73, 0.3);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

/* ─── Ambient Clock ─── */
.ambient-clock {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  opacity: 0.25;
  z-index: 10;
  pointer-events: none;
}

.clock-face {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  animation: clock-tick 60s linear infinite;
}

.clock-center {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  background: var(--accent);
  border-radius: 2px;
}

.hour-hand {
  width: 1.5px;
  height: 18px;
  transform: translateX(-50%) rotate(105deg);
}

.minute-hand {
  width: 1px;
  height: 26px;
  transform: translateX(-50%) rotate(180deg);
}

@keyframes clock-tick {
  to { transform: rotate(360deg); }
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(232, 168, 73, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(232, 168, 73, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-lede {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 540px;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #0c1117;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: #f5b95e;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 168, 73, 0.3);
}

.hero-price-note {
  font-size: 0.8125rem;
  color: var(--fg-subtle);
  padding-left: 0.25rem;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 7rem 2rem;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.manifesto-quote {
  border-left: 1px solid var(--accent);
  padding-left: 2rem;
}

.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── The Kit ─── */
.thekit {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  position: relative;
}

.thekit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.thekit-inner {
  max-width: 900px;
  margin: 0 auto;
}

.thekit-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 3.5rem;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5px;
  border: 1px solid var(--border);
}

.kit-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: background 0.2s ease;
  position: relative;
  background: var(--bg-alt);
}

.kit-card:hover {
  background: var(--surface);
}

.kit-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.kit-card h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.kit-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Proof ─── */
.proof {
  padding: 7rem 2rem;
  position: relative;
}

.proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.proof-inner {
  max-width: 680px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-top: 0;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.proof-check {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.proof-item p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.proof-item strong {
  color: var(--fg);
  font-weight: 500;
}

/* ─── Closing ─── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.closing::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232, 168, 73, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-time {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 1.5rem;
  margin-top: -1rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-cta {
  display: flex;
  justify-content: center;
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.8125rem;
  color: var(--fg-subtle);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.footer-publisher {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  opacity: 0.5;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .ambient-clock {
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .kit-grid {
    grid-template-columns: 1fr;
  }

  .manifesto, .thekit, .proof, .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .closing-time {
    font-size: 4rem;
  }
}
