:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --fg: #F5F0E8;
  --fg-muted: #8A8680;
  --accent: #E8A838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --card-bg: rgba(255,255,255,0.03);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.8);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--fg); text-decoration: none; letter-spacing: -0.5px; }
.nav-tagline { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.meta-tag {
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Hero Right */
.hero-right { position: relative; }
.hero-atmosphere { position: relative; }
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,168,56,0.15) 0%, transparent 70%);
  top: -40px; right: 0;
}
.glow-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
  bottom: 40px; right: 80px;
}
.hero-quote-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  position: relative;
}
.quote-mark { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.quote-text { font-size: 15px; color: var(--fg); font-style: italic; margin-bottom: 8px; }
.quote-attr { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.draft-card-stack { display: flex; flex-direction: column; gap: 10px; }
.draft-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.card-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); min-width: 80px; }
.card-content { font-size: 13px; color: var(--fg); }
.card-status { display: flex; align-items: center; gap: 8px; color: #6FD8A0; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #6FD8A0; box-shadow: 0 0 6px #6FD8A0; }

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

/* WORK */
.work { padding: 100px 48px; border-top: 1px solid var(--border); }
.work-inner { max-width: 1400px; margin: 0 auto; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.work-item { padding: 40px; background: var(--bg); border: 1px solid var(--border); }
.work-number { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: rgba(232,168,56,0.2); margin-bottom: 16px; }
.work-title { font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.work-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* DIFFERENCE */
.difference { padding: 100px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.difference-inner { max-width: 1400px; margin: 0 auto; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.diff-headline { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.diff-headline em { font-style: italic; color: var(--accent); }
.diff-sub { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.diff-table { width: 100%; }
.diff-row { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.diff-header-row { font-weight: 600; color: var(--fg-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.diff-col { color: var(--fg-muted); }
.diff-strike { text-decoration: line-through; color: rgba(138,134,128,0.4); }
.diff-col-active { color: var(--accent); font-weight: 500; }
.diff-label { color: var(--fg) !important; }

/* HOW IT WORKS */
.howitworks { padding: 100px 48px; }
.howitworks-inner { max-width: 1400px; margin: 0 auto; }
.process-list { display: flex; flex-direction: column; }
.process-item { display: grid; grid-template-columns: 0px 1fr 1fr; gap: 48px; align-items: center; }
.process-connector { width: 1px; background: linear-gradient(to bottom, var(--accent), transparent); align-self: stretch; margin: 0 auto; }
.last .process-connector { display: none; }
.process-phase { padding-bottom: 48px; }
.phase-num { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 10px; }
.phase-title { font-size: 22px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.phase-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.process-visual { padding-bottom: 48px; }
.visual-block { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; font-size: 13px; }
.vb-1 { display: flex; flex-direction: column; gap: 8px; color: var(--fg-muted); }
.vb-1 span { color: var(--fg); }
.output-row { display: flex; align-items: center; gap: 10px; color: var(--fg); margin-bottom: 8px; }
.output-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.asset-row { display: flex; align-items: center; gap: 10px; color: var(--fg); margin-bottom: 8px; }
.asset-icon { color: var(--accent); font-size: 10px; }

/* CLOSING */
.closing { padding: 120px 48px; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; position: relative; z-index: 1; }
.closing-headline { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5vw, 72px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 28px; }
.closing-headline em { font-style: italic; color: var(--accent); }
.closing-body { font-size: 18px; color: var(--fg-muted); max-width: 560px; line-height: 1.7; }
.closing-atmosphere { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.closing-orb { width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(232,168,56,0.1) 0%, transparent 70%); filter: blur(60px); }

/* FOOTER */
footer { padding: 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--fg); }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-meta { font-size: 12px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.footer-sep { color: var(--border); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 42px; }
  .work { padding: 60px 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .difference { padding: 60px 24px; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .diff-headline { font-size: 36px; }
  .howitworks { padding: 60px 24px; }
  .process-item { grid-template-columns: 1fr; gap: 16px; }
  .process-connector { display: none; }
  .closing { padding: 80px 24px; }
  footer { padding: 40px 24px; }
}
