*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0B0F19;
  --navy-light: #111827;
  --off-white: #F5F0E8;
  --warm-gray: #A89F91;
  --gold: #C9A84C;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--off-white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--warm-gray);
  max-width: 420px;
  font-weight: 300;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.light-beam {
  position: absolute;
  top: -10%;
  right: 15%;
  width: 3px;
  height: 70%;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6) 0%, rgba(201,168,76,0.1) 60%, transparent 100%);
  border-radius: 2px;
  transform: rotate(8deg);
  z-index: 2;
}
.light-beam::before {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(201,168,76,0.1) 50%, transparent 100%);
  transform: skewX(-15deg);
}
.ambient-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(201,168,76,0.1) 0%, transparent 65%);
  z-index: 2;
}
.visual-stack {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.stack-layer {
  border-radius: 6px;
  position: relative;
}
.layer-1 { width: 260px; height: 52px; background: rgba(245,240,232,0.07); }
.layer-2 { width: 300px; height: 52px; background: rgba(245,240,232,0.09); margin-right: 20px; }
.layer-3 { width: 280px; height: 52px; background: rgba(245,240,232,0.06); margin-right: 10px; }
.layer-4 { width: 240px; height: 52px; background: rgba(245,240,232,0.04); }
.layer-1::after, .layer-2::after, .layer-3::after, .layer-4::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.35), transparent);
}
.hero-visual::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25), transparent);
  z-index: 2;
}
.manifesto {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--navy) 0%, #0D1117 100%);
  border-top: 1px solid rgba(201,168,76,0.08);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--warm-gray);
  letter-spacing: -0.01em;
}
.process { padding: 120px 80px; background: #0D1117; }
.process-header { margin-bottom: 72px; }
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 540px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.process-card { background: #0D1117; padding: 48px 44px; transition: background 0.2s ease; }
.process-card:hover { background: #111827; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-card p { font-size: 14px; line-height: 1.65; color: var(--warm-gray); font-weight: 300; }
.market { padding: 120px 80px; background: var(--navy); border-top: 1px solid rgba(201,168,76,0.06); }
.market .section-label { margin-bottom: 64px; }
.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 40px 32px; background: rgba(245,240,232,0.03); border-radius: 8px; border: 1px solid rgba(201,168,76,0.06); }
.stat-value { display: block; font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--off-white); letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1; }
.stat-label { display: block; font-size: 13px; line-height: 1.55; color: var(--warm-gray); font-weight: 300; }
.close { padding: 160px 80px; background: linear-gradient(180deg, var(--navy) 0%, #080B12 100%); border-top: 1px solid rgba(201,168,76,0.06); text-align: center; }
.close-inner { max-width: 700px; margin: 0 auto; }
.close-text { font-family: var(--font-display); font-size: clamp(24px, 3vw, 42px); font-weight: 700; color: var(--off-white); line-height: 1.25; letter-spacing: -0.02em; }
.footer { padding: 40px 80px; background: #080B12; border-top: 1px solid rgba(201,168,76,0.04); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--off-white); letter-spacing: 0.05em; text-transform: uppercase; }
.footer-tagline { font-size: 12px; color: var(--warm-gray); font-weight: 300; opacity: 0.6; }
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 64px 32px 48px; }
  .hero-visual { height: 280px; }
  .visual-stack { right: 32px; }
  .layer-1 { width: 180px; height: 40px; }
  .layer-2 { width: 220px; height: 40px; }
  .layer-3 { width: 200px; height: 40px; }
  .layer-4 { width: 160px; height: 40px; }
  .manifesto, .process, .market, .close { padding: 80px 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) { .market-grid { grid-template-columns: 1fr; } }