:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --fg: #faf7f2;
  --fg-muted: #9a9a8a;
  --fg-dim: #5a5a4a;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --accent-glow: rgba(245,158,11,0.25);
  --card-border: rgba(250,247,242,0.08);
  --card-bg: #0f0f0f;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo svg { flex-shrink: 0; }

.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 0;
}

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}

.hero-meta {
  font-size: 13px;
  color: var(--fg-dim);
  max-width: 360px;
  line-height: 1.6;
}

/* Hero visual — forge block */
.hero-visual { position: relative; z-index: 2; }

.forge-block {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
  height: 340px;
  overflow: hidden;
}

.forge-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
}

.forge-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.fcard {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}

.fcard:hover { border-color: var(--accent); }

.fcard-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.fcard-status {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}

.fcard-2 .fcard-status { color: #22c55e; }
.fcard-4 .fcard-status { color: #60a5fa; }

.forge-label {
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* MANIFESTO */
.manifesto {
  padding: 120px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

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

.manifesto-overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.manifesto-statement {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 700px;
}

.manifesto-statement strong { color: var(--accent); }

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin-bottom: 72px;
}

.manifesto-body p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

.manifesto-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--card-border);
  padding-top: 48px;
}

.mstat { padding: 0 40px 0 0; }
.mstat:first-child { padding-left: 0; }

.mstat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.mstat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 200px;
}

/* STACK */
.stack {
  padding: 120px 48px;
}

.stack-inner { max-width: 1280px; margin: 0 auto; }

.stack-header {
  max-width: 600px;
  margin-bottom: 72px;
}

.stack-overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.stack-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.stack-subhead {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stack-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.stack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.stack-card:hover::before { transform: scaleX(1); }
.stack-card:hover { border-color: rgba(245,158,11,0.3); }

.scard-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.stack-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.stack-card > p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.scard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scard-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.scard-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

/* PROCESS */
.process {
  padding: 120px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.process-inner { max-width: 1280px; margin: 0 auto; }

.process-header { margin-bottom: 72px; }

.process-overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.process-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 500px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pstep {
  flex: 1;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  position: relative;
}

.pstep-connector {
  width: 48px;
  height: 1px;
  background: var(--card-border);
  align-self: center;
  flex-shrink: 0;
  margin: 0 -1px;
}

.pstep-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
}

.pstep-content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pstep-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

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

.closing-badge {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 40px;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 56px;
}

.closing-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.closing-brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}

.closing-brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.closing-brand-loc {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}

/* CONTACT */
.contact {
  padding: 120px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
}

.contact-inner { max-width: 1280px; margin: 0 auto; }

.contact-badge {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 32px;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}

.contact-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-email {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.contact-email:hover { opacity: 0.75; }

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.contact-whatsapp::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #25D366;
  border-radius: 4px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.contact-whatsapp:hover { color: var(--accent); }

.contact-location {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.contact-preferred {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 48px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-dim);
  flex: 1;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-dim);
}

.footer-sep { color: var(--card-border); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 100px 0 60px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 48px; }
  .manifesto { padding: 80px 24px; }
  .manifesto-body { grid-template-columns: 1fr; }
  .manifesto-stat-row { grid-template-columns: 1fr; gap: 32px; }
  .stack { padding: 80px 24px; }
  .stack-grid { grid-template-columns: 1fr; }
  .process { padding: 80px 24px; }
  .process-steps { flex-direction: column; gap: 16px; }
  .pstep-connector { width: 100%; height: 1px; }
  .closing { padding: 100px 24px; }
  .contact { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-wrap: wrap; }
}