/* Fonts */
:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Palette */
  --black: #0D0D1A;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #D1D5DB;

  /* Sizing */
  --max-w: 1200px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --pad-section: clamp(4rem, 10vw, 8rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--pad-x);
  background: rgba(13,13,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.6;
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.nav__link:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--amber);
}

/* HERO */
.hero {
  background: var(--black);
  color: #fff;
  padding: clamp(7rem, 15vw, 10rem) var(--pad-x) var(--pad-section);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--amber-light);
}
.hero__lede {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 44ch;
}
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}
.hero__card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.hero__code {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--amber-light);
  line-height: 1.6;
  white-space: pre;
}
.hero__card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--amber);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.hero__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero__list li {
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__list li::before {
  content: '→';
  color: var(--amber);
  font-weight: 600;
}

/* SECTION SHARED */
.section__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

/* WHAT YOU GET */
.whatyouget {
  background: var(--cream);
  padding: var(--pad-section) var(--pad-x);
}
.whatyouget__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.whatyouget__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.whatyouget__item {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatyouget__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13,13,26,0.08);
}
.whatyouget__icon {
  width: 48px; height: 48px;
  background: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.whatyouget__item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.whatyouget__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--black);
  color: #fff;
  padding: var(--pad-section) var(--pad-x);
}
.philosophy__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
  border-left: 3px solid var(--amber);
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
.philosophy__attribution {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  padding-left: 2rem;
}
.philosophy__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.philosophy__body {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* TOOLS */
.tools {
  background: var(--cream-dark);
  padding: var(--pad-section) var(--pad-x);
}
.tools__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 3rem;
}
.tools__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(13,13,26,0.08);
}
.tools__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  background: var(--cream);
  padding: var(--pad-section) var(--pad-x);
  text-align: center;
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.closing__body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 55ch;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: #fff;
  padding: 3rem var(--pad-x);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--amber);
}
.footer__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero__inner,
  .philosophy__inner { grid-template-columns: 1fr; gap: 3rem; }
  .whatyouget__grid,
  .tools__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 1rem; text-align: center; }
  .nav__tagline { display: none; }
  .hero { padding-top: 6rem; }
}