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

:root {
  --bg: #0c0c10;
  --bg-2: #111116;
  --bg-3: #16161c;
  --surface: #1c1c24;
  --border: rgba(255,255,255,0.06);
  --fg: #f0ede8;
  --fg-2: #a8a499;
  --fg-3: #6b6760;
  --accent: #F59E0B;
  --accent-dim: rgba(245,158,11,0.12);
  --accent-glow: rgba(245,158,11,0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(12,12,16,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
}

.nav-logo {
  width: 28px;
  height: 28px;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.8rem;
  color: var(--fg-3);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
  bottom: 100px;
  left: 100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}

/* Nodes */
.hero-nodes { position: absolute; inset: 0; }

.node {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.node::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.3);
  animation: pulse-ring 3s ease-out infinite;
}

.node-1 {
  width: 8px; height: 8px;
  background: var(--accent);
  top: 20%; left: 15%;
  animation-delay: 0s;
}
.node-2 {
  width: 5px; height: 5px;
  background: rgba(245,158,11,0.6);
  top: 35%; left: 75%;
  animation-delay: 1s;
}
.node-3 {
  width: 6px; height: 6px;
  background: rgba(245,158,11,0.7);
  top: 60%; left: 20%;
  animation-delay: 2s;
}
.node-4 {
  width: 4px; height: 4px;
  background: rgba(245,158,11,0.5);
  top: 75%; left: 60%;
  animation-delay: 1.5s;
}
.node-5 {
  width: 7px; height: 7px;
  background: rgba(245,158,11,0.4);
  top: 15%; left: 55%;
  animation-delay: 2.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 32px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline-accent {
  display: block;
  color: var(--accent);
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

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

.hero-pricing {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.pricing-item {}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}

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

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--fg-3);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--accent-dim);
}

.proof-text { font-weight: 400; }

.proof-arrow {
  color: var(--accent);
  font-weight: 600;
}

.proof-result {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}

/* ===== STATS ===== */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-pct {
  font-size: 1.8rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-3);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 120px 48px;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.component-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.component-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.component-card:hover {
  border-color: rgba(245,158,11,0.2);
  transform: translateY(-4px);
}

.component-card:hover::before { opacity: 1; }

.component-icon {
  margin-bottom: 24px;
}

.component-icon svg {
  width: 40px;
  height: 40px;
}

.component-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.7;
}

.component-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.component-desc {
  font-size: 0.85rem;
  color: var(--fg-3);
  line-height: 1.6;
}

/* ===== PRINCIPLES ===== */
.principles {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.principles-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.principle:first-child { border-top: 1px solid var(--border); }

.principle-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

.principle-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.5;
}

.principle-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.principle-text {
  font-size: 0.9rem;
  color: var(--fg-3);
  line-height: 1.7;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 120px 48px;
  background: var(--bg);
}

.outcomes-header {
  text-align: center;
  margin-bottom: 80px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-item {
  background: var(--bg-2);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.outcome-item:hover { background: var(--bg-3); }

.outcome-stat {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.outcome-label {
  font-size: 0.8rem;
  color: var(--fg-3);
  line-height: 1.5;
}

.outcome-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.3;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--fg-2);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 40px;
  position: relative;
}

.manifesto-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.manifesto-sub {
  font-size: 0.9rem;
  color: var(--fg-3);
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 48px;
  background: var(--bg);
}

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

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-3);
  line-height: 1.7;
  margin-bottom: 60px;
}

.closing-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 40px;
}

.closing-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.closing-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.closing-location {
  font-size: 0.8rem;
  color: var(--fg-3);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg-2);
}

.footer-logo {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-3);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-3);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 80px; }
  .stats { padding: 48px 24px; }
  .howitworks { padding: 80px 24px; }
  .principles { padding: 80px 24px; }
  .outcomes { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }

  .components-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-pricing { flex-wrap: wrap; gap: 20px; }

  .footer-inner { flex-direction: column; text-align: center; }
}

/* ===== HERO VISUAL (MOCKUP) ===== */
.hero-visual {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  z-index: 2;
  animation: float-mockup 8s ease-in-out infinite;
}

@keyframes float-mockup {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 16px)); }
}

.hero-mockup {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,158,11,0.1);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

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

.mockup-title {
  font-size: 0.7rem;
  color: var(--fg-3);
  margin-left: 8px;
  font-family: var(--font-body);
}

.mockup-body {
  display: flex;
  height: 260px;
}

.mockup-sidebar {
  width: 120px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--fg-3);
  font-family: var(--font-body);
}

.mockup-nav-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.mockup-nav-item.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.mockup-content {
  flex: 1;
  padding: 14px;
  overflow: hidden;
}

.mockup-stat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-stat {
  flex: 1;
  background: var(--surface);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}

.mockup-stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.mockup-stat-label {
  font-size: 0.6rem;
  color: var(--fg-3);
  margin-top: 2px;
}

.mockup-chat-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  animation: fade-msg 0.3s ease-out;
}

.mockup-chat-msg span {
  font-size: 0.68rem;
  line-height: 1.4;
  font-family: var(--font-body);
}

.mockup-chat-msg .time {
  font-size: 0.58rem;
  color: var(--fg-3);
  margin-top: 2px;
}

.mockup-chat-msg.bot {
  color: var(--fg-2);
}

.mockup-chat-msg.user {
  flex-direction: row-reverse;
  color: var(--fg);
}

.mockup-booking-card {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 4px;
}

.bcard-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 4px;
}

.bcard-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--fg-3);
}

.bcard-ok { color: #22c55e; font-weight: 600; }

.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 12px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes fade-msg {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero layout with visual */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.contact-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.contact-cta-text { flex: 1; }

.contact-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-cta-sub {
  font-size: 0.9rem;
  color: var(--fg-3);
  line-height: 1.6;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.cta-btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }

.cta-btn-secondary {
  display: block;
  text-align: center;
  color: var(--fg-3);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-btn-secondary:hover { color: var(--fg-2); }

@media (max-width: 768px) {
  .contact-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 600px) {
  .components-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 48px 1fr; }
  .nav-tagline { display: none; }
  .contact-cta { padding: 80px 24px; }
}