:root {
  --bg: #07090D;
  --surface: #0F1117;
  --surface-2: #161923;
  --accent: #FF6B00;
  --accent-dim: rgba(255, 107, 0, 0.12);
  --fg: #F2EDE8;
  --fg-2: #8A8590;
  --fg-3: #504E57;
  --border: rgba(242, 237, 232, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(7, 9, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(255, 107, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-headline br { display: block; }
.hero-lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 480px;
  font-weight: 300;
}

/* SECTION SHARED */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
  margin-bottom: 20px;
}

/* LOOP SECTION */
.loop-section {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.loop-header {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.loop-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.loop-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fg-3);
  line-height: 1;
}
.step-icon {
  width: 40px;
  height: 40px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
}
.step-desc {
  font-size: 0.875rem;
  color: var(--fg-2);
  line-height: 1.6;
}
.step-connector {
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--accent-dim) 50%, var(--border) 100%);
  align-self: center;
  margin-top: 60px;
}

/* FEATURES */
.features {
  padding: 120px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.features-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-card {
  padding: 48px 40px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.feature-card--large {
  padding: 56px 40px;
}
.feature-accent {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.feature-card--accent {
  background: var(--accent-dim);
  border-left: 2px solid var(--accent);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
}
.feature-body {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.7;
}

/* HOW SECTION */
.how-section {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-header {
  margin-bottom: 60px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
  border-left: 2px solid var(--accent-dim);
}
.how-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
}
.how-desc {
  font-size: 0.875rem;
  color: var(--fg-2);
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.manifesto-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg-2);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* CLOSING */
.closing {
  padding: 120px 48px 140px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-3);
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--fg-3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { order: -1; }
  .hero-headline { font-size: 3.5rem; }
  .loop-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .features-inner { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing-headline br { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .loop-section, .features, .how-section { padding: 80px 24px; }
  .manifesto, .closing { padding: 80px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .br-desktop { display: none; }
}