/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0f;
  --bg-2: #141418;
  --bg-3: #1c1c22;
  --fg: #f5f0e8;
  --fg-2: #a8a49e;
  --fg-3: #6b6862;
  --amber: #f59e0b;
  --amber-dim: #92640a;
  --orange: #ff7a1a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; font-weight: 700; line-height: 1.1; }

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-head {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  max-width: 540px;
  line-height: 1.7;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,158,11,0.08);
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,15,0.95) 0%, rgba(13,13,15,0.7) 50%, rgba(13,13,15,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem 5rem;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
}
.stat-label { font-size: 0.8rem; color: var(--fg-3); }

/* === MISSION === */
.mission { padding: 6rem 3rem; background: var(--bg-2); }
.mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-body {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.8;
  margin-top: 1.5rem;
}
.mission-img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid rgba(245,158,11,0.15);
}

/* === AGENTS === */
.agents { padding: 6rem 3rem; }
.agents .section-head { max-width: 600px; }
.agent-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.agent-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.agent-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-2px);
}
.agent-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.agent-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.agent-card p { font-size: 0.85rem; color: var(--fg-2); line-height: 1.5; }
.agent-time {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--amber);
  font-weight: 600;
  background: rgba(245,158,11,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* === HOW === */
.how { padding: 6rem 3rem; background: var(--bg-2); text-align: center; }
.how .section-head { margin-left: auto; margin-right: auto; }
.how .section-sub { margin: 0.75rem auto 0; }
.how-steps {
  max-width: 800px;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 1.5rem;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.35;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.6rem; }
.step p { font-size: 0.9rem; color: var(--fg-2); }
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
  flex-shrink: 0;
}

/* === PRICING === */
.pricing { padding: 6rem 3rem; }
.pricing .section-head { max-width: 500px; }
.pricing .section-sub { margin-bottom: 0; }
.pricing-grid {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  position: relative;
}
.price-card--featured {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(255,122,26,0.04));
  border-color: rgba(245,158,11,0.35);
}
.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.price-per { font-size: 1.1rem; color: var(--fg-3); font-weight: 400; }
.price-desc { font-size: 0.88rem; color: var(--fg-3); margin-bottom: 1.5rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.price-features li {
  font-size: 0.88rem;
  color: var(--fg-2);
  padding-left: 1.25rem;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.8rem;
}

/* === CLOSING === */
.closing { padding: 6rem 3rem; background: var(--bg-2); }
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.closing-img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid rgba(245,158,11,0.15);
}
.closing-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.closing-text p {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.8;
}
.closing-note {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--amber);
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--fg-3); max-width: 260px; }
.footer-links { display: flex; gap: 3rem; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--fg-2);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem;
  color: var(--fg-3);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .mission-inner, .closing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps { flex-direction: column; gap: 2rem; }
  .step-connector { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .agent-grid { grid-template-columns: 1fr; }
  .mission, .agents, .how, .pricing, .closing { padding: 4rem 1.5rem; }
  .footer-top { flex-direction: column; }
}