/* RingMate — Bold, energetic, distinctive */

:root {
  --bg: #0C0C0F;
  --bg-2: #13131A;
  --fg: #FFFFFF;
  --fg-muted: #8888A0;
  --accent: #FF6B2C;
  --accent-glow: rgba(255, 107, 44, 0.15);
  --gold: #FFB800;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 140px 32px 100px;
  background: var(--bg);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,44,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
}

.stat {
  padding: 20px 28px;
  flex: 1;
}

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Phone frame */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-frame {
  position: relative;
  width: 280px;
}

.phone-screen {
  background: #1A1A26;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,44,0.1);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.phone-label {
  font-size: 0.65rem;
  color: #FF6B2C;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phone-time {
  font-size: 0.65rem;
  color: var(--fg-muted);
}

.call-bubble {
  background: rgba(255,107,44,0.15);
  border: 1px solid rgba(255,107,44,0.3);
  border-radius: 10px 10px 10px 2px;
  padding: 10px 12px;
  font-size: 0.75rem;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.4;
}

.call-icon {
  margin-right: 4px;
}

.ai-response {
  margin-bottom: 12px;
}

.ai-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #22C55E;
  margin-bottom: 6px;
}

.ai-text {
  background: #24243A;
  border-radius: 10px 10px 10px 2px;
  padding: 10px 12px;
  font-size: 0.75rem;
  color: var(--fg);
  line-height: 1.5;
}

.customer-response {
  margin-bottom: 12px;
}

.cust-text {
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 10px 10px 2px 10px;
  padding: 10px 12px;
  font-size: 0.75rem;
  color: #FFB800;
  line-height: 1.5;
}

.ai-booking {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 10px 12px;
}

.booking-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #22C55E;
  margin-bottom: 4px;
}

.booking-time {
  font-size: 0.75rem;
  color: #22C55E;
  font-weight: 500;
}

.phone-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: rgba(255, 107, 44, 0.2);
  filter: blur(20px);
  border-radius: 50%;
}

/* Problem section */
.problem {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.problem-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 600px;
  margin-bottom: 32px;
}

.problem-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.problem-quote {
  margin-top: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

.problem-quote p {
  font-size: 1.1rem;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 12px;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Features */
.features {
  padding: 100px 32px;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
}

.features-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.features-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(255,107,44,0.3);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,44,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How it works */
.how-it-works {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 500px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,107,44,0.2);
  line-height: 1;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 120px 32px 100px;
  background: var(--bg);
}

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

.closing-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.cta-box {
  background: var(--bg-2);
  border: 1px solid rgba(255,107,44,0.3);
  border-radius: 20px;
  padding: 36px;
  min-width: 280px;
  text-align: center;
}

.cta-pricing {
  margin-bottom: 16px;
}

.cta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.cta-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.cta-period {
  font-size: 1.25rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: 16px;
}

.closing-tagline {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 60px 32px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.footer-links {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat {
    min-width: 50%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-box {
    min-width: unset;
  }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 20px 80px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .problem, .features, .how-it-works, .closing {
    padding: 80px 20px;
  }

  .phone-frame {
    width: 240px;
  }

  .stat {
    padding: 16px 20px;
  }

  .stat-num {
    font-size: 1.2rem;
  }
}