*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8B6E2F;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --text: #E8E4DC;
  --muted: #888880;
  --white: #F5F2EA;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* -- NAV -- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
}

.nav-logo {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0A0A0A 0%, #111111 50%, #0D0D0D 100%);
}

.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 55%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3) 30%, rgba(201,168,76,0.3) 70%, transparent);
  display: none;
}

@media(min-width: 900px) { .hero-line { display: block; } }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media(min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-proof {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.proof-item { border-left: 2px solid var(--gold-dim); padding-left: 1rem; }

.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.2s;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-cta-btn:hover { background: var(--gold-light); }

/* -- CAPTURE CARD -- */
.capture-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.capture-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.checklist { list-style: none; margin-bottom: 1.8rem; }

.checklist li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.checklist li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.form-row { display: flex; flex-direction: column; gap: 0.75rem; }

.form-input {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder { color: var(--muted); }
.form-input:focus { border-color: var(--gold-dim); }

.form-btn {
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
}

.form-btn:hover { background: var(--gold-light); }
.form-btn:active { transform: scale(0.99); }
.form-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.form-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }

/* -- SUCCESS STATE -- */
.success-state { display: none; text-align: center; padding: 1rem 0; }
.success-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.success-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.5rem; }
.success-text { font-size: 0.85rem; color: var(--muted); }

/* -- SECTIONS -- */
.section { position: relative; z-index: 1; padding: 6rem 2rem; }
.section-inner { max-width: 900px; margin: 0 auto; }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2rem;
}

/* -- TIMELINE -- */
.timeline { position: relative; padding-left: 2rem; border-left: 1px solid rgba(201,168,76,0.2); margin: 3rem 0; }

.timeline-item { position: relative; padding-bottom: 2.5rem; padding-left: 1.5rem; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-age {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.timeline-event { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.timeline-event strong { color: var(--white); font-weight: 500; }

/* -- KIT GRID -- */
.kit-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 2rem 0; }

@media(min-width: 600px) { .kit-grid { grid-template-columns: 1fr 1fr; } }

.kit-item {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}

.kit-item:hover { border-color: rgba(201,168,76,0.35); }

.kit-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.kit-name { font-weight: 500; color: var(--white); font-size: 0.95rem; margin-bottom: 0.4rem; }
.kit-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* -- QUOTE -- */
.big-quote { border-left: 3px solid var(--gold); padding: 1.5rem 2rem; margin: 3rem 0; background: rgba(201,168,76,0.04); }

.big-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.big-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* -- ABOUT -- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }

@media(min-width: 800px) { .about-grid { grid-template-columns: 1fr 2fr; } }

.about-sidebar { position: sticky; top: 6rem; }

.about-badge { background: var(--dark2); border: 1px solid rgba(201,168,76,0.2); padding: 1.5rem; text-align: center; }

.about-initials { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.about-name { font-size: 0.85rem; color: var(--white); font-weight: 500; letter-spacing: 0.05em; }

.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.about-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.3rem 0.6rem;
}

.about-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem; }
.about-text p strong { color: var(--text); font-weight: 500; }

/* -- BOTTOM CTA -- */
.bottom-cta {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bottom-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-cta-sub { font-size: 0.95rem; color: var(--muted); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; }

.bottom-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 420px; margin: 0 auto; }

@media(min-width: 500px) {
  .bottom-form { flex-direction: row; gap: 0; }
  .bottom-form .form-input { flex: 1; }
  .bottom-form .form-btn { width: auto; white-space: nowrap; padding: 0.9rem 1.5rem; }
}

/* -- FOOTER -- */
footer { position: relative; z-index: 1; padding: 2rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }

footer p { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; }
footer a { color: var(--gold-dim); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* -- DIVIDER -- */
.gold-divider { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* -- ANIMATIONS -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -- CARD PULSE -- */
@keyframes cardPulse {
  0% { border-color: rgba(201,168,76,0.2); box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  30% { border-color: rgba(201,168,76,0.8); box-shadow: 0 0 30px rgba(201,168,76,0.3); }
  100% { border-color: rgba(201,168,76,0.2); box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

.card-pulse {
  animation: cardPulse 1.2s ease !important;
}

.card-pulse .form-input {
  border-color: rgba(201,168,76,0.5) !important;
}
