:root {
  --bg: #0E0D0C;
  --fg: #F2EFE9;
  --accent: #C9A87C;
  --accent-dim: rgba(201, 168, 124, 0.12);
  --muted: rgba(242, 239, 233, 0.45);
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(242, 239, 233, 0.08);
  --radius: 3px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 124, 0.4);
  padding: 8px 18px;
  border-radius: 2px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.nav-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 88vh;
  padding: 80px 64px;
  gap: 80px;
}
.hero-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 168, 124, 0.3);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 420px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.avatar-orb {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.orb-ring-1 { width: 280px; height: 280px; border-color: rgba(201,168,124,0.18); }
.orb-ring-2 { width: 200px; height: 200px; border-color: rgba(201,168,124,0.12); }
.orb-ring-3 { width: 130px; height: 130px; border-color: rgba(201,168,124,0.08); }
.orb-core {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8c9a0, #c9a87c 40%, #8a6f4a);
  box-shadow: 0 0 40px rgba(201,168,124,0.3), 0 0 80px rgba(201,168,124,0.1);
  position: relative;
  overflow: hidden;
}
.orb-face::before {
  content: '';
  position: absolute;
  top: 30%; left: 20%; width: 60%; height: 35%;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}
.orb-face::after {
  content: '';
  position: absolute;
  bottom: 28%; left: 35%; width: 30%; height: 2px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
}
.orb-shimmer {
  position: absolute;
  top: 20%; left: 25%;
  width: 30px; height: 10px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.avatar-samples {
  display: flex;
  gap: 10px;
}
.sample-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.sample-dot:nth-child(2) { opacity: 0.3; }
.sample-dot:nth-child(3) { opacity: 0.15; }

/* MANIFESTO */
.manifesto {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 64px;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 760px;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.55;
  color: var(--fg);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* FEATURES */
.features {
  padding: 96px 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 48px 44px;
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(255,255,255,0.02); }
.feature-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.2;
}
.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 96px 64px;
  border-top: 1px solid var(--border);
}
.process-header {
  margin-bottom: 64px;
}
.process-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.process-steps {
  display: flex;
  gap: 0;
}
.step {
  flex: 1;
  position: relative;
  padding: 0 40px 0 0;
}
.step-connector {
  position: absolute;
  top: 18px;
  right: 0;
  width: calc(100% - 40px);
  height: 1px;
  background: var(--border);
}
.step:last-child .step-connector { display: none; }
.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  background: var(--bg);
}
.step-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  padding: 36px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 24px 32px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 60px;
    min-height: auto;
  }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 44px; }
  .manifesto { padding: 56px 32px; }
  .features { padding: 64px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 32px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .closing { padding: 80px 32px; }
  .footer { padding: 28px 32px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px; gap: 48px; }
  .hero-headline { font-size: 36px; }
  .manifesto { padding: 48px 24px; }
  .features { padding: 48px 24px; }
  .feature-card { padding: 36px 28px; }
  .process { padding: 48px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
}