/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --amber-glow: rgba(245, 158, 11, 0.06);
  --text: #fafaf9;
  --text-muted: rgba(250, 250, 249, 0.55);
  --text-dim: rgba(250, 250, 249, 0.35);
  --border: rgba(250, 250, 249, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; gap: 0.5rem;
  letter-spacing: -0.02em;
}
.logo-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--amber); border-radius: 50%;
  box-shadow: 0 0 12px var(--amber), 0 0 24px rgba(245,158,11,0.4);
  flex-shrink: 0;
}
.nav-tagline {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 2rem 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; top: -10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250,250,249,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,250,249,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black, transparent);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
  width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: 1.75rem; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); font-weight: 500;
}
.eyebrow-line { display: block; width: 28px; height: 1px; background: var(--amber); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--text);
}
.hero-sub {
  font-size: 1.0625rem; line-height: 1.65; color: var(--text-muted);
  max-width: 440px;
}

/* === DEVICE MOCKUP === */
.hero-visual { display: flex; justify-content: center; }
.device-mockup {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  width: 100%; max-width: 480px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,158,11,0.06);
}
.device-browser-bar {
  background: #1e1e1e; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(250,250,249,0.15); }
.browser-bar-text {
  margin-left: 0.5rem; font-size: 0.7rem; color: var(--text-dim);
  background: rgba(250,250,249,0.06); padding: 0.2rem 0.7rem;
  border-radius: 4px; letter-spacing: 0.02em;
}
.device-screen { padding: 1.5rem; background: #111; }
.screen-header { margin-bottom: 1rem; }
.site-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text); }
.site-subtitle { font-size: 0.72rem; color: var(--amber); letter-spacing: 0.05em; margin-top: 0.2rem; }
.site-cta {
  background: var(--amber); color: #000; font-weight: 600; font-size: 0.8rem;
  padding: 0.5rem 1rem; border-radius: 6px; text-align: center;
  margin: 1rem 0;
}
.site-grid { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.site-card {
  flex: 1; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px; padding: 0.6rem; text-align: center;
}
.card-icon { color: var(--amber); font-size: 0.9rem; margin-bottom: 0.2rem; }
.card-label { font-size: 0.6rem; color: var(--text-muted); line-height: 1.3; }

/* === CHAT WIDGET === */
.chat-widget {
  background: #1a1a1a; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.15);
}
.chat-header {
  background: var(--amber-dim); padding: 0.65rem 0.9rem;
  display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid rgba(245,158,11,0.15);
}
.chat-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--amber); color: #000; font-weight: 700;
  font-size: 0.65rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-label { font-size: 0.75rem; font-weight: 600; color: var(--text); flex: 1; }
.chat-online {
  font-size: 0.6rem; color: #22c55e; font-weight: 500;
  display: flex; align-items: center; gap: 0.25rem;
}
.chat-online::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }
.chat-body { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.chat-msg {
  font-size: 0.72rem; line-height: 1.45; padding: 0.4rem 0.7rem;
  border-radius: 8px; max-width: 85%;
}
.chat-user { background: var(--amber); color: #000; align-self: flex-end; font-weight: 500; }
.chat-bot { background: rgba(250,250,249,0.08); color: var(--text-muted); align-self: flex-start; }

/* === STATS ROW === */
.stats-row {
  background: var(--bg-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-row .stat + .stat-divider + .stat { margin-left: 0; }
.stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.stat {
  flex: 1; max-width: 300px;
  text-align: center; padding: 0 3rem;
}
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700; color: var(--amber);
  line-height: 1; margin-bottom: 0.6rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* === MANIFESTO === */
.manifesto { padding: 8rem 2rem; position: relative; }
.manifesto::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, transparent, var(--amber), transparent);
}
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); font-weight: 500; margin-bottom: 1.5rem;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 1.75rem;
}
.manifesto-body { display: flex; flex-direction: column; gap: 1rem; }
.manifesto-body p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
.manifesto-break {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 3rem;
}
.break-line { flex: 1; height: 1px; background: var(--border); }
.break-quote {
  font-family: var(--font-display);
  font-size: 1rem; font-style: italic; color: var(--amber);
  white-space: nowrap;
}

/* === FEATURES === */
.features { padding: 8rem 2rem; background: var(--bg-2); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); font-weight: 500; margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text);
}
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px;
  background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  margin-bottom: 3rem;
}
.feature-card {
  background: var(--bg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.2s;
}
.feature-card:hover { background: #111; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--amber-dim); border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); flex-shrink: 0;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 600; color: var(--text);
  line-height: 1.3;
}
.feature-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* === PRICING NOTE === */
.pricing-note {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap;
}
.pricing-box {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 1.75rem 2rem; text-align: center; min-width: 240px; flex: 1;
  background: rgba(250,250,249,0.02);
}
.pricing-box--accent { border-color: rgba(245,158,11,0.3); background: var(--amber-dim); }
.pricing-tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); }
.pricing-box--accent .pricing-amount { color: var(--amber); }
.pricing-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.5; }

/* === OUTCOMES === */
.outcomes { padding: 6rem 2rem; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin: 3rem 0;
  background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.outcome {
  background: var(--bg-2); padding: 2.5rem;
  text-align: center;
}
.outcome-stat {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700; color: var(--amber);
  line-height: 1; margin-bottom: 0.75rem;
}
.outcome-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.outcomes-story {
  border-top: 1px solid var(--border); padding-top: 3rem; text-align: center;
  max-width: 640px; margin: 0 auto;
}
.story-quote {
  font-family: var(--font-display);
  font-size: 1.25rem; font-style: italic; line-height: 1.6;
  color: var(--text); margin-bottom: 1rem;
}
.story-attribution { font-size: 0.8rem; color: var(--text-dim); }

/* === CLOSING === */
.closing {
  padding: 8rem 2rem; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.closing-glow {
  position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 1.5rem;
}
.closing-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 520px; margin: 0 auto 3rem; }
.closing-footer { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.closing-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.footer-logo-dot { display: inline-block; width: 7px; height: 7px; background: var(--amber); border-radius: 50%; box-shadow: 0 0 10px var(--amber); }
.closing-tagline { font-size: 0.8rem; color: var(--text-dim); }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-brand {
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-tagline { font-size: 0.8rem; color: var(--text-dim); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .device-mockup { max-width: 400px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .manifesto-break { flex-direction: column; gap: 0.75rem; }
  .break-line { height: 1px; }
  .pricing-note { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero { padding: 90px 1.25rem 60px; }
  .manifesto, .features, .outcomes, .closing { padding-left: 1.25rem; padding-right: 1.25rem; }
  .stats-row { padding: 2rem 1.25rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-tagline { display: none; }
  .hero-headline { font-size: 2.25rem; }
  .outcomes-grid { gap: 0; }
  .outcome { border-bottom: 1px solid var(--border); }
}
