/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #F8F5F0;
  --bg-alt: #EEE9E2;
  --fg: #0A2E2E;
  --fg-muted: #3A6464;
  --accent: #E8894A;
  --accent-dark: #C97438;
  --dark-bg: #0A2E2E;
  --dark-fg: #F8F5F0;
  --card-bg: #FFFFFF;
  --border: #D4CCC4;
  --success: #16A34A;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; line-height: 1.15; }

/* === NAV === */
.nav { padding: 20px 0; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: var(--fg); text-decoration: none; letter-spacing: -0.3px; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-weight: 500; }

/* === HERO === */
.hero {
  background: var(--dark-bg);
  color: var(--dark-fg);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-art {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,137,74,0.08);
}
.hero-ring-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-ring-2 { width: 900px; height: 900px; top: -400px; right: -300px; }
.hero-ring-3 { width: 1200px; height: 1200px; top: -600px; right: -500px; border-color: rgba(232,137,74,0.04); }
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,137,74,0.12); border: 1px solid rgba(232,137,74,0.2);
  color: #F4A87A; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 32px;
}
.badge-dot { width: 7px; height: 7px; background: #E8894A; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--dark-fg);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 640px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: rgba(248,245,240,0.72);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-proof { display: flex; gap: 32px; align-items: center; }
.proof-item { text-align: left; }
.proof-number { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.proof-label { font-size: 12px; color: rgba(248,245,240,0.5); max-width: 140px; line-height: 1.4; }
.proof-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

/* Hero Conversation Widget */
.hero-conversation {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  width: 340px;
  background: #0F3D3D;
  border: 1px solid rgba(232,137,74,0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(232,137,74,0.06);
}
.conv-header {
  background: rgba(255,255,255,0.05);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.conv-dots { display: flex; gap: 5px; }
.conv-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.conv-dots span:first-child { background: #ff5f57; }
.conv-dots span:nth-child(2) { background: #febc2e; }
.conv-dots span:nth-child(3) { background: #28c840; }
.conv-title { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; }
.conv-messages { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 420px; overflow: hidden; }
.msg { font-size: 12.5px; line-height: 1.5; padding: 10px 14px; border-radius: 14px; animation: msg-appear 0.4s ease-out; }
@keyframes msg-appear { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.msg-customer { background: rgba(255,255,255,0.08); color: var(--dark-fg); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg-ai { background: rgba(232,137,74,0.12); color: #F4A87A; border-bottom-right-radius: 4px; align-self: flex-end; display: flex; align-items: flex-start; gap: 8px; }
.msg-ai-dot { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(232,137,74,0.5); flex-shrink: 0; margin-top: 2px; position: relative; }
.msg-ai-dot::after { content: ''; position: absolute; inset: 3px; background: var(--accent); border-radius: 50%; opacity: 0.6; animation: msg-appear 0.8s ease-out 0.3s both; }
.msg-confirm { background: rgba(22,163,74,0.15); color: #6ee7a8; border: 1px solid rgba(22,163,74,0.2); border-bottom-right-radius: 4px; align-self: flex-end; display: flex; gap: 10px; align-items: flex-start; }
.confirm-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(22,163,74,0.2); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

/* === MANIFESTO === */
.manifesto { background: var(--bg-alt); padding: 100px 0; }
.manifesto-inner { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.manifesto-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 28px;
  font-style: normal;
}
.manifesto-body { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 56px; }
.manifesto-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.m-stat { background: var(--card-bg); padding: 28px 24px; text-align: center; }
.m-stat-num { display: block; font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.m-stat-desc { font-size: 12.5px; color: var(--fg-muted); line-height: 1.5; }

/* === SECTIONS (shared) === */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; padding: 0 40px; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-headline { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: var(--fg); line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.6; }

/* === CONVERSATIONS === */
.conversations { padding: 100px 0; }
.conv-steps { max-width: 900px; margin: 0 auto 60px; padding: 0 40px; display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.conv-step { flex: 0 0 auto; text-align: center; max-width: 180px; }
.conv-arrow { flex: 1; min-width: 40px; display: flex; align-items: center; justify-content: center; }
.step-icon { width: 60px; height: 60px; background: var(--bg-alt); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--fg); margin-bottom: 6px; }
.step-desc { font-size: 12.5px; color: var(--fg-muted); line-height: 1.5; }
.conv-quote { max-width: 680px; margin: 0 auto; padding: 32px 40px; background: var(--dark-bg); border-radius: 16px; text-align: center; }
.conv-quote p { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--dark-fg); line-height: 1.4; }
.quote-attr { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; font-style: italic; color: rgba(248,245,240,0.5); }

/* === CHANNELS === */
.channels { padding: 100px 0; background: var(--dark-bg); color: var(--dark-fg); }
.channels .section-eyebrow { color: var(--accent); }
.channels .section-headline { color: var(--dark-fg); }
.channels .section-sub { color: rgba(248,245,240,0.6); }
.channel-grid { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.channel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.channel-card:hover { border-color: rgba(232,137,74,0.25); transform: translateY(-2px); }
.channel-icon-wrap { width: 52px; height: 52px; margin-bottom: 20px; }
.channel-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--dark-fg); margin-bottom: 10px; }
.channel-desc { font-size: 14.5px; color: rgba(248,245,240,0.55); line-height: 1.6; margin-bottom: 16px; }
.channel-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--accent); background: rgba(232,137,74,0.1); border: 1px solid rgba(232,137,74,0.2); padding: 4px 10px; border-radius: 100px; }
.channels-note { text-align: center; max-width: 500px; margin: 40px auto 0; font-size: 14px; color: rgba(248,245,240,0.4); padding: 0 40px; }

/* === PACKAGES === */
.packages { padding: 100px 0; background: var(--bg-alt); }
.pricing-grid { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card-featured { background: var(--dark-bg); color: var(--dark-fg); border-color: var(--accent); box-shadow: 0 20px 60px rgba(10,46,46,0.3); }
.pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pricing-card-featured .pricing-tier { color: var(--accent); }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--fg); line-height: 1; margin-bottom: 4px; }
.pricing-card-featured .pricing-price { color: var(--dark-fg); }
.pricing-setup { font-size: 20px; font-weight: 500; opacity: 0.6; }
.pricing-recurring { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; }
.pricing-card-featured .pricing-recurring { color: rgba(248,245,240,0.55); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card-featured .pricing-desc { color: rgba(248,245,240,0.6); border-color: rgba(255,255,255,0.1); }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--fg); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: '\2713'; width: 18px; height: 18px; background: rgba(232,137,74,0.1); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.pricing-card-featured .pricing-features li { color: rgba(248,245,240,0.85); }
.pricing-card-featured .pricing-features li::before { background: rgba(232,137,74,0.15); }
.pricing-cta { background: var(--bg-alt); border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; }
.pricing-card-featured .pricing-cta { background: rgba(255,255,255,0.06); }
.cta-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.pricing-card-featured .cta-label { color: rgba(248,245,240,0.4); }
.cta-target { font-size: 13px; font-weight: 600; color: var(--fg); }
.pricing-card-featured .cta-target { color: rgba(248,245,240,0.8); }
.pricing-guarantee { text-align: center; max-width: 600px; margin: 32px auto 0; font-size: 14px; color: var(--fg-muted); padding: 0 40px; }

/* === CLOSING === */
.closing { padding: 120px 0; background: var(--dark-bg); }
.closing-inner { max-width: 860px; margin: 0 auto; padding: 0 40px; text-align: center; }
.closing-stat { font-size: 14px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 28px; }
.closing-headline { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--dark-fg); line-height: 1.15; margin-bottom: 20px; }
.closing-sub { font-size: 18px; color: rgba(248,245,240,0.55); margin-bottom: 40px; }
.closing-services { font-size: 13px; color: rgba(248,245,240,0.3); line-height: 2; }

/* === FOOTER === */
.footer { background: #061C1C; padding: 40px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--dark-fg); }
.footer-tagline { font-size: 13px; color: rgba(248,245,240,0.35); }
.footer-note { font-size: 13px; color: rgba(248,245,240,0.3); max-width: 400px; text-align: right; line-height: 1.5; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-conversation { position: static; width: 100%; transform: none; margin-top: 48px; }
  .hero-content { display: flex; flex-direction: column; }
  .hero { padding-bottom: 60px; }
  .channel-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 20px; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .conv-steps { flex-direction: column; gap: 24px; }
  .conv-arrow { transform: rotate(90deg); }
  .footer-note { text-align: left; }
}
@media (max-width: 600px) {
  .nav-inner, .hero-content, .manifesto-inner, .conv-steps, .channel-grid, .pricing-grid, .closing-inner, .footer-inner { padding: 0 20px; }
  .pricing-card, .pricing-card-featured { padding: 28px 24px; }
  .hero { padding: 48px 0 60px; }
  .manifesto, .conversations, .channels, .packages { padding: 64px 0; }
  .closing { padding: 80px 0; }
}