/* ═══════════════════════════════════════════════════════════════
   WAITCUT — Shared stylesheet
   Editorial luxe aesthetic: DM Serif + Instrument Sans
   Supports dark (default) and light theme
   ═══════════════════════════════════════════════════════════════ */

/* ── DARK theme (default) ── */
:root,
[data-theme="dark"] {
  --bg: #0A0908;
  --bg-2: #11100E;
  --card: #18171A;
  --card-2: #1F1D1C;
  --border: #2A2825;
  --border-2: #3A3530;

  --gold: #C9A84C;
  --gold-dk: #A8863A;
  --gold-lt: #F0DFA8;
  --gold-dim: #2A2010;
  --gold-glow: rgba(201, 168, 76, 0.18);

  --text: #F5F1EA;
  --text-sub: #9C9286;
  --text-dim: #5A5249;

  --green: #6FB892;
  --red: #D94F43;
  --blue: #6EA0D4;

  --ambient-1: rgba(201,168,76,0.10);
  --ambient-2: rgba(201,168,76,0.05);
  --noise-opacity: 0.025;
  --shadow-card: 0 30px 80px rgba(0,0,0,0.6);
  --btn-text: #000;

  --head: 'DM Serif Display', Georgia, serif;
  --body: 'Instrument Sans', -apple-system, system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 36px);
}

/* ── LIGHT theme ── */
[data-theme="light"] {
  --bg: #FAF8F4;
  --bg-2: #F3EFE6;
  --card: #FFFFFF;
  --card-2: #F7F3EB;
  --border: #E4DED1;
  --border-2: #D6CFC0;

  --gold: #A8863A;
  --gold-dk: #876A2C;
  --gold-lt: #C9A84C;
  --gold-dim: #F2E9CD;
  --gold-glow: rgba(168, 134, 58, 0.12);

  --text: #1A1815;
  --text-sub: #6B6357;
  --text-dim: #A09786;

  --green: #4E8E6A;
  --red: #B83C32;
  --blue: #3D6FA5;

  --ambient-1: rgba(168, 134, 58, 0.08);
  --ambient-2: rgba(168, 134, 58, 0.04);
  --noise-opacity: 0.015;
  --shadow-card: 0 20px 50px rgba(80, 60, 20, 0.08);
  --btn-text: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ── Ambient bg ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, var(--ambient-1) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, var(--ambient-2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: var(--noise-opacity);
  mix-blend-mode: overlay;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

main, header, footer { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════════════ */
/*  TYPOGRAPHY                                                     */
/* ═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 { font-family: var(--head); font-weight: 400; line-height: 1.08; color: var(--text); }
h1 { font-size: clamp(48px, 8vw, 96px); letter-spacing: -0.02em; }
h2 { font-size: clamp(36px, 5.5vw, 64px); letter-spacing: -0.015em; }
h3 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.01em; }
h4 { font-size: clamp(20px, 2.4vw, 26px); }
.em { font-style: italic; color: var(--gold);
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
p { color: var(--text); }
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.6; color: var(--text-sub); max-width: 56ch; }
.eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════════════════════════════════ */
/*  LAYOUT                                                         */
/* ═══════════════════════════════════════════════════════════════ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ═══════════════════════════════════════════════════════════════ */
/*  HEADER / NAV                                                   */
/* ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--gold), var(--gold-dk));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px var(--gold-glow);
  flex-shrink: 0;
}
.logo-mark svg { stroke: var(--bg) !important; }
.logo-text { font-family: var(--head); font-size: 26px; color: var(--text); }
.logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-sub);
  text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 1px;
  background: var(--gold);
}

.nav-cta {
  background: var(--gold); color: var(--btn-text);
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--gold-lt); color: var(--btn-text); transform: translateY(-1px); }

/* ── Nav controls: theme + language toggles ── */
.nav-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
  margin-left: 4px;
  border-left: 1px solid var(--border);
}

.lang-toggle {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.lang-toggle button {
  background: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--text-sub);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-toggle button.active {
  background: var(--gold);
  color: var(--btn-text);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-sub);
  transition: all 0.25s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(15deg);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.menu-toggle {
  display: none;
  background: none; border: none; color: var(--text); padding: 6px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px var(--pad);
    gap: 18px;
    align-items: flex-start;
  }
  .nav-links.open .nav-controls {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    width: 100%;
    justify-content: flex-start;
  }
  .menu-toggle { display: inline-flex; }
}

/* ═══════════════════════════════════════════════════════════════ */
/*  BUTTONS                                                        */
/* ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px; font-weight: 700;
  font-family: var(--body);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--btn-text);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px var(--gold-glow); color: var(--btn-text); filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--card); border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════ */
/*  CARDS / CONTENT BLOCKS                                         */
/* ═══════════════════════════════════════════════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}
.card.gold {
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
  border-color: rgba(201, 168, 76, 0.25);
}

.kicker {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ═══════════════════════════════════════════════════════════════ */
/*  FORM                                                            */
/* ═══════════════════════════════════════════════════════════════ */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--card);
}
.form-textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.role-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  background: var(--bg-2); padding: 6px; border-radius: 14px; margin-bottom: 22px;
  border: 1px solid var(--border);
}
.role-toggle button {
  background: transparent; border: none;
  padding: 12px;
  color: var(--text-sub);
  font-family: var(--body);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s;
}
.role-toggle button.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--btn-text);
  font-weight: 700;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(111, 184, 146, 0.15);
  border: 1px solid var(--green);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  FOOTER                                                         */
/* ═══════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 14px; }
.footer-col a { color: var(--text-sub); }
.footer-col a:hover { color: var(--text); }
.footer-tagline { font-size: 14px; color: var(--text-sub); max-width: 40ch; line-height: 1.6; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 13px; color: var(--text-dim);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  ANIMATIONS                                                     */
/* ═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3); }
  50%      { box-shadow: 0 12px 50px rgba(201, 168, 76, 0.5); }
}

.fade-up { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* ═══════════════════════════════════════════════════════════════ */
/*  HOMEPAGE — HERO                                                */
/* ═══════════════════════════════════════════════════════════════ */
.hero {
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: clamp(40px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero-content { max-width: 940px; }
.hero h1 { margin: 24px 0 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.hero-meta { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; color: var(--text-sub); font-size: 13px; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Floating phone mockup */
.hero-phone {
  position: absolute;
  right: -60px;
  top: 100px;
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #1A1A1A, #0A0A0A);
  border-radius: 42px;
  border: 1px solid #2A2A2A;
  padding: 10px;
  box-shadow: var(--shadow-card), 0 0 0 2px var(--gold-glow);
  animation: float 8s ease-in-out infinite;
  display: none;
  z-index: 0;
  opacity: 0.85;
  transform: rotate(8deg);
}
.hero-phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  padding: 40px 12px 12px;
}
@media (min-width: 1080px) { .hero-phone { display: block; } }

/* Mini app preview inside phone */
.phone-mini-card {
  background: var(--card);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 14px;
  padding: 14px;
  margin: 10px;
}
.phone-mini-card .row { display: flex; justify-content: space-between; align-items: flex-start; }
.phone-mini-pos { font-family: var(--head); font-size: 38px; color: var(--gold); line-height: 1; }
.phone-mini-time { font-family: var(--head); font-size: 26px; color: var(--text); line-height: 1; }
.phone-mini-lbl { font-size: 9px; color: var(--text-sub); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.phone-bars { display: flex; gap: 4px; margin: 14px 0 10px; height: 22px; align-items: flex-end; }
.phone-bar { flex: 1; border-radius: 3px; }
.phone-bar.f { background: rgba(201,168,76,0.3); height: 50%; }
.phone-bar.m { background: var(--gold); height: 100%; }
.phone-bar.e { background: var(--card-2); height: 30%; border: 1px solid var(--border); }
.phone-live { display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 9px; border-radius: 6px; font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  STATS BAR                                                      */
/* ═══════════════════════════════════════════════════════════════ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.stat { text-align: left; }
.stat-num { font-family: var(--head); font-size: clamp(32px, 5vw, 48px); color: var(--gold); line-height: 1; }
.stat-num small { font-size: 0.6em; color: var(--text-sub); margin-left: 4px; }
.stat-lbl { font-size: 12px; color: var(--text-sub); letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════ */
/*  FEATURE GRID                                                   */
/* ═══════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  transition: all 0.3s;
}
.feature:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}
.feature-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
}
.feature h4 { margin-bottom: 10px; }
.feature p { color: var(--text-sub); font-size: 15px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════ */
/*  TWO-COLUMN ALT BLOCKS                                          */
/* ═══════════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > div:first-child { order: 2; }
}
.two-col h3 { margin: 18px 0 18px; }
.two-col p { color: var(--text-sub); font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
.two-col ul { list-style: none; margin-top: 16px; }
.two-col ul li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--text);
  font-size: 15px;
}
.two-col ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 14px; height: 1px; background: var(--gold);
}

.visual-box {
  background: linear-gradient(135deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.visual-box.gold-bg {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border-color: rgba(201, 168, 76, 0.25);
}

/* ═══════════════════════════════════════════════════════════════ */
/*  CTA BLOCK                                                      */
/* ═══════════════════════════════════════════════════════════════ */
.cta-block {
  background: linear-gradient(135deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { margin-bottom: 18px; }
.cta-block .lead { margin: 0 auto 32px; }

/* ═══════════════════════════════════════════════════════════════ */
/*  PROCESS / TIMELINE                                             */
/* ═══════════════════════════════════════════════════════════════ */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
@media (max-width: 760px) { .process { grid-template-columns: 1fr; } }

.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
}
.process-num {
  font-family: var(--head);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.7;
}
.process-step h4 { margin-bottom: 12px; }
.process-step p { color: var(--text-sub); font-size: 15px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════ */
/*  PRICING                                                        */
/* ═══════════════════════════════════════════════════════════════ */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 50px; max-width: 880px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .pricing { grid-template-columns: 1fr; } }

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
}
.plan.featured {
  border-color: rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
}
.plan-badge {
  position: absolute; top: -10px; right: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--btn-text);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 8px;
}
.plan-name { font-family: var(--head); font-size: 28px; margin-bottom: 8px; }
.plan-price { font-family: var(--head); font-size: 56px; line-height: 1; }
.plan-price .per { font-family: var(--body); font-size: 14px; color: var(--text-sub); font-weight: 500; margin-left: 4px; }
.plan-sub { font-size: 14px; color: var(--text-sub); margin: 14px 0 24px; line-height: 1.5; }
.plan-list { list-style: none; }
.plan-list li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.plan-list li:last-child { border-bottom: none; }
.plan-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  PAGE HERO (sub-pages)                                          */
/* ═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: clamp(50px, 8vw, 90px) 0 clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); max-width: 18ch; margin-bottom: 20px; }
.page-hero h1 .chrome-gold { display: inline-block; }

/* ═══════════════════════════════════════════════════════════════ */
/*  OVER (about) page extras                                       */
/* ═══════════════════════════════════════════════════════════════ */
.story p { max-width: 64ch; margin-bottom: 22px; font-size: 17px; line-height: 1.75; color: var(--text); }
.story p:first-of-type::first-letter {
  font-family: var(--head);
  font-size: 4em;
  float: left;
  line-height: 0.95;
  padding: 3px 12px 0 0;
  color: var(--gold);
}
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }
.value h4 { margin-bottom: 10px; color: var(--gold); }
.value p { color: var(--text-sub); font-size: 15px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════ */
/*  POSTER-STYLE HEROES (chrome gold typography)                  */
/* ═══════════════════════════════════════════════════════════════ */

/* Chrome gold gradient — used on uppercase hero titles */
.chrome-gold {
  background: linear-gradient(180deg,
    #FAEFC9 0%,
    #F0DFA8 18%,
    #C9A84C 42%,
    #8A6A28 68%,
    #C9A84C 88%,
    #E8D595 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  /* Subtle text shadow for depth (only visible on dark) */
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.3));
}
[data-theme="light"] .chrome-gold {
  background: linear-gradient(180deg,
    #A8863A 0%,
    #876A2C 25%,
    #5C4818 50%,
    #876A2C 75%,
    #A8863A 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: none;
}

/* Quiet silver overline — the small grey text above the chrome title */
.silver-overline {
  display: block;
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 12px;
  opacity: 0.65;
}

/* Poster-hero shell: big uppercase serif headline */
.poster-hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 8vw, 90px);
  overflow: hidden;
}
.poster-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .poster-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.poster-title {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.poster-title > span { display: block; }

.poster-lead {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 32ch;
  margin-bottom: 36px;
}

/* Thin-icon bullets (the 3 icons next to text on the poster) */
.poster-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.poster-bullet {
  display: flex;
  align-items: center;
  gap: 18px;
}
.poster-bullet-ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.poster-bullet-ico svg { width: 100%; height: 100%; stroke-width: 1; }
.poster-bullet-text {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  POSTER PHONE MOCKUP (with 3D perspective)                     */
/* ═══════════════════════════════════════════════════════════════ */
.poster-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  min-height: 560px;
}
.poster-phone {
  position: relative;
  width: clamp(260px, 32vw, 340px);
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(155deg, #1F1D1B 0%, #0A0908 45%, #060504 100%);
  border-radius: 44px;
  padding: 10px;
  transform: rotateY(-12deg) rotateX(2deg) rotateZ(1.5deg);
  transform-style: preserve-3d;
  box-shadow:
    /* deep ambient */
    0 60px 120px -20px rgba(0,0,0,0.7),
    /* gold rim glow */
    0 0 60px rgba(201,168,76,0.18),
    /* metal highlight edges */
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 1px 1px 0 rgba(255,255,255,0.04);
  animation: phoneFloat 7s ease-in-out infinite;
}
[data-theme="light"] .poster-phone {
  box-shadow:
    0 50px 100px -20px rgba(80,60,20,0.25),
    0 0 60px rgba(168,134,58,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-12deg) rotateX(2deg) rotateZ(1.5deg) translateY(0); }
  50%      { transform: rotateY(-12deg) rotateX(2deg) rotateZ(1.5deg) translateY(-14px); }
}
.poster-phone-screen {
  width: 100%; height: 100%;
  background: #0A0908;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.poster-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 32%; height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 5;
}
.poster-phone-status {
  padding: 14px 20px 6px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  font-family: var(--body);
}
.poster-phone-status-icons {
  display: inline-flex; align-items: center; gap: 5px;
  color: #fff;
}
.poster-phone-body {
  flex: 1;
  padding: 8px 14px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--body);
}
.poster-phone-greeting {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.65);
  margin: 2px 4px 4px;
}
.poster-phone-greeting strong { color: #F5F1EA; font-weight: 700; }

.poster-phone-card {
  background: linear-gradient(165deg, rgba(40,32,18,0.6), rgba(20,18,16,0.4));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 16px;
  padding: 14px 16px;
}
.poster-phone-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.poster-phone-pos-lbl {
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  font-weight: 700;
  margin-bottom: 4px;
}
.poster-phone-pos-val {
  font-family: var(--head);
  font-size: 38px;
  line-height: 0.95;
  color: #F5F1EA;
}
.poster-phone-pos-val small {
  font-size: 0.5em;
  color: rgba(245,241,234,0.5);
  margin-left: 3px;
}
.poster-phone-pos-sub {
  font-size: 10px;
  color: rgba(245,241,234,0.55);
  margin-top: 4px;
}
.poster-phone-wait-lbl {
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  font-weight: 700;
}
.poster-phone-wait-val {
  font-family: var(--head);
  font-size: 30px;
  line-height: 0.95;
  background: linear-gradient(180deg, #FAEFC9, #C9A84C 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.poster-phone-wait-sub {
  font-size: 10px;
  color: rgba(245,241,234,0.5);
  margin-top: 2px;
}
.poster-phone-bars {
  display: flex; gap: 4px; height: 8px; margin: 8px 0 12px;
  align-items: center;
}
.poster-phone-bars div {
  flex: 1;
  background: rgba(201,168,76,0.85);
  height: 6px;
  border-radius: 3px;
}
.poster-phone-bars div:nth-child(1) { opacity: 0.5; }
.poster-phone-bars div:nth-child(2) { opacity: 0.7; }
.poster-phone-bars div:nth-child(3) { opacity: 1;   box-shadow: 0 0 8px rgba(201,168,76,0.5); }
.poster-phone-bars div:nth-child(4) { opacity: 0.4; }
.poster-phone-bars div:nth-child(5) { opacity: 0.25; }
.poster-phone-bars div:nth-child(6) { opacity: 0.15; }

.poster-phone-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(40, 32, 18, 0.7);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #C9A84C;
  letter-spacing: 0.5px;
}
.poster-phone-live-pill svg { width: 10px; height: 10px; }

.poster-phone-shop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(24, 23, 26, 0.6);
  border: 1px solid rgba(80, 75, 68, 0.5);
  border-radius: 14px;
}
.poster-phone-shop-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head);
  font-size: 18px;
  color: #0A0908;
  flex-shrink: 0;
}
.poster-phone-shop-ico.gold { background: linear-gradient(140deg, #F0DFA8, #C9A84C); }
.poster-phone-shop-ico.blue { background: linear-gradient(140deg, #93B5DD, #5B8FD4); color: #fff; }
.poster-phone-shop-meta { flex: 1; line-height: 1.3; }
.poster-phone-shop-name {
  font-size: 13px;
  font-weight: 600;
  color: #F5F1EA;
}
.poster-phone-shop-dist {
  font-size: 10px;
  color: rgba(245,241,234,0.5);
  margin-top: 1px;
}
.poster-phone-shop-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.poster-phone-shop-tag.green {
  background: rgba(111, 184, 146, 0.15);
  color: #6FB892;
  border: 1px solid rgba(111, 184, 146, 0.3);
}
.poster-phone-shop-tag.warn {
  background: rgba(201, 168, 76, 0.15);
  color: #C9A84C;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* Footer CTA gold pill inside phone */
.poster-phone-footer {
  margin-top: auto;
  padding: 16px 14px 20px;
}
.poster-phone-cta-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(180deg, #F0DFA8 0%, #C9A84C 50%, #A8863A 100%);
  color: #0A0908;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 14px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow:
    0 6px 18px rgba(201,168,76,0.35),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Hero gradient backdrop behind phone */
.poster-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -5%;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at center,
    rgba(201, 168, 76, 0.10) 0%,
    rgba(201, 168, 76, 0.04) 30%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.poster-hero > .container { position: relative; z-index: 1; }

/* CTA buttons under poster hero */
.poster-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
