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

:root {
  --bg: #16181F;
  --bg-alt: #1C1E27;
  --surface: #21242F;
  --surface-2: #2A2D3A;
  --cream: #F5F0E8;
  --cream-dim: #C2B8A5;
  --gold: #D4A843;
  --gold-dim: #A8822F;
  --urgent: #E05252;
  --urgent-bg: rgba(224, 82, 82, 0.12);
  --text: #F5F0E8;
  --text-muted: #8A8478;
  --border: rgba(245, 240, 232, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(22, 24, 31, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  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-size: 1.2rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.btn-nav-start {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #16181F !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s;
}
.btn-nav-start:hover { opacity: 0.85; }

/* === HERO === */
.hero {
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === BRIEF CARD === */
.brief-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,67,0.08);
}
.brief-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.brief-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.urgency-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
}
.urgency-high { background: var(--urgent); color: white; }
.brief-section { margin-bottom: 16px; }
.brief-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  margin-bottom: 6px;
}
.brief-section-content {
  color: var(--cream-dim);
  line-height: 1.55;
}
.brief-section-content strong { color: var(--cream); }
.brief-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  margin-bottom: 4px;
}
.brief-fact-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.urgency-text { color: var(--urgent); }
.brief-notes {
  background: rgba(212,168,67,0.06);
  border-left: 2px solid var(--gold);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  font-style: italic;
}
.brief-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.brief-source { font-size: 0.72rem; color: var(--text-muted); }
.brief-actions { display: flex; gap: 8px; }
.btn-brief {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-review { background: var(--surface-2); color: var(--cream-dim); }
.btn-book { background: var(--gold); color: #16181F; }
.btn-brief:hover { opacity: 0.85; }

/* === PROOF === */
.proof {
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}
.proof-stat { flex: 1; }
.proof-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.proof-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* === SECTION SHARED === */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.features-header, .how-header, .pricing-header, .closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
}
.features-header { margin-bottom: 64px; }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(212,168,67,0.2); }
.feature-primary {
  grid-row: span 3;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,168,67,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.feature-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.chat-bot { background: var(--surface-2); color: var(--cream-dim); align-self: flex-start; }
.chat-user { background: rgba(212,168,67,0.15); color: var(--cream); align-self: flex-end; }
.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* === HOW === */
.how {
  padding: 100px 24px;
  background: var(--bg-alt);
}
.how-header { margin-bottom: 64px; }
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212,168,67,0.2);
  margin-bottom: 16px;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(212,168,67,0.2));
}

/* === PRICING === */
.pricing {
  padding: 100px 24px;
}
.pricing-header { margin-bottom: 64px; }
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: rgba(212,168,67,0.25); }
.pricing-card-featured {
  border-color: rgba(212,168,67,0.35);
  background: linear-gradient(180deg, rgba(212,168,67,0.06) 0%, var(--surface) 100%);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #16181F;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--cream);
}
.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--surface-2);
  color: var(--cream-dim);
}
.btn-pricing:hover { background: var(--surface-2); opacity: 0.8; }
.btn-pricing-primary {
  background: var(--gold);
  color: #16181F;
}
.btn-pricing-primary:hover { opacity: 0.85; }
.pricing-footnote {
  max-width: 1100px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  padding: 100px 24px;
  background: var(--bg-alt);
}
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 32px;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 260px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--cream-dim);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-headline { font-size: 2rem; }
  .proof-inner { flex-direction: column; gap: 40px; }
  .proof-divider { width: 40px; height: 1px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-primary { grid-row: auto; }
  .how-steps { flex-direction: column; gap: 16px; }
  .step-connector { width: 40px; height: 2px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 16px 60px; }
  .brief-card { padding: 18px; }
  .brief-card-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .brief-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
}

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