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

:root {
  --bg: #0D0F14;
  --bg-2: #141720;
  --bg-3: #1C1F2B;
  --fg: #F5F3EE;
  --fg-muted: #9A97A0;
  --accent: #F04E1A;
  --accent-dim: rgba(240, 78, 26, 0.12);
  --accent-dim2: rgba(240, 78, 26, 0.06);
  --border: rgba(245, 243, 238, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.wordmark-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: var(--bg-2);
}

/* ===== HERO ===== */
.hero {
  padding: 96px 24px 80px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--fg);
}

.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.meta-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.meta-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
}

.visual-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(240, 78, 26, 0.08) inset;
}

.vc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vc-dot-row {
  display: flex;
  gap: 6px;
}

.vc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.vc-dot.red { background: #FF5F57; }
.vc-dot.yellow { background: #FFBD2E; }
.vc-dot.green { background: #28CA41; }

.vc-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 100px;
}

.vc-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.vc-msg {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-family: var(--font-body);
  line-height: 1.4;
  max-width: 85%;
}

.msg-other {
  background: var(--bg-3);
  color: var(--fg-muted);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.msg-bot {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--fg);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.msg-bot.highlight {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.vc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.vc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #28CA41;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28CA41;
  box-shadow: 0 0 6px #28CA41;
}

.vc-time {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

.visual-cards-stack {
  position: absolute;
  bottom: -24px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.mc-label {
  font-size: 10px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.mc-val {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.services-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--fg);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(240, 78, 26, 0.3);
  transform: translateY(-2px);
}

.sc-featured {
  border-color: rgba(240, 78, 26, 0.25);
  background: linear-gradient(160deg, rgba(240,78,26,0.06) 0%, var(--bg-2) 60%);
}

.sc-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}

.sc-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card > p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.sc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  font-family: var(--font-body);
}

.sc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ===== PROCESS ===== */
.process {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.process-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--fg);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto 64px;
  display: flex;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
  position: relative;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.step-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--border));
  margin-bottom: 24px;
}

.step-last .step-line {
  background: var(--border);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.process-pricing {
  max-width: 900px;
  margin: 0 auto;
}

.pp-inner {
  background: var(--bg);
  border: 1px solid rgba(240, 78, 26, 0.2);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pp-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.pp-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pp-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.pp-price span {
  font-size: 24px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.pp-left p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.pp-includes span {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pp-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-includes li {
  font-size: 14px;
  color: var(--fg);
  font-family: var(--font-body);
  padding-left: 20px;
  position: relative;
}

.pp-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--accent);
  box-shadow: 0 0 6px rgba(240, 78, 26, 0.4);
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.pricing-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: rgba(240, 78, 26, 0.25);
  transform: translateY(-3px);
}

.pc-featured {
  background: linear-gradient(160deg, rgba(240,78,26,0.08) 0%, var(--bg-3) 60%);
  border-color: rgba(240, 78, 26, 0.3);
}

.pc-badge-top {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}

.pc-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -1.5px;
}

.pc-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.pc-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pc-features li {
  font-size: 13.5px;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.pc-features li strong {
  color: var(--fg);
  font-weight: 600;
}

.pc-btn {
  display: block;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pc-btn:hover {
  background: var(--bg);
  border-color: rgba(240, 78, 26, 0.3);
  color: var(--fg);
}

.pc-btn-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.pc-btn-featured:hover {
  background: #d84015;
  border-color: #d84015;
  color: white;
}

.pricing-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-footnote a {
  color: var(--accent);
  text-decoration: none;
}

.pricing-footnote a:hover {
  text-decoration: underline;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.6px;
  color: var(--fg);
  margin-bottom: 28px;
  font-style: normal;
  position: relative;
}

blockquote::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.manifesto-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  max-width: 260px;
}

.wordmark-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.fl-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fl-heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fl-group a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.fl-group a:hover { color: var(--fg); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .step {
    padding: 0;
  }

  .step-line {
    display: none;
  }

  .pp-inner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .pp-price {
    font-size: 48px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
  }

  .hero {
    padding: 64px 24px 56px;
  }

  .nav-tagline {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-meta {
    gap: 20px;
  }

  .meta-num {
    font-size: 20px;
  }
}