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

:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --cream: #F8F6F1;
  --cream-dim: rgba(248, 246, 241, 0.5);
  --orange: #FF5733;
  --orange-dim: rgba(255, 87, 51, 0.15);
  --orange-glow: rgba(255, 87, 51, 0.08);
  --text: #f0ede8;
  --text-muted: #8a8680;
  --text-dim: #5a5854;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-badge {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-body);
}

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

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

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 87, 51, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.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: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 80%);
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--orange);
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  background: #e64d2d;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 87, 51, 0.3);
}

.btn-primary.btn-large {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--surface);
}

.hero-meta {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-body);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.nova-window {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.nova-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.nova-dots {
  display: flex;
  gap: 6px;
}

.nova-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.nova-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.nova-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4ade80;
  font-family: var(--font-body);
}

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

.nova-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 480px;
  overflow-y: auto;
}

.nova-msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.nova-msg-user {
  flex-direction: row-reverse;
}

.nova-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange-dim);
}

.nova-bubble {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  max-width: 280px;
}

.nova-msg-user .nova-bubble {
  background: rgba(255, 87, 51, 0.15);
  border-color: rgba(255, 87, 51, 0.25);
  border-radius: 14px;
  border-bottom-right-radius: 4px;
}

.nova-bubble-generating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: bounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-6px); opacity: 1; }
}

.nova-app-preview {
  background: #111;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 4px;
}

.app-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.app-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.app-preview-dot.active {
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}

.app-preview-body {
  padding: 16px;
}

.app-screen-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.app-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.app-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--orange-dim);
}

.app-card-icon.booking { background: rgba(255, 87, 51, 0.2); }
.app-card-icon.services { background: rgba(59, 130, 246, 0.2); }
.app-card-icon.gallery { background: rgba(168, 85, 247, 0.2); }
.app-card-icon.pay { background: rgba(16, 185, 129, 0.2); }

.app-preview-label {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 12px;
  font-family: var(--font-body);
}

/* ===== PROOF ===== */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.proof-stat {
  text-align: center;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 6px;
}

.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  max-width: 140px;
  margin: 0 auto;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border-strong);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 32px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ===== FEATURES ===== */
.features {
  background: var(--bg);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

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

.feature-card--wide {
  grid-column: span 2;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-family: var(--font-body);
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-dim);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}

/* ===== PERSONAS ===== */
.personas {
  background: var(--surface);
}

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

.persona-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
}

.persona-card:hover {
  border-color: rgba(255, 87, 51, 0.3);
  transform: translateY(-2px);
}

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

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

.persona-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--orange-dim);
  line-height: 1;
  min-width: 80px;
  letter-spacing: -2px;
}

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

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-family: var(--font-body);
  max-width: 480px;
}

.step-line {
  position: absolute;
  left: 39px;
  top: calc(40px + 48px + 20px);
  width: 1px;
  height: calc(100% - 48px - 20px);
  background: linear-gradient(to bottom, var(--orange-dim), transparent);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-label {
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  font-style: normal;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: var(--font-body);
  margin-bottom: 16px;
}

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

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 40px;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-body);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--wide {
    grid-column: span 1;
  }
  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-inner {
    flex-direction: column;
    gap: 32px;
  }
  .proof-divider {
    width: 48px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 90px 20px 60px;
  }
  section {
    padding: 72px 20px;
  }
  .nav-inner {
    padding: 14px 20px;
  }
  .hero-headline {
    letter-spacing: -1px;
  }
  .personas-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    gap: 20px;
  }
  .step-number {
    font-size: 36px;
    min-width: 56px;
  }
  .step-line {
    left: 27px;
  }
  .closing-actions {
    flex-direction: column;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
