:root {
  --bg: #FAFAF5;
  --bg-alt: #F2F0E8;
  --surface: #EAE7DC;
  --text: #1C1B18;
  --text-2: #5A5A72;
  --accent: #D4621A;
  --accent-dim: #F4E4D4;
  --border: #D8D4C8;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(212, 98, 26, 0.07) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(212, 98, 26, 0.03) 60px, rgba(212, 98, 26, 0.03) 61px);
  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;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 440px;
}

/* Browser mockup */
.hero-visual { position: relative; }

.browser-frame {
  background: #1C1B18;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(28, 27, 24, 0.18), 0 8px 24px rgba(28, 27, 24, 0.12);
}

.browser-bar {
  background: #2A2924;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot { width: 10px; height: 10px; border-radius: 50%; background: #4A4840; }
.dot-red { background: #E85D30; }
.dot-yellow { background: #F0B429; }
.dot-green { background: #3D9E5A; }

.browser-content { padding: 28px; }

.browser-page { background: #FAFAF5; border-radius: 8px; overflow: hidden; }

.bp-topbar {
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #C05618 100%);
}

.bp-headline {
  height: 20px; width: 60%;
  background: #1C1B18;
  border-radius: 4px;
  margin: 20px 20px 12px;
}

.bp-sub {
  height: 10px; width: 85%;
  background: #D8D4C8;
  border-radius: 4px;
  margin: 0 20px 16px;
}

.bp-btn {
  height: 36px; width: 140px;
  background: var(--accent);
  border-radius: 6px;
  margin: 0 20px 20px;
}

.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px 20px;
}

.bp-card {
  height: 60px;
  background: #F2F0E8;
  border-radius: 6px;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: #1C1B18;
  color: #F0EDE5;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #3D9E5A;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Manifesto */
.manifesto {
  background: #1C1B18;
  color: #F0EDE5;
  padding: 96px 48px;
}

.manifesto-inner { max-width: 900px; margin: 0 auto; }

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.manifesto-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: #E8E4DA;
}

/* Features */
.features { padding: 96px 48px; background: var(--bg); }
.features-inner { max-width: 1200px; margin: 0 auto; }

.features-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 600;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover { background: #F7F5EE; }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Philosophy */
.philosophy { padding: 80px 48px; background: #1C1B18; }
.philosophy-inner { max-width: 800px; margin: 0 auto; }

.philosophy-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.philosophy-stat { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #E8E4DA;
  letter-spacing: -0.03em;
}

.stat-number.accent { color: var(--accent); }

.stat-unit {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

.stat-label {
  font-size: 14px;
  color: #5A5A72;
  margin-top: 8px;
}

.philosophy-connector {
  font-size: 36px;
  color: #3A3830;
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 900px; margin: 0 auto; }

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
}

/* Footer */
.site-footer { background: #1C1B18; padding: 40px 48px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: baseline; gap: 12px; }

.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #F0EDE5;
}

.footer-tagline { font-size: 13px; color: #5A5A72; }
.footer-meta { font-size: 13px; color: #3A3830; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .manifesto, .features, .philosophy, .closing { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .philosophy-grid { flex-direction: column; gap: 24px; }
  .philosophy-connector { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .site-footer { padding: 40px 24px; }
}