/* ============================================
   AUVANO DESIGN SYSTEM — style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Auvano Official Palette */
  --bg-body: #050505;
  --bg-slate: #101315;
  --bg-card: #181C1F;
  --bg-sidebar: #0A0A0A;
  --bg-medium: #1A1D21;
  --bg-light: #252A30;
  --bg-border: #2A2F34;
  --bg-border-subtle: rgba(255, 255, 255, 0.08);

  --gold: #CBA44A;
  --gold-hover: #E3C76A;
  --gold-gradient: linear-gradient(135deg, #CBA44A 0%, #E3C76A 100%);
  --gold-glow: 0 0 20px rgba(203, 164, 74, 0.3);
  --gold-glow-sm: 0 0 10px rgba(203, 164, 74, 0.15);

  --blue: #3A5F7D;
  --blue-hover: #4F7A9A;

  --text-primary: #F2F4F7;
  --text-secondary: #A8B0BA;
  --text-muted: #6C727F;

  --success: #3B7D59;
  --error: #C85C5C;
  --warning: #DFA23E;
  --info: #3B82F6;

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 150ms;
  --normal: 200ms;
  --slow: 300ms;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Aliases for backward compat within this file */
  --bg-primary: var(--bg-slate);
  --bg-secondary: var(--bg-slate);
  --bg-tertiary: var(--bg-card);
  --bg-elevated: var(--bg-medium);
  --accent-blue: var(--blue);
  --accent-green: var(--success);
  --accent-red: var(--error);
  --accent-purple: #BC8CFF;
  --text-tertiary: var(--text-muted);
  --gold-light: var(--gold-hover);
  --font-display: var(--font-heading);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-full: 100px;
  --nav-height: 64px;
  --container-max: 1200px;
  --container-padding: 24px;
  --glass-blur: blur(20px);
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(203, 164, 74, 0.15);
  --nav-bg: rgba(5, 5, 5, 0.8);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold-gradient);
  z-index: 10001;
  transition: width 0.1s linear;
  width: 0%;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 164, 74, 0.04) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  will-change: left, top;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

section {
  padding: 50px 0;
  overflow: hidden;
}

/* Ensure no headline text is ever clipped */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero__title,
.platform__heading,
.pricing__heading {
  overflow: visible !important;
  line-height: 1.2 !important;
  padding-bottom: 0.1em;
}

/* Section wrappers must not clip their headlines */
section > .container,
section > .section-inner,
section > div:first-child {
  overflow: visible;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 50%, var(--text-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.75rem;
  transition: all 0.3s var(--ease-standard);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #050505;
  border: none;
}

.btn--gold:hover {
  box-shadow: var(--gold-glow), 0 4px 15px rgba(203, 164, 74, 0.3);
  transform: translateY(-1px);
}

.btn--gold:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 150ms;
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(203, 164, 74, 0.05);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn--full {
  width: 100%;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(90deg, #CBA44A, #E3C76A, #CBA44A, #E3C76A, #CBA44A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--container-padding);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard), backdrop-filter 0.3s;
}

.nav--visible {
  transform: translateY(0);
}

.nav--top {
  transform: translateY(0);
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all var(--normal) var(--ease);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu a {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) a { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(3) a { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(4) a { transition-delay: 0.4s; }
.mobile-menu.active li:nth-child(5) a { transition-delay: 0.5s; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions > .btn { display: none; }
  .nav__actions { gap: 0.5rem; }
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}

.hero__gradient--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(203, 164, 74, 0.3), transparent 70%);
  top: -10%;
  right: -5%;
  animation: drift1 25s ease-in-out infinite;
}

.hero__gradient--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(88, 166, 255, 0.15), transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: drift2 30s ease-in-out infinite;
}

.hero__gradient--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(188, 140, 255, 0.12), transparent 70%);
  top: 40%;
  left: 40%;
  animation: drift3 20s ease-in-out infinite;
}


.hero-code-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-code-scroll {
  position: absolute;
  top: -50%;
  left: 5%;
  right: 5%;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2;
  color: rgba(203, 164, 74, 0.04);
  white-space: pre;
  animation: codeScroll 60s linear infinite;
}

.hero-code-scroll pre {
  background: none;
  color: inherit;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(203, 164, 74, 0.3);
  border-radius: var(--radius-full);
  background: rgba(203, 164, 74, 0.05);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__trust {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================
   INTEGRATIONS BAR
   ============================================ */
.integrations-bar {
  padding: 30px 0;
  background: var(--bg-slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.integrations-bar__label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  font-weight: 500;
}

.integrations-bar__logos {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.integrations-bar__track {
  display: flex;
  gap: 60px;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}

.integration-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.integration-logo:hover {
  opacity: 1;
  color: var(--gold-hover);
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems {
  padding: 50px 0;
  background: var(--bg-body);
  position: relative;
}

.problems::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(203, 164, 74, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(203, 164, 74, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card__icon {
  margin-bottom: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(203, 164, 74, 0.08);
}

.problem-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.problem-card__stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.problem-card__stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.problem-card__source {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.problem-card__fix {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.problem-card__fix-label {
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 768px) {
  .problems__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PLATFORM SHOWCASE
   ============================================ */
.platform {
  padding: 50px 0;
  background: var(--bg-slate);
  position: relative;
}

.platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(203, 164, 74, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 164, 74, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.platform__showcase {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.platform__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.platform__tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  transition: all 0.2s var(--ease-standard);
  border: 1px solid transparent;
}

.platform__tab:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.platform__tab.active {
  color: var(--gold);
  background: rgba(203, 164, 74, 0.08);
  border-color: rgba(203, 164, 74, 0.2);
}

.platform__tab svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.platform__tab.active svg {
  opacity: 1;
  stroke: var(--gold);
}

.platform__panels {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

/* Panels */
.platform__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.platform__panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.platform__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.platform__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.platform__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .platform__showcase {
    grid-template-columns: 1fr;
  }

  .platform__tabs {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: static;
    gap: 0.25rem;
    padding-bottom: 0.5rem;
  }

  .platform__tab {
    white-space: nowrap;
    font-size: 0.8125rem;
    padding: 0.625rem 0.875rem;
  }

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

/* ============================================
   MOCKUPS (Styled Dashboard Illustrations)
   ============================================ */
.mockup__frame {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mockup__frame--wide {
  width: 100%;
}

/* Phone Mockup */
.mockup--phone .mockup__frame {
  max-width: 360px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 1.25rem;
}

.mockup__notch {
  width: 80px;
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 4px;
  margin: 0 auto 1rem;
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.mockup__caller-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(203, 164, 74, 0.1);
}

.mockup__caller-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mockup__caller-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.mockup__caller-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.mockup__status-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(63, 185, 80, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.mockup__chat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 320px;
}

.mockup__bubble {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 90%;
}

.mockup__bubble-sender {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.6;
}

.mockup__bubble--system {
  background: rgba(203, 164, 74, 0.08);
  border: 1px solid rgba(203, 164, 74, 0.15);
  align-self: flex-start;
}

.mockup__bubble--user {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  align-self: flex-end;
}

.mockup__footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mockup__footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Dashboard Mockup */
.mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.mockup__topbar-title {
  font-weight: 600;
  font-size: 0.9375rem;
}

.mockup__topbar-date {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.mockup__topbar-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  cursor: default;
}

.mockup__dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1.25rem;
}

.mockup__dash-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
}

.mockup__dash-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup__dash-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.mockup__dash-value--gold {
  color: var(--gold);
}

.mockup__dash-change {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

.mockup__dash-change--up {
  color: var(--accent-green);
}

.mockup__busy-meter {
  height: 6px;
  background: var(--bg-primary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.375rem;
}

.mockup__busy-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width 1s var(--ease-out);
}

.mockup__dash-activity {
  padding: 0 1.25rem 1.25rem;
}

.mockup__dash-activity-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.mockup__dash-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mockup__dash-row:last-child { border-bottom: none; }

.mockup__dash-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup__dash-dot--green { background: var(--accent-green); }
.mockup__dash-dot--gold { background: var(--gold); }
.mockup__dash-dot--blue { background: var(--accent-blue); }

@media (max-width: 768px) {
  .mockup__dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* KDS Mockup */
.mockup__kds-stations {
  display: flex;
  gap: 0.5rem;
}

.mockup__kds-station {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  color: var(--text-tertiary);
  cursor: default;
}

.mockup__kds-station.active {
  background: rgba(203, 164, 74, 0.1);
  color: var(--gold);
}

.mockup__kds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.25rem;
  min-height: 280px;
  align-content: start;
}

.mockup__kds-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
}

.mockup__kds-card--urgent {
  border-color: rgba(248, 81, 73, 0.4);
}

.mockup__kds-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.mockup__kds-timer {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.mockup__kds-timer--red {
  color: var(--accent-red);
}

.mockup__kds-type {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  margin-bottom: 0.625rem;
}

.mockup__kds-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.mockup__kds-note {
  margin-top: 0.625rem;
  font-size: 0.6875rem;
  color: var(--accent-red);
  font-weight: 500;
}

@media (max-width: 768px) {
  .mockup__kds-grid {
    grid-template-columns: 1fr;
  }
}

/* Menu Mockup */
.mockup__menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1.25rem;
}

.mockup__menu-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
  position: relative;
  overflow: visible;
}

.mockup__menu-item--out {
  opacity: 0.5;
}

.mockup__menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.375rem;
}

.mockup__menu-item-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.mockup__menu-item-price {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold);
}

.mockup__menu-item-desc {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.mockup__menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup__menu-item-cat {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.mockup__menu-item-badge {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--accent-red);
  background: rgba(248, 81, 73, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
}

/* Toggle Switch */
.mockup__toggle {
  width: 32px;
  height: 18px;
  border-radius: 9px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  position: relative;
  cursor: default;
}

.mockup__toggle--on {
  background: rgba(203, 164, 74, 0.2);
  border-color: var(--gold);
}

.mockup__toggle-dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-tertiary);
  transition: transform 0.2s;
}

.mockup__toggle--on .mockup__toggle-dot {
  transform: translateX(14px);
  background: var(--gold);
}

@media (max-width: 768px) {
  .mockup__menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Staff Schedule Mockup */
.mockup__schedule {
  padding: 1.25rem;
}

.mockup__schedule-header {
  display: grid;
  grid-template-columns: 100px repeat(5, 1fr);
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.mockup__schedule-header span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  text-align: center;
}

.mockup__schedule-row {
  display: grid;
  grid-template-columns: 100px repeat(5, 1fr);
  gap: 0.5rem;
  padding: 0.5rem 0;
  align-items: center;
}

.mockup__schedule-name {
  font-size: 0.8125rem;
  font-weight: 600;
}

.mockup__shift {
  font-size: 0.6875rem;
  font-weight: 500;
  text-align: center;
  padding: 0.375rem;
  border-radius: 6px;
}

.mockup__shift--morning {
  background: rgba(63, 185, 80, 0.1);
  color: var(--accent-green);
}

.mockup__shift--evening {
  background: rgba(88, 166, 255, 0.1);
  color: var(--accent-blue);
}

.mockup__shift-off {
  font-size: 0.6875rem;
  text-align: center;
  color: var(--text-tertiary);
}

.mockup__schedule-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.mockup__schedule-warn {
  color: var(--accent-red);
}

/* Tables / Floor Plan Mockup */
.mockup__table-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

.mockup__table-legend > span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.mockup__legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup__legend-dot--green { background: var(--accent-green); }
.mockup__legend-dot--gold { background: var(--gold); }
.mockup__legend-dot--red { background: var(--accent-red); }

.mockup__floor {
  position: relative;
  height: 300px;
  margin: 1.25rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.mockup__table {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  transform: translate(-50%, -50%);
  cursor: default;
  transition: transform 0.2s;
}

.mockup__table:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.mockup__table span {
  font-weight: 700;
  font-size: 0.875rem;
}

.mockup__table small {
  font-size: 0.5625rem;
  color: var(--text-tertiary);
  text-align: center;
}

.mockup__table--available {
  border-color: var(--accent-green);
  background: rgba(63, 185, 80, 0.05);
}

.mockup__table--occupied {
  border-color: var(--gold);
  background: rgba(203, 164, 74, 0.05);
}

.mockup__table--reserved {
  border-color: var(--accent-red);
  background: rgba(248, 81, 73, 0.05);
}

.mockup__vip-tag {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--gold);
  color: #050505;
  line-height: 1.4;
}

.mockup__table--vip {
  box-shadow: 0 0 8px rgba(203, 164, 74, 0.25);
}

/* Table tooltips */
.table-dot {
  position: relative;
  cursor: pointer;
}

.table-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--normal) var(--ease), transform var(--normal) var(--ease);
  z-index: 20;
}

.mockup__table:hover .table-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mockup__table--vip .table-tooltip {
  border-top: 2px solid var(--gold);
}

.globe-widget--active {
  border-left: 3px solid var(--gold);
}

.globe-expansion-text {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 20px;
}

.table-tooltip__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.table-tooltip__row:last-child {
  margin-bottom: 0;
}

.table-tooltip__label {
  color: var(--text-muted);
}

.table-tooltip__value {
  color: var(--text-primary);
  font-weight: 500;
}

.table-tooltip__vip {
  color: var(--gold);
  font-weight: 600;
}

.table-vip-star {
  position: absolute;
  top: -3px;
  right: -3px;
  color: var(--gold);
  font-size: 10px;
}

/* Staff footer stats */
.staff-footer {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.staff-footer__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.staff-footer__stat .stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.staff-footer__stat .stat-value--countdown {
  color: var(--accent-blue);
}

.staff-footer__stat .stat-label {
  font-size: 0.6rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================================
   VOICE SHOWCASE DEEP-DIVE
   ============================================ */
.voice-showcase {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.voice-showcase__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-body);
  z-index: 0;
}

.voice-showcase__bg::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(203, 164, 74, 0.08), transparent 70%);
  border-radius: 50%;
}

.voice-showcase .container {
  position: relative;
  z-index: 1;
}

.voice-showcase__content {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Phone Mockup — Consistent styles for both platform showcase and voice showcase */
.phone-mockup {
  width: 280px;
  min-height: 520px;
  max-height: 580px;
  border-radius: 36px;
  background: var(--bg-card);
  border: 2px solid var(--bg-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--gold-glow-sm);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Dynamic island */
.phone-mockup__notch {
  width: 70px;
  height: 5px;
  background: var(--bg-light);
  border-radius: 3px;
  margin: 10px auto 8px;
  flex-shrink: 0;
}

.phone-mockup__dynamic-island {
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 16px;
  margin: 0 auto 8px;
  position: relative;
  flex-shrink: 0;
}

.phone-mockup__dynamic-island::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #181C1F;
}

/* Call header */
.phone-mockup__header {
  padding: 8px 16px;
  border-bottom: 1px solid var(--bg-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.phone-mockup__call-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(203, 164, 74, 0.1);
  animation: pulse-ring 2s ease-out infinite;
  flex-shrink: 0;
}

.phone-mockup__title {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
}

.phone-mockup__subtitle {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.phone-mockup__equalizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-left: auto;
}

.phone-mockup__equalizer span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: equalizerBar 1.2s ease-in-out infinite;
}

.phone-mockup__equalizer span:nth-child(1) { height: 40%; animation-delay: 0s; }
.phone-mockup__equalizer span:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.phone-mockup__equalizer span:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.phone-mockup__equalizer span:nth-child(4) { height: 80%; animation-delay: 0.1s; }

/* Chat container — KEY FIX: no scroll, content must fit */
.phone-mockup__chat {
  flex: 1;
  overflow: hidden;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Chat bubbles */
.phone-mockup__bubble {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.4;
  max-width: 85%;
  position: relative;
}

.phone-mockup__bubble--system {
  background: rgba(203, 164, 74, 0.1);
  border: 1px solid rgba(203, 164, 74, 0.2);
  align-self: flex-start;
}

.phone-mockup__bubble--user {
  background: var(--bg-light);
  align-self: flex-end;
}

.phone-mockup__sender,
.mockup__bubble-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
  display: block;
}

.phone-mockup__bubble--user .phone-mockup__sender,
.mockup__bubble--customer .mockup__bubble-label {
  color: var(--text-secondary);
}

/* Typing indicator */
.phone-mockup__typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  align-self: flex-start;
  opacity: 0;
  animation: typingShow 0.3s var(--ease-out) forwards;
}

.phone-mockup__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-tertiary);
  animation: typingDot 1.4s ease-in-out infinite;
}

.phone-mockup__typing span:nth-child(2) { animation-delay: 0.2s; }
.phone-mockup__typing span:nth-child(3) { animation-delay: 0.4s; }

.phone-typing-0 { animation-delay: 0.3s; }
.phone-typing-1 { animation-delay: 2.8s; }
.phone-typing-2 { animation-delay: 5s; }

/* Animated bubbles for voice showcase */
.phone-bubble-1 { opacity: 0; animation: bubbleIn 0.5s var(--ease-out) forwards; animation-delay: 1.5s; }
.phone-bubble-2 { opacity: 0; animation: bubbleIn 0.5s var(--ease-out) forwards; animation-delay: 3.5s; }
.phone-bubble-3 { opacity: 0; animation: bubbleIn 0.5s var(--ease-out) forwards; animation-delay: 6s; }

/* Status messages */
.mockup__status {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}

/* Phone footer */
.phone-mockup__footer {
  padding: 8px 12px;
  border-top: 1px solid var(--bg-border-subtle);
  flex-shrink: 0;
}

.phone-mockup__status {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: auto;
  padding: 8px 12px;
  border-top: 1px solid var(--bg-border-subtle);
  flex-shrink: 0;
}

.phone-mockup__status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: var(--text-secondary);
  opacity: 0;
  animation: bubbleIn 0.4s var(--ease-out) forwards;
}

.phone-status-1 { animation-delay: 8s; }
.phone-status-2 { animation-delay: 9s; }

/* Voice Showcase Features */
.voice-showcase__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.voice-showcase__feature {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  transition: border-color 0.2s;
}

.voice-showcase__feature:hover {
  border-color: var(--gold);
}

.voice-showcase__feature.active {
  border-color: var(--gold);
  background: rgba(203, 164, 74, 0.08);
  color: var(--gold);
}

/* ============================================
   GLOBAL PRESENCE / GLOBE
   ============================================ */
.global {
  padding: 50px 0;
  background: var(--bg-slate);
}

/* Globe container styles moved to GLOBE WIDGETS section below */

.globe-tooltip {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 220px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: var(--card-shadow);
}

.globe-tooltip.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.globe-tooltip__name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.globe-tooltip__bar-track {
  height: 6px;
  background: var(--bg-primary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.375rem;
}

.globe-tooltip__bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.4s var(--ease-out);
}

.globe-tooltip__bar-fill--full {
  background: var(--accent-red);
}

.globe-tooltip__label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.globe-tooltip__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
}

.globe-tooltip__badge--full {
  background: rgba(248, 81, 73, 0.1);
  color: var(--accent-red);
}

.globe-tooltip__badge--open {
  background: rgba(63, 185, 80, 0.1);
  color: var(--accent-green);
}

.globe-tooltip__badge--soon {
  background: rgba(88, 166, 255, 0.1);
  color: var(--accent-blue);
}

.globe-tooltip__cta {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
}

/* Flat Map Fallback */
.flat-map {
  position: relative;
  width: 100%;
  aspect-ratio: 2;
}

.flat-map__svg {
  width: 100%;
  height: 100%;
}

.flat-map__markers {
  position: absolute;
  inset: 0;
}

.flat-map__marker {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.flat-map__marker-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.flat-map__marker--active .flat-map__marker-dot {
  animation: pulse-dot 2s ease-out infinite;
}

.flat-map__marker--coming .flat-map__marker-dot {
  background: var(--text-tertiary);
  opacity: 0.5;
}

/* Market Cards */
.market-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.market-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  font-size: 0.8125rem;
  transition: border-color 0.2s;
}

.market-card:hover {
  border-color: var(--gold);
}

.market-card__flag {
  font-size: 1.125rem;
}

.market-card__name {
  font-weight: 600;
}

.market-card__status {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-full);
}

.market-card__status--full {
  background: rgba(248, 81, 73, 0.1);
  color: var(--accent-red);
}

.market-card__status--open {
  background: rgba(63, 185, 80, 0.1);
  color: var(--accent-green);
}

.market-card__status--soon {
  background: rgba(88, 166, 255, 0.1);
  color: var(--accent-blue);
}

.market-card__label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ============================================
   METRICS
   ============================================ */
.metrics {
  padding: 50px 0;
  background: var(--bg-body);
  position: relative;
}

.metrics::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(203, 164, 74, 0.3), transparent);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.metric__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric__label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.metrics__disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-style: italic;
}

@media (max-width: 768px) {
  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 30px 0;
  background: var(--bg-slate);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(203, 164, 74, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.pricing__toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing__currency {
  padding: 0.375rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: all 0.2s;
}

.pricing__currency.active {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px var(--glow);
  transform: scale(1.02);
}

.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #050505;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 1rem;
}

.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card__amount {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 8px 0;
}

.pricing-card__amount--custom {
  font-size: 2rem;
}

.pricing-card__symbol {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-card__period {
  font-size: 1rem;
  color: var(--text-tertiary);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  font-size: 0.8rem;
  padding: 3px 0;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-card__features-header::before {
  display: none !important;
}

.pricing-card__features-header {
  padding-left: 0 !important;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.8125rem;
}

.pricing__notes {
  text-align: center;
  margin-top: 2.5rem;
}

.pricing__notes p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .pricing__grid,
  .pricing__grid--two {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 50px 0;
  background: var(--bg-body);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  padding: 0 1rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--bg-border);
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  gap: 1rem;
}

.faq__trigger:hover {
  color: var(--gold);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-slate);
  z-index: 0;
}

.contact__bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(203, 164, 74, 0.06), transparent 70%);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__calendly {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 550px;
}

.calendly-inline-widget {
  min-width: 280px;
  max-height: 550px;
  min-height: 550px;
}

.contact__info-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact__info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact__info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.contact__info-row a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.contact__info-row a:hover {
  color: var(--gold);
}

.contact__info-note {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact__info-response {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-body);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}


.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__col a:hover {
  color: var(--text-primary);
}

.footer__badge {
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(63, 185, 80, 0.1);
  color: var(--accent-green);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   SCROLL REVEAL BASE
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal--left {
  transform: translateX(-30px);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero__sub {
    font-size: 1rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__trust {
    font-size: 0.75rem;
  }

  .hero__scroll {
    display: none;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .problems,
  .platform,
  .voice-showcase,
  .metrics,
  .pricing,
  .faq,
  .contact {
    padding: 3.5rem 0;
  }

  .global {
    padding: 2.5rem 0 3.5rem;
  }

  .voice-showcase {
    padding-bottom: 2.5rem;
  }

  .voice-showcase__features {
    gap: 0.75rem;
  }

  .voice-showcase__feature {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  .phone-mockup {
    width: 280px;
    padding: 1.25rem;
    border-radius: 24px;
  }

  .globe-container {
    max-width: 100%;
  }

  .globe-container {
    height: 350px;
  }

  .globe-widget {
    font-size: 0.65rem;
    padding: 6px 10px;
  }

  .market-cards {
    gap: 0.5rem;
  }

  .market-card {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .metric__value {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .faq__trigger {
    font-size: 0.9375rem;
  }

  .contact__calendly {
    min-height: 500px;
  }

  .calendly-inline-widget {
    min-height: 500px;
  }
}

/* ============================================
   NAV LOGIN BUTTON (FIX 8)
   ============================================ */
.nav-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(203, 164, 74, 0.1);
  border: 1px solid rgba(203, 164, 74, 0.2);
  color: var(--gold);
  transition: all 0.2s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.nav-login:hover {
  background: rgba(203, 164, 74, 0.2);
  border-color: var(--gold);
  transform: scale(1.05);
}

/* ============================================
   VOICE PILLS & BUBBLES (PROMPT 3)
   ============================================ */
.voice-showcase__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.voice-pill {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  cursor: pointer;
  transition: all 0.2s var(--ease-standard);
}

.voice-pill:hover {
  border-color: rgba(203, 164, 74, 0.5);
  color: var(--text-primary);
}

.voice-pill.active {
  background: rgba(203, 164, 74, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Voice bubbles animation */
.voice-bubble {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.voice-status {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0;
}

.voice-status__item {
  font-size: 0.65rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Voice phone chat - smaller text to fit all messages */
.voice-phone .phone-mockup__chat {
  gap: 6px;
  padding: 8px 10px;
}

.voice-phone .phone-mockup__bubble {
  font-size: 0.65rem;
  padding: 6px 10px;
  line-height: 1.35;
}

.voice-phone .phone-mockup__sender {
  font-size: 0.55rem;
}

/* ============================================
   GLOBE WIDGETS (PROMPT 3)
   ============================================ */
.globe-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 550px;
  margin: 0 auto;
}

.globe-canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#globeCanvas {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#globeCanvas:active {
  cursor: grabbing;
}

.globe-widget {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: 10;
}

.globe-widget__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(203, 164, 74, 0.6);
  animation: globePulse 2s ease-out infinite;
  flex-shrink: 0;
}

.globe-widget__dot--expansion {
  width: 8px;
  height: 8px;
  background: var(--text-tertiary);
  box-shadow: none;
  animation: none;
}

@keyframes globePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.globe-widget__content {
  background: rgba(24, 28, 31, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.globe-widget__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.globe-widget__info {
  font-size: 0.65rem;
  color: var(--gold);
}

.globe-widget__info--expansion {
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .globe-container {
    height: 400px;
  }

  .globe-widget {
    display: none;
  }

  .voice-pill {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .voice-showcase__pills {
    gap: 0.5rem;
  }
}

/* ============================================
   MICRO-INTERACTIONS (FIX 14)
   ============================================ */
.btn:active, button:active {
  transform: scale(0.97);
}

.pricing-card:hover,
.faq__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(203, 164, 74, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

@keyframes nudgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(203, 164, 74, 0); }
  50% { box-shadow: 0 0 0 6px rgba(203, 164, 74, 0.2); }
}

.faq-nudge {
  animation: nudgePulse 1.5s ease-in-out 3;
}

@media print {
  .globe-container, .integrations-bar, canvas, .hero__bg, .hero-code-bg, .voice-showcase__bg, .contact__bg { display: none !important; }
  * { background: white !important; color: black !important; box-shadow: none !important; }
  .nav { position: static; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .hero__label {
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
  }

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

  .mockup__schedule-header,
  .mockup__schedule-row {
    grid-template-columns: 80px repeat(5, 1fr);
  }

  .mockup__schedule-name {
    font-size: 0.6875rem;
  }

  .mockup__shift {
    font-size: 0.5625rem;
    padding: 0.25rem;
  }

  .metrics__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

  .footer__bottom {
    font-size: 0.6875rem;
  }
}

/* SECTION SIZING */
section{padding:40px 0}
.integrations-bar{padding:16px 0}
.section-header{margin-bottom:24px}
.section-title{font-size:clamp(1.6rem,3vw,2.4rem);line-height:1.2;margin-bottom:8px;padding-bottom:.1em;overflow:visible}
.section-sub{font-size:.9rem;margin-bottom:0}
.problems{padding:40px 0}.problems__grid{gap:16px}.problem-card{padding:20px}
.problem-card__stat{font-size:clamp(2rem,4vw,3rem);margin:8px 0 4px}
.platform{padding:40px 0}.platform__panels{min-height:350px}
.mockup--phone .mockup__frame{max-height:400px}
.mockup__chat{padding:8px 10px;gap:6px}
.mockup__bubble{padding:6px 10px;font-size:.7rem}
.mockup__bubble-sender,.mockup__bubble-label{font-size:.55rem}
.mockup__frame--wide{max-height:340px;overflow:hidden}
.platform__features{margin-top:12px;gap:8px}
.platform__feature{font-size:.8rem;padding:4px 0}
.voice-showcase{padding:40px 0}
.phone-mockup{max-height:440px}
.phone-mockup__chat{padding:8px;gap:6px}
.phone-mockup__bubble{padding:6px 10px;font-size:.68rem}
.voice-showcase__features{margin-top:16px;gap:8px}
.global{padding:30px 0}
.globe-container{height:420px;max-width:500px}
.globe-svg{max-height:380px}
.globe-expansion-text,.globe-expansion{margin-top:12px;font-size:.8rem}
.metrics{padding:30px 0}
.metric__value{font-size:clamp(2.5rem,5vw,4rem)}
.metrics__disclaimer{margin-top:12px;font-size:.75rem}
.pricing{padding:30px 0}.pricing__grid{gap:16px}
.pricing-card{padding:20px}
.pricing-card__name{font-size:1rem}
.pricing-card__amount{font-size:clamp(1.8rem,3.5vw,2.4rem)}
.pricing-card__features{padding:0;margin:8px 0}
.pricing-card__features li{font-size:.78rem;padding:2px 0;line-height:1.4}
.pricing__notes{margin-top:12px;font-size:.75rem}
.faq{padding:30px 0}.faq__item{margin-bottom:4px}
.faq__trigger{padding:12px 16px;font-size:.9rem}
.faq__answer p{padding:8px 16px 12px;font-size:.85rem}
.contact{padding:30px 0}
.calendly-inline-widget{height:500px!important;min-height:400px}
.footer{padding:30px 0 16px}.footer__grid{gap:24px}
.footer__bottom{margin-top:16px;padding-top:12px}
