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

:root {
  --bg: #0a1628;
  --surface: #0f1e35;
  --surface2: #162440;
  --fg: #f0ece4;
  --fg-muted: #8a9ab5;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --border: rgba(240, 236, 228, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, 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: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav-status {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.5;
}
.target-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
}
.target-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.target-info { flex: 1; }
.target-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.target-role {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 1px;
}
.target-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5ecf8a;
  background: rgba(94, 207, 138, 0.08);
  border: 1px solid rgba(94, 207, 138, 0.15);
  border-radius: 20px;
  padding: 4px 10px;
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5ecf8a;
  animation: pulse 2s ease-in-out infinite;
}

/* ── CHANNELS ── */
.channels {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.channels-inner { max-width: 1100px; margin: 0 auto; }
.channels-header { margin-bottom: 56px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 520px;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.channel-item {
  background: var(--surface);
  padding: 28px 32px;
  transition: background 0.2s;
}
.channel-item:hover { background: var(--surface2); }
.channel-icon {
  color: var(--gold);
  margin-bottom: 14px;
}
.channel-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.channel-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  font-family: 'DM Mono', 'Fira Mono', monospace;
  font-size: 13px;
}

/* ── PROCESS ── */
.process {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 64px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.closing-cta p {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-headline { font-size: 52px; }
  .hero-sub { font-size: 16px; }
  .channels { padding: 60px 20px; }
  .channels-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 20px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .step-num { font-size: 36px; }
  .closing { padding: 80px 20px; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .target-card { flex-wrap: wrap; }
  .target-status { margin-top: 8px; }
}