:root {
  --bg: #141414;
  --fg: #f5f0eb;
  --accent: #e85a1b;
  --muted: #6b6560;
  --card: #1e1c1a;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #a09890;
  max-width: 420px;
}
.hero-right {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #e85a1b22, transparent 70%),
              radial-gradient(circle at 60% 60%, #e85a1b44, transparent 60%);
  filter: blur(1px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-stripe {
  position: absolute;
  background: var(--accent);
  opacity: 0.12;
  border-radius: 4px;
}
.hero-stripe-1 { width: 180px; height: 6px; top: 20%; right: 10%; transform: rotate(-8deg); }
.hero-stripe-2 { width: 120px; height: 4px; bottom: 35%; right: 20%; transform: rotate(5deg); }
.hero-stripe-3 { width: 90px; height: 3px; top: 55%; right: 5%; transform: rotate(-3deg); opacity: 0.06; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* PHILOSOPHY */
.philosophy {
  background: #0f0e0c;
  padding: 100px 48px;
}
.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
}
.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.philosophy-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.philosophy-body {
  font-size: 16px;
  line-height: 1.8;
  color: #8a8278;
  max-width: 600px;
}

/* FEATURES */
.features {
  padding: 100px 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--card);
  padding: 48px 40px;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b6560;
}

/* CLOSING */
.closing {
  padding: 120px 48px 140px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-mark {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.closing-meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid #1e1c1a;
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.footer-links span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.footer-copy {
  font-size: 11px;
  color: #3a3632;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .hero-headline { font-size: 52px; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .philosophy, .features, .closing { padding: 72px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}