:root {
  --bg: #F6F4EE;
  --dark: #0B1523;
  --dark-mid: #111D2E;
  --accent: #B8923A;
  --accent-light: #D4AF6A;
  --text: #1A1A2E;
  --text-light: #7A7A8A;
  --text-inv: #E8E6E0;
  --border: rgba(26,26,46,0.12);
  --border-dark: rgba(184,146,58,0.25);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 238, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--dark);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: -0.5px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184,146,58,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(11,21,35,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 36px;
  max-width: 700px;
}
.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ── MONITOR ─────────────────────────────────────── */
.monitor {
  background: var(--dark);
  color: var(--text-inv);
  padding: 100px 48px;
}
.monitor-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.monitor-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-inv);
  margin-bottom: 20px;
}
.monitor-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(232,230,224,0.6);
  line-height: 1.7;
}
.watch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.watch-card:hover {
  border-color: var(--border-dark);
}
.watch-card-icon {
  margin-bottom: 16px;
}
.watch-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-inv);
  margin-bottom: 10px;
}
.watch-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(232,230,224,0.55);
  line-height: 1.65;
}

/* ── FEATURES ────────────────────────────────────── */
.features {
  padding: 100px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 64px;
  max-width: 600px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.feature-item { position: relative; }
.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.feature-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── PRINCIPLES ───────────────────────────────────── */
.principles {
  background: var(--dark);
  padding: 100px 48px;
}
.principles-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.principles-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.4;
}
.principles-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-inv);
  line-height: 1.5;
  margin-bottom: 36px;
}
.principles-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 6px;
}
.principles-role {
  font-size: 13px;
  font-weight: 300;
  color: rgba(232,230,224,0.5);
  line-height: 1.6;
}
.principles-list-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.principles-list {
  list-style: none;
}
.principles-list li {
  font-size: 15px;
  font-weight: 400;
  color: rgba(232,230,224,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.principles-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── CLOSING ─────────────────────────────────────── */
.closing {
  padding: 100px 48px 120px;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-tag {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--accent);
  padding: 12px 28px;
  border: 1px solid var(--border-dark);
  border-radius: 100px;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--dark);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 3px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-light);
  flex: 1;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-light);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .monitor-inner,
  .principles-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav { padding: 0 24px; }
  .hero { padding: 80px 24px 60px; }
  .monitor { padding: 72px 24px; }
  .features { padding: 72px 24px; }
  .principles { padding: 72px 24px; }
  .closing { padding: 72px 24px 88px; }
  .footer { padding: 28px 24px; }
  .footer-inner { flex-wrap: wrap; gap: 12px; }
  .footer-tagline { flex-basis: 100%; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 42px; letter-spacing: -1px; }
  .nav-tagline { display: none; }
}