:root {
  --bg: #0f0f0f;
  --bg-alt: #161616;
  --fg: #f5f0e8;
  --fg-muted: #8a857a;
  --accent: #e85d04;
  --accent-soft: rgba(232, 93, 4, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232, 93, 4, 0.06) 0%, transparent 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 80px,
    rgba(245, 240, 232, 0.015) 80px,
    rgba(245, 240, 232, 0.015) 81px
  );
  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;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}

/* Bowl visual */
.bowl-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bowl-outer {
  width: 280px;
  height: 160px;
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  background: #1a1a1a;
  border: 3px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 80px rgba(0,0,0,0.8),
    inset 0 -20px 40px rgba(232, 93, 4, 0.15),
    inset 0 4px 12px rgba(0,0,0,0.6);
}
.bowl-broth {
  position: absolute;
  inset: 12px;
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  background: radial-gradient(ellipse at 35% 40%, #c86818 0%, #7a3a08 50%, #4a2004 100%);
}
.bowl-noodles {
  position: absolute;
  top: 35%;
  left: 25%;
  right: 25%;
  height: 30px;
  border-radius: 40%;
  background: repeating-linear-gradient(
    -30deg,
    #f0d890 0px,
    #f0d890 3px,
    transparent 3px,
    transparent 8px
  ), repeating-linear-gradient(
    30deg,
    #e8c870 0px,
    #e8c870 3px,
    transparent 3px,
    transparent 8px
  );
  opacity: 0.7;
}
.bowl-toppings {
  position: absolute;
  inset: 0;
}
.topping-chashu {
  position: absolute;
  top: 28%;
  left: 20%;
  width: 36px;
  height: 20px;
  border-radius: 40%;
  background: #8b3a1a;
  border: 1px solid #c45a2a;
}
.topping-egg {
  position: absolute;
  top: 20%;
  right: 25%;
  width: 22px;
  height: 26px;
  border-radius: 50%;
  background: #f5c842;
  border: 2px solid #d4a832;
  box-shadow: inset 0 -4px 6px rgba(0,0,0,0.3);
}
.topping-nori {
  position: absolute;
  top: 38%;
  right: 18%;
  width: 14px;
  height: 28px;
  background: #1a2e1a;
  border-radius: 2px;
}
.topping-scallion {
  position: absolute;
  bottom: 35%;
  left: 50%;
  width: 40px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #c8e890 0px,
    #c8e890 6px,
    transparent 6px,
    transparent 10px
  );
}
.bowl-shine {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 50px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  transform: rotate(-20deg);
}
.steam {
  position: absolute;
  bottom: 100%;
  width: 4px;
  height: 40px;
  background: linear-gradient(to top, rgba(245,240,232,0.25), transparent);
  border-radius: 2px;
  animation: rise 2.5s ease-in-out infinite;
}
.steam-1 { left: 35%; animation-delay: 0s; }
.steam-2 { left: 50%; animation-delay: 0.8s; }
.steam-3 { left: 65%; animation-delay: 1.6s; }
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  50% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-50px) scaleX(0.5); }
}
.alert-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse 2s ease-in-out infinite;
}
.alert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,4,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(232,93,4,0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hero stats */
.hero-stats {
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Shared section styles */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}
.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* How it works */
.howitworks {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  padding: 0 20px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon {
  margin-bottom: 16px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 60px;
  flex-shrink: 0;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card--wide {
  grid-column: 1 / -1;
}
.feature-visual {
  padding: 32px 32px 0;
}
.feature-text {
  padding: 24px 32px 32px;
}
.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Monitor frame */
.monitor-frame {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.monitor-screen {
  padding: 20px;
}
.data-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.data-row:last-child { border-bottom: none; }
.data-row.muted { opacity: 0.4; }
.source-tag {
  background: rgba(232,93,4,0.15);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  min-width: 60px;
  text-align: center;
  letter-spacing: 0.05em;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.green { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.status-dot.gray { background: #444; }
.signal-text { color: var(--fg); font-size: 13px; }

/* Phone frame */
.phone-frame {
  width: 120px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 20px;
  overflow: hidden;
}
.phone-screen { padding: 12px; }
.notif-header {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.notif-body { background: rgba(232,93,4,0.08); border-radius: 8px; padding: 10px; border: 1px solid rgba(232,93,4,0.2); }
.notif-title { font-size: 12px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.notif-sub { font-size: 10px; color: var(--fg-muted); margin-bottom: 4px; }
.notif-rating { font-size: 10px; color: var(--accent); font-weight: 600; }

/* Map visual */
.map-visual {
  background: #0a0a0a;
  border-radius: 12px;
  height: 160px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.map-label {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.map-pins { position: absolute; inset: 0; }
.pin { position: absolute; display: flex; flex-direction: column; align-items: flex-start; }
.pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-muted);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.pin-active .pin-dot { background: var(--accent); box-shadow: 0 0 8px rgba(232,93,4,0.6); }
.pin-label { font-size: 10px; color: var(--fg); font-weight: 500; margin-top: 4px; padding-left: 2px; }

/* Manifesto */
.manifesto { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 800px; }
.manifesto-overline { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.manifesto-body em { color: var(--fg); font-style: italic; }

/* Closing */
.closing { text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-vision {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.vision-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.closing-statement {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--fg);
  opacity: 0.6;
}

/* Subscribe form */
.subscribe-form { max-width: 480px; margin: 0 auto 48px; }
.form-row { display: flex; gap: 8px; }
.subscribe-form input[type="email"] {
  flex: 1; padding: 14px 18px; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 10px; color: var(--fg); font-size: 15px; font-family: var(--font-body); outline: none;
  transition: border-color 0.2s;
}
.subscribe-form input[type="email"]:focus { border-color: var(--accent); }
.subscribe-form select {
  padding: 14px 16px; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 10px; color: var(--fg); font-size: 15px; font-family: var(--font-body); outline: none;
  cursor: pointer;
}
.subscribe-form button {
  padding: 14px 24px; background: var(--accent); border: none; border-radius: 10px;
  color: #fff; font-size: 15px; font-weight: 600; font-family: var(--font-body); cursor: pointer;
  transition: background 0.2s, transform 0.1s; white-space: nowrap;
}
.subscribe-form button:hover { background: #c44d04; }
.subscribe-form button:active { transform: scale(0.97); }
.subscribe-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.form-status { margin-top: 12px; font-size: 13px; min-height: 20px; text-align: center; }
.form-status.success { color: #22c55e; }
.form-status.error { color: #ef4444; }

@media (max-width: 540px) {
  .form-row { flex-direction: column; }
  .subscribe-form button { width: 100%; }
}

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px; }
.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: 22px; font-weight: 900; margin-bottom: 6px; }
.footer-tagline { font-size: 12px; color: var(--fg-muted); }
.footer-note { font-size: 12px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-headline { font-size: 40px; }
  .section-inner { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: auto; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .closing-vision { flex-direction: column; align-items: center; gap: 16px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}