/* ============================================
   SINERGIO SYSTEMS — SHARED STYLES
   Used across index, receptionist, media pages
============================================ */

:root {
  --bg: #1e2330;
  --bg-up: #252b3a;
  --bg-surface: #1a1f2c;
  --text-h: #e4e7ed;
  --text-body: #a8afc0;
  --text-muted: #6d7590;
  --border: rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.13);
  --border-hover: rgba(39,118,209,0.3);
  --accent: #2776d1;
  --accent-dim: #1f65b5;
  --accent-bright: #3a8be0;
  --accent-glow: rgba(39,118,209,0.12);
  --accent-bg: rgba(39,118,209,0.08);
  --coral: #ff7b6b;
  --violet: #9b7dff;
  --amber: #ffc145;
  --teal: #2dd4bf;
  --mint: #4ade80;
  --glass-bg: rgba(38,46,62,0.55);
  --glass-border: rgba(255,255,255,0.09);
  --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 40%, transparent 60%);
  --glass-shadow:
    0 8px 32px rgba(0,0,0,0.25),
    0 2px 8px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.06);
  --glass-shadow-up:
    0 24px 64px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Outfit', sans-serif;
  --font-s: 'Source Serif 4', Georgia, serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; background: var(--bg); }
body {
  font-family: var(--font-b);
  background: transparent;
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ===== AMBIENT BACKGROUND GRADIENT — static ===== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(39,118,209,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(155,125,255,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, rgba(45,212,191,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(255,193,69,0.04) 0%, transparent 45%);
}
@keyframes ambientDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -25px) scale(0.97); }
}

/* ===== SCROLL REVEALS ===== */
.rv { opacity:0; transform:translateY(50px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rv.v { opacity:1; transform:translateY(0); }
.rl { opacity:0; transform:translateX(-70px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rl.v { opacity:1; transform:translateX(0); }
.rr { opacity:0; transform:translateX(70px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rr.v { opacity:1; transform:translateX(0); }
.rs { opacity:0; transform:scale(.92); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rs.v { opacity:1; transform:scale(1); }
.d1 { transition-delay:.08s; } .d2 { transition-delay:.16s; } .d3 { transition-delay:.24s; }
.d4 { transition-delay:.32s; } .d5 { transition-delay:.4s; } .d6 { transition-delay:.48s; }
.d7 { transition-delay:.56s; } .d8 { transition-delay:.64s; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--teal));
  z-index: 1100;
  width: 0%;
  transition: width .15s linear;
  box-shadow: 0 0 8px rgba(39,118,209,0.6);
}

/* ===== GLASS CARD MIXIN ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.glass:hover {
  box-shadow: var(--glass-shadow-up);
  border-color: var(--border-hi);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(30,35,48,0.75);
  border-bottom: 1px solid var(--border);
  transition: all .4s;
  min-height: 96px;
}
nav.scrolled {
  padding: .7rem 3rem;
  background: rgba(30,35,48,0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  min-height: 80px;
}
.n-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 1.5rem;
  text-decoration: none;
  z-index: 3;
}
.n-logo img { height: 72px; width: auto; display: block; transition: all .4s; }
nav.scrolled .n-logo img { height: 60px; }

/* Centered letter logo (sinergio SYSTEMS lockup) */
.n-letter-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  z-index: 2;
  pointer-events: none;
}
.n-letter-logo img {
  height: 76px;
  width: auto;
  display: block;
  transition: height .4s;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}
nav.scrolled .n-letter-logo img { height: 64px; }
@media (max-width: 900px) {
  .n-letter-logo { display: none; }
}
.n-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  position: absolute;
  right: 3rem;
}
.n-links .mobile-only { display: none; }
.n-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .3s;
  position: relative;
}
.n-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .35s cubic-bezier(.22,1,.36,1);
}
.n-links a:hover { color: var(--text-h); }
.n-links a:hover::after { width: 100%; }
.n-links a.active { color: var(--text-h); }
.n-links a.active::after { width: 100%; }
.n-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: .5rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  transition: all .3s !important;
}
.n-cta::after { display: none !important; }
.n-cta:hover { background: var(--accent-dim) !important; transform: translateY(-1px); }

/* ===== SHARED STRUCTURE ===== */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 3rem; }
section { padding: 4rem 0; }

.eyebrow {
  display: block;
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: .9rem 1.5rem;
  /* Full-width bleed — escape the .wrap container */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.heading {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-h);
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

.heading em,
h1 em,
h2 em,
h3 em {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #7fa8d6;
  animation: none;
  padding: 0;
}
@keyframes shimmer {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ===== HERO ===== */
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 7rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 750px;
  height: 750px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(39,118,209,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 35%, rgba(155,125,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 75%, rgba(255,193,69,0.04) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-25px, 18px) rotate(2deg); }
  66% { transform: translate(18px, -12px) rotate(-1deg); }
}

.hero-content { max-width: 660px; position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fu .7s .2s forwards;
}
.hero-tag .pip {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.95rem, 3.6vw, 2.95rem);
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.13;
  letter-spacing: -1px;
  margin-bottom: 1.1rem;
  max-width: 620px;
  opacity: 0;
  animation: fu .7s .35s forwards;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

.hero-p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 1.7rem;
  opacity: 0;
  animation: fu .7s .5s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .7s .65s forwards;
}
@media (max-width: 500px) {
  .hero-btns { gap: .6rem; flex-wrap: nowrap; }
  .hero-btns .btn-a, .hero-btns .btn-b {
    padding: .75rem 1rem;
    font-size: .82rem;
    white-space: nowrap;
  }
}

.btn-a {
  background: var(--accent);
  color: var(--bg);
  padding: .9rem 2rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-h);
  transition: all .3s;
  box-shadow: 0 3px 8px rgba(39,118,209,0.45);
  position: relative;
  overflow: hidden;
}
.btn-a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-a:hover { background: var(--accent-dim); transform: translateY(-2px); box-shadow: 0 5px 14px rgba(39,118,209,0.55); }
.btn-a:hover::after { left: 130%; }

.btn-b {
  color: var(--text-h);
  padding: .9rem 1.6rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  font-family: var(--font-h);
  transition: all .3s;
  background: transparent;
  cursor: pointer;
}
.btn-b:hover { border-color: var(--accent); color: var(--accent); }

@keyframes fu {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO FLOATING CARDS ===== */
.hero-vis {
  position: absolute;
  right: 3rem;
  top: 50%;
  margin-top: -240px;
  width: 420px;
  height: 480px;
  z-index: 1;
  opacity: 0;
  animation: fu .9s .8s forwards;
}
.fl-card {
  position: absolute;
  padding: 1.2rem 1.5rem;
  background: rgba(38,46,62,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.3),
    0 2px 8px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  animation: bob 6s ease-in-out infinite;
  overflow: hidden;
  min-width: 240px;
}
.fl-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 30%, transparent 60%);
  pointer-events: none;
}
.fl-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.fc1 { top: 5%; left: 0; animation-delay: 0s; z-index: 3; }
.fc2 { top: 36%; right: 0; animation-delay: -2s; z-index: 2; }
.fc3 { top: 67%; left: 8%; animation-delay: -4s; z-index: 1; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.fc-t {
  font-weight: 700;
  font-size: .82rem;
  color: var(--text-h);
  margin-bottom: .2rem;
  position: relative;
  z-index: 2;
}
.fc-s { font-size: .75rem; color: var(--text-muted); position: relative; z-index: 2; }

/* ===== PROBLEM CARDS ===== */
.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.p-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.p-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.p-card:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.p-bar { width: 40px; height: 4px; border-radius: 2px; margin-bottom: 1.2rem; position: relative; z-index: 2; }
.p-bar.b1 { background: var(--accent); }
.p-bar.b2 { background: var(--coral); }
.p-bar.b3 { background: var(--violet); }
.p-bar.b4 { background: var(--amber); }
.p-bar.b5 { background: var(--teal); }
.p-bar.b6 { background: var(--mint); }
.p-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .55rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.p-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 5px rgba(0,0,0,0.45);
}

/* ===== FEATURE CARDS (used on receptionist + media pages) ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem 1.7rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.feat-card:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.feat-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.feat-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* ===== PROCESS TRACK ===== */
.proc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.proc-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 7%;
  width: 86%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  opacity: .15;
  border-radius: 1px;
}
.stp { text-align: center; padding: 0 2rem; position: relative; }
.stp-dot {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: all .6s cubic-bezier(.22,1,.36,1);
}
.stp-dot::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.stp.lit .stp-dot {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(39,118,209,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.stp:hover .stp-dot {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(39,118,209,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.stp h3 {
  font-family: var(--font-h);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .4rem;
}
.stp p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ===== STATS ===== */
.stat-bar {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  padding: 3.5rem 3rem;
  margin: 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.stat-bar::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 24px;
  background: var(--glass-shine);
  pointer-events: none;
}
.stat-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--coral), var(--amber));
  border-radius: 24px 24px 0 0;
}
.st { text-align: center; position: relative; z-index: 2; }
.st-n {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.1;
  margin-bottom: .3rem;
  letter-spacing: -1px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.st-l { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== PRICING ===== */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-row.four-col { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.price-row.five-col { grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.pc {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}
.pc .pc-btn { margin-top: auto; }
.pc::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 22px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.pc:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hi); }
.pc.pop {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(39,118,209,0.08) 0%, var(--glass-bg) 40%);
  box-shadow: var(--glass-shadow), 0 0 30px rgba(39,118,209,0.06);
}
/* Subtle diagonal shimmer — top-left to bottom-right, ~10s cycle */
.pc.pop::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.04) 55%, transparent 100%);
  transform: translateX(-100%) rotate(0deg);
  animation: popShimmer 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes popShimmer {
  0%, 80% { transform: translate(-100%, -25%); opacity: 0; }
  85% { opacity: 1; }
  95% { opacity: 1; }
  100% { transform: translate(300%, -25%); opacity: 0; }
}
.pop-badge {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  transform: none;
  background: var(--accent);
  color: var(--bg);
  font-size: .48rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: .22rem .55rem;
  border-radius: 0 21px 0 8px;
  z-index: 4;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(39,118,209,0.3);
}
/* pc-header cancels this padding via negative margin — keeps header flush at top */
.price-row .pc { padding-top: 1.8rem; }
.pc-header {
  /* Bleeds to card edges; top corners match card's border-radius */
  margin: -1.8rem -1.5rem 1.35rem;
  padding: 1.05rem 1.5rem;
  border-radius: 21px 21px 0 0;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.pc-tier {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.price-row.four-col .pc-tier { text-align: center; }
.pc-price {
  font-family: var(--font-h);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 0;
  letter-spacing: -.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.pc-price span {
  display: block;
  font-size: .42em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-bottom: 0.15rem;
}

/* ===== PRICING CARD HEADER — theme-specific colors ===== */
/* Business Manager (theme-index) */
body.theme-index .pc.d1 .pc-header {
  background: linear-gradient(160deg, rgba(39,118,209,0.28) 0%, rgba(39,118,209,0.14) 100%);
  border-bottom: 1px solid rgba(39,118,209,0.38);
}
body.theme-index .pc.d1 .pc-tier { color: #4a9eff; }
body.theme-index .pc.d2 .pc-header {
  background: linear-gradient(160deg, rgba(45,212,191,0.24) 0%, rgba(45,212,191,0.12) 100%);
  border-bottom: 1px solid rgba(45,212,191,0.38);
}
body.theme-index .pc.d2 .pc-tier { color: var(--teal); }
body.theme-index .pc.d3 .pc-header {
  background: linear-gradient(160deg, rgba(39,118,209,0.26) 0%, rgba(45,212,191,0.22) 100%);
  border-bottom: 1px solid rgba(45,212,191,0.32);
}
body.theme-index .pc.d3 .pc-tier { color: var(--teal); }

/* Receptionist (theme-receptionist) */
body.theme-receptionist .pc.d1 .pc-header {
  background: linear-gradient(160deg, rgba(255,107,138,0.22) 0%, rgba(255,107,138,0.10) 100%);
  border-bottom: 1px solid rgba(255,107,138,0.32);
}
body.theme-receptionist .pc.d1 .pc-tier { color: #ff6b8a; }
body.theme-receptionist .pc.d2 .pc-header {
  background: linear-gradient(160deg, rgba(192,132,252,0.22) 0%, rgba(192,132,252,0.10) 100%);
  border-bottom: 1px solid rgba(192,132,252,0.32);
}
body.theme-receptionist .pc.d2 .pc-tier { color: #c084fc; }
body.theme-receptionist .pc.d3 .pc-header {
  background: linear-gradient(160deg, rgba(39,118,209,0.22) 0%, rgba(45,212,191,0.18) 100%);
  border-bottom: 1px solid rgba(45,212,191,0.30);
}
body.theme-receptionist .pc.d3 .pc-tier { color: var(--teal); }
.pc-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 1.2rem 0;
  position: relative;
  z-index: 2;
}
.pc-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .87rem;
  color: var(--text-body);
}
.pc-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s;
  font-family: var(--font-h);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.pc-ongoing {
  font-size: .8rem;
  color: var(--accent);
  margin-top: .8rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.pc.pop .pc-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  box-shadow: 0 4px 14px rgba(39,118,209,0.2);
}
.pc.pop .pc-btn:hover { background: var(--accent-dim); transform: translateY(-1px); }
.pc:not(.pop) .pc-btn {
  background: transparent;
  color: var(--text-h);
  border: 1.5px solid var(--border);
}
.pc:not(.pop) .pc-btn:hover { border-color: var(--accent); color: var(--accent); }
.pc-add-on {
  margin-top: 1rem;
  padding: .7rem .9rem;
  background: rgba(39,118,209,0.05);
  border: 1px dashed rgba(39,118,209,0.25);
  border-radius: 10px;
  font-size: .8rem;
  color: var(--text-body);
  position: relative;
  z-index: 2;
}
.pc-add-on strong { color: var(--accent); font-weight: 600; }

/* ===== VERTICALS / CHIPS ===== */
.v-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.v-chip {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: all .45s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.v-chip::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: var(--glass-shine);
  pointer-events: none;
}
.v-chip:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.v-em { font-size: 1.6rem; margin-bottom: .4rem; display: block; position: relative; z-index: 2; }
.v-nm { font-size: .88rem; font-weight: 600; color: var(--text-h); position: relative; z-index: 2; }

/* ===== CTA BOX ===== */
.cta-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  margin: 0 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 28px;
  background: var(--glass-shine);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(39,118,209,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box .heading { max-width: 600px; margin: 0 auto .8rem; position: relative; z-index: 2; }
.cta-box .sub { margin: 0 auto 2.5rem; text-align: center; position: relative; z-index: 2; }
.cta-box .eyebrow {
  position: relative;
  z-index: 2;
  /* Inside CTA boxes, eyebrow stays contained — no full-width bleed */
  width: auto;
  left: auto;
  right: auto;
  margin-left: 0;
  margin-right: 0;
  background: transparent;
  border-top: none;
  border-bottom: none;
  padding: 0;
  margin-bottom: 1rem;
}

.btn-glow {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-h);
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(39,118,209,0.3);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-glow:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(39,118,209,0.4);
}
.btn-glow:hover::after { left: 130%; }

.cta-email {
  margin-top: 1.2rem;
  font-size: .85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}
.cta-email a { color: var(--accent); text-decoration: none; }

/* ===== FOOTER ===== */
footer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1.2rem;
}
.f-logo img { height: 56px; width: auto; display: block; }
.f-text-logo img { height: 56px; }
.f-links { display: flex; gap: 1.5rem; list-style: none; }
.f-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}
.f-links a:hover { color: var(--text-h); }
.f-copy { font-size: .8rem; color: var(--text-muted); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-h);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity .3s ease;
}
.menu-overlay.active { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-content { max-width: 100%; }
}
@media (max-width: 900px) {
  nav { padding: .9rem 1rem; min-height: 70px; }
  nav.scrolled { padding: .7rem 1rem; min-height: 60px; }
  /* S logo stays absolute on the left (smaller) */
  .n-logo { left: 1rem; }
  .n-logo img { height: 44px; }
  nav.scrolled .n-logo img { height: 40px; }
  /* Show letter logo in the center on mobile too */
  .n-letter-logo { display: flex; }
  .n-letter-logo img { height: 52px; }
  nav.scrolled .n-letter-logo img { height: 44px; }
  .hamburger { display: block; margin-left: auto; }
  .n-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: rgba(20,24,34,0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right .4s cubic-bezier(.22,1,.36,1);
    align-items: flex-start;
    border-left: 1px solid var(--border);
  }
  .n-links.open { right: 0; }
  .n-links li { width: 100%; }
  .n-links .mobile-only { display: block; }
  .n-links a {
    display: block;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .n-links a::after { display: none; }
  .n-cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none !important;
  }
  .wrap { padding: 0 1.5rem; }
  section { padding: 3.5rem 0; }
  .hero { padding: 6rem 1.5rem 4rem; min-height: 80vh; }
  .prob-grid, .feat-grid, .heads-row, .price-row, .price-row.four-col, .price-row.five-col { grid-template-columns: 1fr; }
  .proc-track { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .proc-track::before { display: none; }
  .v-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; padding: 2.5rem 2rem; margin: 0 1.5rem; gap: 2rem 1rem; }
  .cta-box { padding: 3rem 1.5rem; margin: 0 1.5rem; }
  footer { padding: 2.5rem 1.5rem; flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .proc-track, .v-grid, .stat-bar { grid-template-columns: 1fr; }
}

/* ===== RECEPTIONIST PAGE — LANGUAGE MARQUEE ===== */
.lang-showcase {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.lang-headline {
  text-align: center;
  margin-bottom: 3rem;
}
.lang-stat {
  display: inline-flex;
  align-items: baseline;
  gap: .8rem;
  margin-bottom: 1rem;
}
.lang-stat-num {
  font-family: var(--font-h);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #7fa8d6;
  letter-spacing: -2px;
  line-height: 1;
}
.lang-stat-lbl {
  font-size: 1.05rem;
  color: var(--text-h);
  font-weight: 500;
}
.lang-substat {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}
.lang-substat span {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .35rem .9rem;
  background: var(--accent-bg);
  border: 1px solid rgba(39,118,209,0.2);
  border-radius: 20px;
}

.marquee-wrapper {
  position: relative;
  margin: 2rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee {
  display: flex;
  width: max-content;
  gap: .9rem;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-2 {
  animation: marqueeScroll 60s linear infinite reverse;
  animation-delay: -2s;
  margin-top: .9rem;
}
.lang-pill {
  flex-shrink: 0;
  padding: .85rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  min-width: 130px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.lang-pill::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: var(--glass-shine);
  pointer-events: none;
}
.lang-native {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-h);
  white-space: nowrap;
}
.lang-en {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== VOICE FEATURE GRID ===== */
.voice-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vf-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.vf-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  background: var(--glass-shine);
  pointer-events: none;
}
.vf-card:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.vf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(39,118,209,0.2);
  position: relative;
  z-index: 2;
}
.vf-content { position: relative; z-index: 2; }
.vf-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.vf-card p {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== MEDIA PAGE — SERVICE TILES ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc-tile {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem 1.7rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: all .55s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
}
.svc-tile::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.svc-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 20px 20px;
  opacity: .8;
}
.svc-tile.t1::after { background: linear-gradient(90deg, var(--accent), var(--violet)); }
.svc-tile.t2::after { background: linear-gradient(90deg, var(--violet), var(--coral)); }
.svc-tile.t3::after { background: linear-gradient(90deg, var(--coral), var(--amber)); }
.svc-tile.t4::after { background: linear-gradient(90deg, var(--amber), var(--mint)); }
.svc-tile.t5::after { background: linear-gradient(90deg, var(--mint), var(--teal)); }
.svc-tile.t6::after { background: linear-gradient(90deg, var(--teal), var(--accent)); }
.svc-tile:hover {
  box-shadow: var(--glass-shadow-up);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.svc-tile h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .55rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.svc-tile p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* ===== INQUIRE BOX (custom-quote prompt on Media page) ===== */
.inquire-box {
  margin-top: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px dashed rgba(39,118,209,0.4);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inquire-box::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: var(--glass-shine);
  pointer-events: none;
}
.inquire-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid rgba(39,118,209,0.2);
  padding: .35rem .9rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.inquire-box h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.inquire-box p {
  font-size: .95rem;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ===== APPROACH GRID (used on main page) ===== */
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}
.approach-txt p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.approach-txt strong { color: var(--text-h); font-weight: 600; }
.a-diagram { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.a-box {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: .9rem 1.6rem;
  box-shadow: var(--glass-shadow);
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-h);
  text-align: center;
  min-width: 155px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.a-box::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: var(--glass-shine);
  pointer-events: none;
}
.a-box:hover { transform: translateY(-4px); box-shadow: var(--glass-shadow-up); }
.a-box.core {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(39,118,209,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.a-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--accent), rgba(39,118,209,0.15));
  border-radius: 1px;
}
.a-row { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* ===== TWO-HEADS / SPLIT (used on main page) ===== */
.heads-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.h-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.h-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  border-radius: 22px 22px 0 0;
  pointer-events: none;
  z-index: 1;
}
.h-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.h-num {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(39,118,209,0.18);
  position: absolute;
  top: .8rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(39,118,209,0.15);
}
.h-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-bg);
  padding: .3rem .8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.h-card h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .8rem;
  letter-spacing: -.3px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.h-card > p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.h-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: relative;
  z-index: 2;
}
.h-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-body);
}
.h-list li .ck {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .voice-feat-grid, .svc-grid { grid-template-columns: 1fr; }
  .heads-row { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   ADDITIONS — circuit BG, bigger tagline,
   section hub, mobile floating cards
============================================ */

/* ===== CIRCUIT BOARD BACKGROUND (subtle, behind everything) ===== */
.circuit-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.10;
  background-image: url("circuit-bg.png");
  background-repeat: repeat;
  background-size: 1408px 768px;
}

/* Make sure ambient sits above circuit but below content */
.ambient-bg {
  z-index: -1;
}

/* ===== BIGGER, MORE PROMINENT TAGLINE ===== */
.hero-tagline {
  font-family: var(--font-h);
  font-size: clamp(.95rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.2px;
  color: var(--text-h);
  margin-bottom: 1.4rem;
  max-width: none;
  white-space: nowrap;
  opacity: 0;
  animation: fu .7s .25s forwards;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-tagline em,
.hero-tagline b {
  font-family: var(--font-h);
  font-style: normal;
  font-weight: 700;
  color: var(--text-h);
  -webkit-text-fill-color: var(--text-h);
  background: none;
  animation: none;
}
.hero-tagline-pip {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: .8rem;
  vertical-align: middle;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}
@media (max-width: 700px) {
  .hero-tagline {
    white-space: normal;
    font-size: 1rem;
  }
}

/* ===== SECTION HUB CARDS (homepage only — below hero) ===== */
.hub-section {
  padding: 4rem 0 5rem;
  position: relative;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.hub-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: all .55s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  cursor: pointer;
}
.hub-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 22px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.hub-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  opacity: .9;
  transition: height .35s ease;
}
.hub-card.h1::after { background: linear-gradient(90deg, var(--accent), var(--violet)); }
.hub-card.h2::after { background: linear-gradient(90deg, var(--teal), var(--accent), var(--violet)); }
.hub-card.h3::after { background: linear-gradient(90deg, var(--coral), var(--amber), var(--violet)); }
.hub-card:hover {
  box-shadow: var(--glass-shadow-up);
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.hub-card:hover::after { height: 6px; }
.hub-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.hub-card h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .55rem;
  position: relative;
  z-index: 2;
  letter-spacing: -.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hub-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
  margin-bottom: 1.4rem;
}
.hub-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 2;
  margin-top: auto;
  transition: gap .3s ease;
}
.hub-cta::after {
  content: '→';
  transition: transform .3s ease;
}
.hub-card:hover .hub-cta { gap: .8rem; }
.hub-card:hover .hub-cta::after { transform: translateX(4px); }

/* ===== MOBILE FIXES — keep floating cards visible ===== */
@media (max-width: 1200px) {
  /* Stack hero content + visuals vertically instead of hiding */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
    margin-bottom: 3rem;
  }
  .hero-vis {
    display: block !important;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 460px;
    height: 380px;
    margin: 1rem auto 2rem;
    align-self: center;
  }
}
@media (max-width: 900px) {
  .hub-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .hub-card { min-height: auto; padding: 1.8rem 1.5rem; }

  .hero { padding: 6rem 1.5rem 2rem; }
  .hero-vis {
    height: 360px;
    max-width: 100%;
    margin: 0.5rem 0 1rem;
  }
  /* Reposition the floating cards so they fit a phone screen */
  .fc1 { top: 0; left: 0; right: auto; }
  .fc2 { top: 130px; right: 0; left: auto; }
  .fc3 { top: 250px; left: 8%; right: auto; bottom: auto; }
  .fl-card { min-width: 220px; padding: 1rem 1.2rem; }
}
@media (max-width: 500px) {
  .hero-vis { height: 340px; }
  .fl-card { min-width: 200px; padding: .9rem 1.1rem; }
  .fc1 { left: 0; }
  .fc2 { right: 0; left: auto; }
  .fc3 { left: 5%; }
  .hero-tagline { font-size: 1rem; }
}

/* ===== SECTION STRIP — 3 main page links, prominently below header ===== */
.section-strip {
  padding: 6rem 0 3rem;
  position: relative;
  z-index: 5;
}
.strip-grid {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.strip-link {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.4rem 1rem;
  min-height: 118px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--glass-shadow);
  text-align: center;
  border-bottom: 2px solid transparent;
}
.strip-link::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
/* Soft accent glow that appears on hover */
.strip-link::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 65%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity .5s ease;
  filter: blur(8px);
}
.strip-link.s2::after { background: radial-gradient(ellipse at center, var(--teal) 0%, transparent 65%); }
.strip-link.s3::after { background: radial-gradient(ellipse at center, var(--coral) 0%, transparent 65%); }

.strip-link:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glass-shadow-up);
  transform: translateY(-3px);
}
.strip-link:hover::after { opacity: 0.18; }
.strip-link.s1:hover { border-bottom-color: var(--accent); }
.strip-link.s2:hover { border-bottom-color: var(--teal); }
.strip-link.s3:hover { border-bottom-color: var(--coral); }

.strip-link.active {
  border-color: var(--accent);
  background: rgba(39,118,209,0.10);
}
.strip-link.active::after { opacity: 0.15; }
.strip-link.s1.active { border-bottom-color: var(--accent); }
.strip-link.s2.active { border-bottom-color: var(--teal); }
.strip-link.s3.active { border-bottom-color: var(--coral); }

.strip-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  position: relative;
  z-index: 3;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.strip-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 200, 255, 0.25));
  transition: filter .35s ease;
}
.strip-link:hover .strip-icon-img {
  filter: drop-shadow(0 0 18px rgba(0, 200, 255, 0.45));
}
.strip-svg { color: var(--accent-bright); }
.strip-link:hover .strip-icon { transform: scale(1.06); }
.strip-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.strip-name {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-h);
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  display: block;
  letter-spacing: -.1px;
}
/* "The" prefix on mobile: inline on desktop, block on mobile */
.strip-name-the {
  display: inline;
}
/* Page label — sits at top of section-strip, centered, above all cards */
.strip-page-label {
  text-align: center;
  margin-bottom: 1.75rem;
}
.strip-page-label span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
/* Remove old column-wrapper rules */
.strip-col,
.strip-col-active { display: contents; }

@media (max-width: 900px) {
  .section-strip { padding: 5.5rem 0 2rem; }
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1rem;
    gap: .5rem;
    max-width: none;
  }
  .strip-page-label { margin-bottom: 1.3rem; }
  .strip-page-label span { font-size: 0.85rem; }
  .strip-active-blurb { margin-bottom: 0.4rem; }
  .strip-active-blurb span { font-size: 0.65rem; }
  .strip-link {
    padding: 1rem .5rem;
    min-height: 92px;
    gap: .35rem;
  }
  .strip-icon { width: 44px; height: 44px; border-radius: 0; background: transparent; border: none; }
  .strip-name { font-size: .85rem; line-height: 1.2; }
  .strip-name-the { display: block; font-size: 0.75em; margin-bottom: 1px; }
}
@media (max-width: 500px) {
  .strip-grid { gap: .4rem; padding: 0 .8rem; }
  .strip-page-label { margin-bottom: 1rem; }
  .strip-page-label span { font-size: 0.75rem; letter-spacing: 1.2px; }
  .strip-active-blurb { margin-bottom: 0.3rem; }
  .strip-active-blurb span { font-size: 0.55rem; letter-spacing: 1px; }
  .strip-link {
    padding: .85rem .4rem;
    min-height: 84px;
    border-radius: 12px;
  }
  .strip-icon { width: 38px; height: 38px; }
  .strip-name { font-size: .78rem; }
}

/* When section-strip is present, hero compresses + adds bottom room for floating cards */
.section-strip + .hero {
  padding-top: 4.5rem;
  padding-bottom: 7rem;
  min-height: auto;
}
@media (max-width: 1200px) {
  .section-strip + .hero { padding-top: 3rem; padding-bottom: 4rem; }
}
@media (max-width: 900px) {
  /* Extra bottom padding so the photo's drop shadow doesn't get clipped by hero overflow */
  body.theme-receptionist .section-strip + .hero { padding-bottom: 5rem; }
}

/* ===== TAGLINE-ACCENT — softly luminous emphasis (no underline, no gradient) ===== */
.tagline-accent {
  font-weight: 700;
  color: var(--text-h);
  text-shadow:
    0 0 8px rgba(58, 139, 224, 0.55),
    0 0 18px rgba(39, 118, 209, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0 2px;
}

/* ===== COMING SOON BADGE on pricing cards ===== */
.pc-coming-soon {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .3rem .85rem;
  border-radius: 6px;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}
.pc-btn-disabled {
  display: block;
  width: 100%;
  text-align: center;
  padding: .8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  font-family: var(--font-h);
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  cursor: not-allowed;
  margin-top: auto;
  pointer-events: none;
  opacity: 0.65;
}

/* ===== BACK TO TOP LINK ===== */
/* ===== NEXUS SCREENSHOTS ===== */
.nexus-screenshots {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.nexus-screenshot-card {
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 500px;
}
.nexus-label {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-bright);
  margin-bottom: 0.75rem;
}
.nexus-img-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1rem;
  overflow: hidden;
}
.nexus-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.nexus-img-mobile {
  max-width: 280px;
  margin: 0 auto;
}

/* ===== INDUSTRY GRID ===== */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 700px;
  margin: 2rem auto 0;
}
.industry-pill {
  padding: 0.55rem 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: border-color 0.25s, background 0.25s;
}
.industry-pill:hover {
  border-color: var(--accent);
  background: rgba(39,118,209,0.08);
}

.back-to-top-wrap {
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: .65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .3s ease;
  cursor: pointer;
}
.back-to-top:hover {
  color: var(--text-h);
  border-color: var(--accent);
  background: rgba(39,118,209,0.10);
  transform: translateY(-2px);
}
.back-to-top-arrow {
  display: inline-block;
  font-size: .9rem;
  transition: transform .3s ease;
}
.back-to-top:hover .back-to-top-arrow {
  transform: translateY(-2px);
}

/* ===== INTRO TAGLINE (above section strip) ===== */
.intro-tagline {
  position: relative;
  z-index: 6;
  text-align: center;
  padding: 6rem 2rem 1.6rem;
  font-family: var(--font-h);
  font-size: clamp(.95rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--text-h);
  letter-spacing: -.1px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fu .7s .15s forwards;
}
.intro-tagline b {
  font-weight: 700;
  color: var(--text-h);
}
.intro-tagline-pip {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: .7rem;
  vertical-align: middle;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}
/* When intro-tagline is present, strip needs less top padding */
.intro-tagline + .section-strip {
  padding-top: 0;
}
/* And the hero needs to come up tighter */
.intro-tagline + .section-strip + .hero {
  padding-top: 4rem;
}
@media (max-width: 900px) {
  .intro-tagline { padding: 5rem 1.5rem 1.2rem; font-size: .95rem; }
}

/* ===== INLINE DEMO FORM (slides open from button) ===== */
.demo-form-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .35s ease, margin-top .55s cubic-bezier(.22,1,.36,1);
  margin-top: 0;
  width: 100%;
  max-width: 480px;
}
.demo-form-wrap.open {
  max-height: 720px;
  opacity: 1;
  margin-top: 1.5rem;
}
.demo-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.demo-form::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  background: var(--glass-shine);
  pointer-events: none;
}
.demo-form-title {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.demo-form-row {
  position: relative;
  z-index: 2;
  margin-bottom: .9rem;
}
.demo-form-row label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: .7rem .9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-h);
  font-family: var(--font-h);
  font-size: .95rem;
  transition: all .25s ease;
  outline: none;
}
.demo-form textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--accent);
  background: rgba(39,118,209,0.05);
  box-shadow: 0 0 0 3px rgba(39,118,209,0.12);
}
.demo-form input::placeholder,
.demo-form textarea::placeholder { color: var(--text-muted); }
.demo-form-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-top: 1.2rem;
  position: relative;
  z-index: 2;
}
.demo-form-send {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 3px 10px rgba(39,118,209,0.3);
}
.demo-form-send:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(39,118,209,0.45);
}
.demo-form-cancel {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: .7rem 1rem;
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .25s ease;
}
.demo-form-cancel:hover { color: var(--text-h); }
.demo-form-success {
  display: none;
  padding: 1rem;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 10px;
  color: var(--mint);
  font-size: .9rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.demo-form-wrap.sent .demo-form-row,
.demo-form-wrap.sent .demo-form-title,
.demo-form-wrap.sent .demo-form-actions { display: none; }
.demo-form-wrap.sent .demo-form-success { display: block; }

/* Centered demo form (used in pricing sections) */
.demo-form-wrap.demo-form-wrap-centered {
  margin-left: auto;
  margin-right: auto;
}
.demo-form-wrap.demo-form-wrap-centered.open {
  margin-top: 2rem;
}

/* ===== NAV LINK VISIBILITY (desktop vs mobile) ===== */
.nav-mobile-link {
  display: none;
}
@media (max-width: 900px) {
  .nav-mobile-link { display: block; }
  .nav-desktop-cta { display: none; }
}

/* ===== MOBILE CARD DENSITY — tighter padding so scrolling feels lighter ===== */
@media (max-width: 900px) {
  /* Problem cards (homepage) */
  .p-card { padding: 1.1rem 1.3rem 1.4rem; border-radius: 16px; }
  .p-card h3 { margin-bottom: .4rem; }

  /* Voice feature cards (receptionist) */
  .vf-card { padding: 1.3rem; border-radius: 16px; }

  /* Pricing cards */
  .pc { padding: 1.4rem 1.2rem; border-radius: 18px; }
  .price-row .pc { padding-top: 1.4rem; }
  .pc-header { margin: -1.4rem -1.2rem 1.1rem; padding: 0.9rem 1.2rem; border-radius: 17px 17px 0 0; }
  .pc-list li { padding: .35rem 0 .35rem 1.5rem; }
  .pc-divider { margin: .8rem 0; }
  .pc-desc { margin-bottom: .8rem; }

  /* Section vertical spacing — less air between sections */
  section { padding: 2.5rem 0; }
  #pricing { padding: 2.5rem 0 3rem; }

  /* Strip cards already compact, but trim a touch more on small screens */
  .strip-link { padding: .55rem .4rem; min-height: 84px; gap: .25rem; }
}
@media (max-width: 500px) {
  .p-card { padding: 0.9rem 1.1rem 1.2rem; }
  .vf-card { padding: 1.1rem; }
  .pc { padding: 1.2rem 1rem; }
  .price-row .pc { padding-top: 1.2rem; }
  .pc-header { margin: -1.2rem -1rem 1rem; padding: 0.8rem 1rem; border-radius: 17px 17px 0 0; }
}

/* =====================================================================
   THEME: RECEPTIONIST (warm plum + coral)
   Scoped to body.theme-receptionist — does not affect other pages
   ===================================================================== */

body.theme-receptionist {
  --bg: #1a1320;
  --bg-2: #211a26;
  --bg-3: #2a1f33;
  --text-h: #f8eef0;
  --text-body: #d4c5cf;
  --text-muted: #9c8a96;
  --accent: #ff6b8a;
  --accent-bright: #ff8aa5;
  --accent-dim: #e85375;
  --accent-soft: #ff6b8a99;
  --accent-bg: rgba(255, 107, 138, 0.12);
  --accent-border: rgba(255, 107, 138, 0.28);
  --accent-glow: rgba(255, 107, 138, 0.45);
  --secondary: #c084fc;
  --secondary-bright: #d4a5ff;
  --secondary-bg: rgba(192, 132, 252, 0.12);
  --teal: #c084fc;
  --coral: #ff6b8a;
  --mint: #ff6b8a;
  --border: rgba(244, 198, 215, 0.10);
  --glass-bg: rgba(42, 31, 51, 0.6);
  --glass-border: rgba(255, 138, 165, 0.14);
  --glass-shadow: 0 18px 50px rgba(15, 8, 20, 0.45);
  --glass-shine: linear-gradient(135deg, rgba(255, 138, 165, 0.06) 0%, transparent 40%, transparent 60%, rgba(192, 132, 252, 0.04) 100%);
  background: var(--bg);
  color: var(--text-body);
}

/* Body root background — switches to plum gradient instead of base navy */
body.theme-receptionist::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 0%, rgba(255, 107, 138, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 95%, rgba(192, 132, 252, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #1a1320 0%, #211a26 60%, #1a1320 100%);
  z-index: -3;
  pointer-events: none;
}

/* Hide circuit board on this theme — soundwave-bg replaces it */
body.theme-receptionist .circuit-bg { display: none; }

/* Soundwave background — sits at z -2 just above body::before */
body.theme-receptionist .soundwave-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.55;
}
body.theme-receptionist .soundwave-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Ambient bg — recoloured for warm theme */
body.theme-receptionist .ambient-bg {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 107, 138, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(192, 132, 252, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, rgba(255, 138, 165, 0.04) 0%, transparent 50%);
}

/* Hero glow — warm coral instead of blue */
body.theme-receptionist .hero-glow {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(255, 107, 138, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 35%, rgba(192, 132, 252, 0.07) 0%, transparent 50%);
}

/* Scroll progress bar — coral gradient */
body.theme-receptionist .scroll-progress {
  background: linear-gradient(90deg, #ff6b8a, #c084fc, #ff8aa5);
}

/* ====== Typography hooks for the theme ====== */
body.theme-receptionist h1,
body.theme-receptionist h2,
body.theme-receptionist .heading {
  font-family: 'Fraunces', 'Source Serif 4', serif;
  letter-spacing: -0.5px;
}
body.theme-receptionist .hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
body.theme-receptionist h1 em,
body.theme-receptionist h2 em,
body.theme-receptionist .heading em {
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: #ffb0c1;
  font-weight: 500;
}

/* Intro tagline — coral pip */
body.theme-receptionist .intro-tagline-pip {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
body.theme-receptionist .intro-tagline {
  color: var(--text-h);
}
body.theme-receptionist .intro-tagline b {
  color: #ffb0c1;
}

/* ====== Nav ====== */
body.theme-receptionist nav { background: rgba(26, 19, 32, 0.8); }
body.theme-receptionist nav.scrolled { background: rgba(26, 19, 32, 0.95); }
body.theme-receptionist .n-cta {
  background: var(--accent);
  color: #1a1320;
  box-shadow: 0 3px 10px rgba(255, 107, 138, 0.4);
}
body.theme-receptionist .n-cta:hover {
  background: var(--accent-bright);
  box-shadow: 0 5px 14px rgba(255, 107, 138, 0.55);
}
body.theme-receptionist .n-links a::after { background: var(--accent); }

/* ====== Section strip ====== */
body.theme-receptionist .strip-link {
  background: rgba(42, 31, 51, 0.6);
  border-color: rgba(255, 138, 165, 0.10);
}
body.theme-receptionist .strip-link:hover {
  background: rgba(255, 107, 138, 0.06);
  border-color: rgba(255, 107, 138, 0.28);
}
/* Active state: coral border */
body.theme-receptionist .strip-link.active {
  background: rgba(255, 107, 138, 0.10);
  border-color: rgba(255, 107, 138, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 107, 138, 0.15), 0 8px 24px rgba(255, 107, 138, 0.18);
}
body.theme-receptionist .strip-link.s2.active { border-bottom-color: var(--accent); }
body.theme-receptionist .strip-link.s1:hover { border-bottom-color: var(--accent); }
body.theme-receptionist .strip-link.s3:hover { border-bottom-color: var(--secondary); }
body.theme-receptionist .strip-link.s2::after { background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 65%); }
body.theme-receptionist .strip-link.s1::after { background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 65%); }
body.theme-receptionist .strip-link.s3::after { background: radial-gradient(ellipse at center, var(--secondary) 0%, transparent 65%); }
body.theme-receptionist .strip-icon {
  background: transparent;
  border: none;
  color: var(--accent-bright);
}
body.theme-receptionist .strip-link.s3 .strip-icon {
  background: transparent;
  border: none;
  color: var(--secondary-bright);
}
body.theme-receptionist .strip-name { color: var(--text-h); }
body.theme-receptionist .strip-link:hover .strip-name { color: #ffb0c1; }

/* ====== Buttons ====== */
body.theme-receptionist .btn-a {
  background: var(--accent);
  color: #1a1320;
  box-shadow: 0 3px 10px rgba(255, 107, 138, 0.45);
}
body.theme-receptionist .btn-a:hover {
  background: var(--accent-bright);
  box-shadow: 0 6px 18px rgba(255, 107, 138, 0.65);
}
body.theme-receptionist .btn-b {
  background: transparent;
  color: var(--text-h);
  border: 1px solid rgba(255, 138, 165, 0.25);
}
body.theme-receptionist .btn-b:hover {
  border-color: rgba(255, 138, 165, 0.55);
  background: rgba(255, 107, 138, 0.06);
  color: #ffb0c1;
}

body.theme-receptionist .btn-glow {
  background: linear-gradient(135deg, var(--accent), #d4537a);
  color: #1a1320;
  padding: 1.1rem 2.5rem;
  border-radius: 14px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(255, 107, 138, 0.45);
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
  border: none;
  cursor: pointer;
}
body.theme-receptionist .btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(255, 107, 138, 0.6);
}

/* ====== Eyebrow ====== */
body.theme-receptionist .eyebrow {
  color: var(--accent-bright);
  border-color: rgba(255, 107, 138, 0.35);
  background: rgba(255, 107, 138, 0.06);
}

/* ====== Hero floating cards ====== */
body.theme-receptionist .fl-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
}
body.theme-receptionist .fl-card .fc-t { color: var(--text-h); }
body.theme-receptionist .fl-card .fc-s { color: var(--text-muted); }

/* ====== Language showcase ====== */
body.theme-receptionist .lang-showcase {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 138, 0.04) 50%, transparent 100%);
}
body.theme-receptionist .lang-stat-num {
  color: var(--accent-bright);
  background: linear-gradient(135deg, #ff8aa5 0%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.theme-receptionist .lang-stat-lbl { color: var(--text-body); }
body.theme-receptionist .lang-substat span { color: var(--text-muted); }

/* Language pills */
body.theme-receptionist .lang-pill {
  background: rgba(42, 31, 51, 0.7);
  border: 1px solid rgba(255, 138, 165, 0.18);
  backdrop-filter: blur(10px);
}
body.theme-receptionist .lang-pill .lang-native { color: #ffb0c1; }
body.theme-receptionist .lang-pill .lang-en { color: var(--text-muted); }

/* Marquee fade edges adapt to dark plum */
body.theme-receptionist .marquee-wrapper::before,
body.theme-receptionist .marquee-wrapper::after {
  background: linear-gradient(90deg, #1a1320, transparent);
}
body.theme-receptionist .marquee-wrapper::after {
  background: linear-gradient(270deg, #1a1320, transparent);
}

/* ====== Voice feature cards ====== */
body.theme-receptionist .vf-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
}
body.theme-receptionist .vf-card:hover {
  border-color: rgba(255, 107, 138, 0.35);
  box-shadow: 0 18px 60px rgba(255, 107, 138, 0.18);
}
body.theme-receptionist .vf-icon {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}
body.theme-receptionist .vf-content h3 { color: var(--text-h); }

/* ====== Pricing ====== */
body.theme-receptionist .pc {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
}
body.theme-receptionist .pc:hover {
  border-color: rgba(255, 107, 138, 0.35);
  box-shadow: 0 22px 60px rgba(255, 107, 138, 0.18);
}
body.theme-receptionist .pc.pop {
  border: 1.5px solid rgba(255, 107, 138, 0.45);
  background: linear-gradient(180deg, rgba(255, 107, 138, 0.08) 0%, rgba(42, 31, 51, 0.65) 100%);
  box-shadow: 0 22px 70px rgba(255, 107, 138, 0.28);
}
body.theme-receptionist .pop-badge {
  background: linear-gradient(135deg, var(--accent), #d4537a);
  color: #1a1320;
}
/* pc-tier inherits its color from the base rule (var(--accent)),
   so it picks up the receptionist pink automatically — matching how the
   index page uses its blue accent. No color override needed. */
body.theme-receptionist .pc-price { color: var(--text-h); }
body.theme-receptionist .pc-price span { color: var(--text-muted); }
body.theme-receptionist .pc-ongoing { color: var(--accent-bright); }
body.theme-receptionist .pc-divider {
  background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), transparent);
}
body.theme-receptionist .pc-desc { color: var(--text-body); }
body.theme-receptionist .pc-list li { color: var(--text-body); }
body.theme-receptionist .pc-list li::before { color: var(--accent); }
body.theme-receptionist .pc-btn {
  background: rgba(255, 107, 138, 0.12);
  color: var(--accent-bright);
  border: 1px solid rgba(255, 107, 138, 0.35);
}
body.theme-receptionist .pc-btn:hover {
  background: var(--accent);
  color: #1a1320;
  border-color: var(--accent);
}
body.theme-receptionist .pc.pop .pc-btn {
  background: var(--accent);
  color: #1a1320;
  border-color: var(--accent);
}
body.theme-receptionist .pc.pop .pc-btn:hover {
  background: var(--accent-bright);
}
body.theme-receptionist .pc-coming-soon {
  background: rgba(192, 132, 252, 0.15);
  color: var(--secondary-bright);
  border-color: rgba(192, 132, 252, 0.35);
}
body.theme-receptionist .pc-btn-disabled {
  background: rgba(192, 132, 252, 0.08);
  color: var(--text-muted);
  border-color: rgba(192, 132, 252, 0.18);
}
body.theme-receptionist .pc.pop::after {
  background: linear-gradient(115deg, transparent 30%, rgba(255, 138, 165, 0.10) 50%, transparent 70%);
}

/* ====== CTA box ====== */
body.theme-receptionist .cta-box {
  background: linear-gradient(135deg, rgba(255, 107, 138, 0.10) 0%, rgba(192, 132, 252, 0.08) 100%);
  border: 1.5px solid rgba(255, 107, 138, 0.25);
}

/* ====== Demo form ====== */
body.theme-receptionist .demo-form {
  background: rgba(42, 31, 51, 0.85);
  border: 1px solid rgba(255, 138, 165, 0.20);
}
body.theme-receptionist .demo-form-title { color: var(--text-h); }
body.theme-receptionist .demo-form input,
body.theme-receptionist .demo-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 138, 165, 0.16);
  color: var(--text-h);
}
body.theme-receptionist .demo-form input:focus,
body.theme-receptionist .demo-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 107, 138, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.18);
}
body.theme-receptionist .demo-form-row label { color: var(--text-muted); }
body.theme-receptionist .demo-form-send {
  background: var(--accent);
  color: #1a1320;
  box-shadow: 0 3px 10px rgba(255, 107, 138, 0.4);
}
body.theme-receptionist .demo-form-send:hover {
  background: var(--accent-bright);
  box-shadow: 0 5px 14px rgba(255, 107, 138, 0.55);
}
body.theme-receptionist .demo-form-success {
  background: rgba(255, 107, 138, 0.10);
  border-color: rgba(255, 107, 138, 0.30);
  color: var(--accent-bright);
}

/* ====== Tagline accent ====== */
body.theme-receptionist .tagline-accent {
  color: #ffb0c1;
  text-shadow: 0 0 14px rgba(255, 107, 138, 0.45);
}

/* ====== Problem cards (if shown) ====== */
body.theme-receptionist .p-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}
body.theme-receptionist .p-card h3 { color: var(--text-h); }
body.theme-receptionist .p-bar { background: var(--accent); }
body.theme-receptionist .p-bar.b2 { background: var(--secondary); }
body.theme-receptionist .p-bar.b3 { background: #ff8aa5; }

/* ====== Hero text ====== */
body.theme-receptionist .hero h1 {
  color: var(--text-h);
  text-shadow: 0 3px 18px rgba(15, 8, 20, 0.6);
}
body.theme-receptionist .hero-p { color: var(--text-body); }

/* ====== Footer ====== */
body.theme-receptionist footer {
  background: rgba(15, 9, 18, 0.6);
  border-top: 1px solid rgba(255, 138, 165, 0.12);
}
body.theme-receptionist footer a { color: var(--text-muted); }
body.theme-receptionist footer a:hover { color: var(--accent-bright); }
body.theme-receptionist .f-copy { color: var(--text-muted); }

/* ====== Back to top ====== */
body.theme-receptionist .back-to-top {
  background: rgba(255, 107, 138, 0.08);
  border: 1px solid rgba(255, 138, 165, 0.20);
  color: var(--accent-bright);
}
body.theme-receptionist .back-to-top:hover {
  background: rgba(255, 107, 138, 0.15);
  border-color: rgba(255, 138, 165, 0.40);
  color: #ffb0c1;
}

/* ====== Hamburger menu ====== */
body.theme-receptionist .hamburger span { background: var(--text-h); }
body.theme-receptionist .n-links {
  background: rgba(26, 19, 32, 0.98);
}
body.theme-receptionist .menu-overlay { background: rgba(15, 8, 20, 0.6); }

/* CSSEOF */

/* ===== Hero photo + animated voice waveform (Receptionist page) ===== */
body.theme-receptionist .hero-vis-photo {
  position: relative;
  top: auto;
  right: auto;
  margin-top: 0;
  height: auto;
  width: 100%;
  max-width: 540px;
}
body.theme-receptionist .hero-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 30px 60px -10px rgba(0, 0, 0, 0.7),
    0 18px 36px -8px rgba(0, 0, 0, 0.55),
    0 8px 16px -4px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 138, 165, 0.18);
}
body.theme-receptionist .hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  filter: saturate(1.05) contrast(1.02);
  opacity: 0.85;
}
/* Coral glow vignette around photo edges to tie photo into the warm palette */
body.theme-receptionist .hero-photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(255, 107, 138, 0.12) 80%, rgba(255, 107, 138, 0.22) 100%);
  pointer-events: none;
  border-radius: 20px;
  mix-blend-mode: overlay;
}

/* Voice wave overlay — pinned bottom-left of photo */
body.theme-receptionist .voice-wave-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .5rem .9rem .5rem .5rem;
  border-radius: 30px;
  background: rgba(15, 8, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 138, 165, 0.25);
  box-shadow: 0 8px 24px rgba(15, 8, 20, 0.4);
  z-index: 5;
}
body.theme-receptionist .vw-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8aa5, #ff6b8a);
  color: #1a0a14;
  flex-shrink: 0;
  padding: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 4px 14px rgba(255, 107, 138, 0.45), 0 0 0 0 rgba(255, 138, 165, 0.55);
  position: relative;
  /* Pulse by default to draw attention; stops when playing. */
  animation: vw-play-pulse 1.8s ease-out infinite;
}
body.theme-receptionist .vw-play:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(255, 107, 138, 0.6), 0 0 0 6px rgba(255, 138, 165, 0.18);
}
body.theme-receptionist .vw-play:active {
  transform: scale(0.96);
}
body.theme-receptionist .vw-play:focus-visible {
  outline: 2px solid #ffb0c1;
  outline-offset: 3px;
}
body.theme-receptionist .vw-play svg {
  width: 14px;
  height: 14px;
  fill: #1a0a14;
  display: block;
}
body.theme-receptionist .vw-play .vw-play-icon {
  margin-left: 1px; /* optical centering for the triangle */
}
body.theme-receptionist .vw-play .vw-pause-icon { display: none; }
body.theme-receptionist .vw-play.is-playing .vw-play-icon { display: none; }
body.theme-receptionist .vw-play.is-playing .vw-pause-icon { display: block; }
/* While playing, stop the attention pulse — playback itself is the signal now. */
body.theme-receptionist .vw-play.is-playing {
  animation: none;
}
@keyframes vw-play-pulse {
  0%   { box-shadow: 0 4px 14px rgba(255, 107, 138, 0.45), 0 0 0 0 rgba(255, 138, 165, 0.55); }
  70%  { box-shadow: 0 4px 14px rgba(255, 107, 138, 0.45), 0 0 0 14px rgba(255, 138, 165, 0); }
  100% { box-shadow: 0 4px 14px rgba(255, 107, 138, 0.45), 0 0 0 0 rgba(255, 138, 165, 0); }
}
/* Bars are static and slightly dimmed by default; spring to life on play. */
body.theme-receptionist .vw-bars {
  display: flex;
  align-items: center;
  gap: 3px;
}
body.theme-receptionist .vw-bar {
  width: 3px;
  background: linear-gradient(180deg, #ff8aa5, #ff6b8a);
  border-radius: 2px;
  opacity: 0.55;
  transform: scaleY(0.7);
  transform-origin: center;
}
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bar {
  opacity: 1;
  background: linear-gradient(180deg, #ffb0c1, #ff6b8a);
  animation: vw-bounce-strong 0.55s ease-in-out infinite;
}
@keyframes vw-bounce-strong {
  0%, 100% { transform: scaleY(0.25); opacity: 0.7; }
  50%      { transform: scaleY(1.4); opacity: 1; }
}
body.theme-receptionist .vw-bars .vw-bar:nth-child(1)  { height: 8px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(2)  { height: 14px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(3)  { height: 20px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(4)  { height: 12px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(5)  { height: 22px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(6)  { height: 16px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(7)  { height: 10px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(8)  { height: 24px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(9)  { height: 14px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(10) { height: 18px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(11) { height: 8px; }
body.theme-receptionist .vw-bars .vw-bar:nth-child(12) { height: 12px; }
/* Stagger the bounce only when playing so they don't all pulse in unison. */
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(1)  { animation-delay: 0s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(2)  { animation-delay: -0.1s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(3)  { animation-delay: -0.2s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(4)  { animation-delay: -0.3s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(5)  { animation-delay: -0.4s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(6)  { animation-delay: -0.5s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(7)  { animation-delay: -0.15s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(8)  { animation-delay: -0.45s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(9)  { animation-delay: -0.25s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(10) { animation-delay: -0.55s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(11) { animation-delay: -0.35s; }
body.theme-receptionist .voice-wave-overlay.is-playing .vw-bars .vw-bar:nth-child(12) { animation-delay: -0.05s; }

/* Caption beneath the photo */
body.theme-receptionist .voice-sample-caption {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--text-muted);
  font-style: italic;
}
body.theme-receptionist .vw-label {
  margin-left: 8px;
  color: #ffb0c1;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Floating cards positioned BESIDE the photo, not overlapping the woman's face */
body.theme-receptionist .fl-card-overlap {
  position: absolute;
  z-index: 4;
  animation: bob 6s ease-in-out infinite;
  width: 230px;
  max-width: 230px;
}
body.theme-receptionist .fl-card-overlap.fc1 {
  top: 14%;
  left: -28%;
  animation-delay: 0s;
}
body.theme-receptionist .fl-card-overlap.fl-card-bottom {
  bottom: 8%;
  left: -22%;
  animation-delay: -3s;
}

@media (max-width: 1280px) {
  body.theme-receptionist .fl-card-overlap.fc1 { left: -18%; }
  body.theme-receptionist .fl-card-overlap.fl-card-bottom { left: -12%; }
}
@media (max-width: 1100px) {
  /* Hide overlap cards entirely on smaller desktop — photo on its own */
  body.theme-receptionist .fl-card-overlap { display: none; }
}
@media (max-width: 900px) {
  body.theme-receptionist .hero-vis-photo { max-width: 100%; margin-top: 3.5rem; }
}


/* =====================================================================
   THEME: BUSINESS MEDIA (dark earthy — forest + terracotta + warm gold)
   Inspired by portfolio_poster (Aurora Botanicals) and portfolio_website
   Scoped to body.theme-media — does not affect other pages
   ===================================================================== */

body.theme-media {
  --bg: #1c2620;
  --bg-2: #221c18;
  --bg-3: #2a221c;
  --text-h: #f5ede4;
  --text-body: #c5b8a8;
  --text-muted: #8a7e72;
  --accent: #d97a55;
  --accent-bright: #e89373;
  --accent-dim: #b8623f;
  --accent-soft: #d97a5599;
  --accent-bg: rgba(217, 122, 85, 0.12);
  --accent-border: rgba(217, 122, 85, 0.30);
  --accent-glow: rgba(217, 122, 85, 0.40);
  --secondary: #c8a572;
  --secondary-bright: #d8b885;
  --secondary-bg: rgba(200, 165, 114, 0.12);
  --teal: #c8a572;
  --coral: #d97a55;
  --mint: #d97a55;
  --border: rgba(245, 237, 228, 0.10);
  --glass-bg: rgba(40, 32, 26, 0.6);
  --glass-border: rgba(200, 165, 114, 0.14);
  --glass-shadow: 0 18px 50px rgba(8, 14, 11, 0.55);
  --glass-shine: linear-gradient(135deg, rgba(200, 165, 114, 0.06) 0%, transparent 40%, transparent 60%, rgba(217, 122, 85, 0.04) 100%);
  background: var(--bg);
  color: var(--text-body);
}

/* Body root background — deep forest-charcoal gradient with warm undertones */
body.theme-media::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 0%, rgba(217, 122, 85, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 100%, rgba(200, 165, 114, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #1c2620 0%, #221c18 60%, #1a1410 100%);
  z-index: -3;
  pointer-events: none;
}

/* Hide circuit board on this theme */
body.theme-media .circuit-bg { display: none; }

/* Paper grain texture overlay — now on dark, very subtle warm noise */
body.theme-media .paper-grain-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 2px,
      rgba(200, 165, 114, 0.018) 2px,
      rgba(200, 165, 114, 0.018) 3px
    ),
    radial-gradient(circle at 20% 30%, rgba(200, 165, 114, 0.025) 0.5px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(217, 122, 85, 0.022) 0.5px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(200, 165, 114, 0.020) 0.5px, transparent 1px);
  background-size: auto, 4px 4px, 6px 6px, 5px 5px;
}

/* Ambient bg — warm dark */
body.theme-media .ambient-bg {
  background:
    radial-gradient(ellipse at 25% 15%, rgba(217, 122, 85, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 25%, rgba(200, 165, 114, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(217, 122, 85, 0.04) 0%, transparent 50%);
}

/* Hero glow */
body.theme-media .hero-glow {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(217, 122, 85, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(200, 165, 114, 0.06) 0%, transparent 50%);
}

/* Scroll progress bar */
body.theme-media .scroll-progress {
  background: linear-gradient(90deg, #d97a55, #c8a572, #e89373);
}

/* ====== Typography ====== */
body.theme-media h1,
body.theme-media h2,
body.theme-media .heading {
  font-family: 'Cormorant Garamond', 'Source Serif 4', serif;
  letter-spacing: -0.3px;
  font-weight: 600;
  color: var(--text-h);
}
body.theme-media .hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--text-h);
  text-shadow: 0 3px 18px rgba(8, 14, 11, 0.6);
}
body.theme-media h1 em,
body.theme-media h2 em,
body.theme-media .heading em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--secondary-bright);
  font-weight: 500;
}
body.theme-media .hero-p { color: var(--text-body); }
body.theme-media .sub { color: var(--text-body); }

/* Intro tagline */
body.theme-media .intro-tagline-pip {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
body.theme-media .intro-tagline {
  color: var(--text-h);
}
body.theme-media .intro-tagline b { color: var(--secondary-bright); }

/* ====== Nav ====== */
body.theme-media nav {
  background: rgba(28, 38, 32, 0.8);
  border-bottom: 1px solid rgba(200, 165, 114, 0.10);
}
body.theme-media nav.scrolled {
  background: rgba(28, 38, 32, 0.95);
  box-shadow: 0 2px 18px rgba(8, 14, 11, 0.30);
}
body.theme-media .n-cta {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 3px 10px rgba(217, 122, 85, 0.40);
}
body.theme-media .n-cta:hover {
  background: var(--accent-bright);
  box-shadow: 0 5px 14px rgba(217, 122, 85, 0.55);
}

/* ====== Section strip ====== */
body.theme-media .strip-link {
  background: rgba(40, 32, 26, 0.6);
  border-color: rgba(200, 165, 114, 0.10);
  box-shadow: 0 4px 14px rgba(8, 14, 11, 0.30);
}
body.theme-media .strip-link:hover {
  background: rgba(217, 122, 85, 0.06);
  border-color: rgba(217, 122, 85, 0.28);
  box-shadow: 0 8px 24px rgba(8, 14, 11, 0.40);
}
body.theme-media .strip-link.active {
  background: rgba(217, 122, 85, 0.10);
  border-color: rgba(217, 122, 85, 0.45);
  box-shadow: 0 0 0 1px rgba(217, 122, 85, 0.15), 0 8px 24px rgba(217, 122, 85, 0.20);
}
body.theme-media .strip-link.s3.active { border-bottom-color: var(--accent); }
body.theme-media .strip-link.s1:hover { border-bottom-color: var(--secondary); }
body.theme-media .strip-link.s2:hover { border-bottom-color: var(--accent); }
body.theme-media .strip-link.s1::after { background: radial-gradient(ellipse at center, var(--secondary) 0%, transparent 65%); }
body.theme-media .strip-link.s2::after { background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 65%); }
body.theme-media .strip-link.s3::after { background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 65%); }
body.theme-media .strip-icon {
  background: transparent;
  border: none;
}
body.theme-media .strip-name { color: var(--text-h); }
body.theme-media .strip-link:hover .strip-name { color: var(--accent-bright); }

/* ====== Buttons ====== */
body.theme-media .btn-a {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 4px 14px rgba(217, 122, 85, 0.40);
}
body.theme-media .btn-a:hover {
  background: var(--accent-bright);
  box-shadow: 0 6px 20px rgba(217, 122, 85, 0.55);
}
body.theme-media .btn-b {
  background: transparent;
  color: var(--text-h);
  border: 1px solid rgba(200, 165, 114, 0.30);
}
body.theme-media .btn-b:hover {
  border-color: var(--secondary);
  background: rgba(200, 165, 114, 0.06);
  color: var(--secondary-bright);
}

/* ====== Eyebrow ====== */
body.theme-media .eyebrow {
  color: var(--accent-bright);
  border-color: rgba(217, 122, 85, 0.35);
  background: rgba(217, 122, 85, 0.06);
}

/* ====== PORTFOLIO GRID ====== */
body.theme-media .port-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
body.theme-media .port-tile {
  /* Default span — gets overridden per tile below */
  grid-column: span 6;
}
body.theme-media .port-tile {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--glass-shadow);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .3s;
  position: relative;
  overflow: hidden;
}
body.theme-media .port-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 122, 85, 0.35);
  box-shadow: 0 22px 60px rgba(8, 14, 11, 0.55), 0 8px 20px rgba(217, 122, 85, 0.15);
}
body.theme-media .port-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 16 / 10;
  box-shadow: 0 8px 24px rgba(8, 14, 11, 0.50), inset 0 0 0 1px rgba(200, 165, 114, 0.12);
}
body.theme-media .port-image-wrap.port-image-tall {
  /* No forced aspect-ratio — let the image's natural shape determine height. */
  aspect-ratio: auto;
  background: transparent;
  box-shadow: none;
}
body.theme-media .port-image-wrap.port-image-tall .port-image {
  /* Show entire image at natural proportions, with rounded corners. */
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
body.theme-media .port-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
body.theme-media .port-tile:hover .port-image {
  transform: scale(1.04);
}
body.theme-media .port-content { padding: 0 .5rem .5rem; }
body.theme-media .port-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.2px;
  color: var(--text-h);
  margin-bottom: .6rem;
  line-height: 1.15;
}
body.theme-media .port-content p {
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.55;
}
body.theme-media .port-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  color: var(--secondary-bright);
  background: rgba(200, 165, 114, 0.10);
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Per-tile width spans (12-col grid) */
body.theme-media .port-tile.port-span-4  { grid-column: span 4; }
body.theme-media .port-tile.port-span-5  { grid-column: span 5; }
body.theme-media .port-tile.port-span-6  { grid-column: span 6; }
body.theme-media .port-tile.port-span-7  { grid-column: span 7; }
body.theme-media .port-tile.port-span-8  { grid-column: span 8; }
body.theme-media .port-tile.port-span-12 { grid-column: span 12; }

/* Wide tile for website mockup — spans full 12 cols */
body.theme-media .port-tile-wide {
  grid-column: span 12;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
}
body.theme-media .port-tile-wide .port-image-wrap {
  flex: 0 0 55%;
  aspect-ratio: auto;
  min-height: 0;
}
body.theme-media .port-tile-wide .port-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.theme-media .port-tile-wide .port-content h3 {
  font-size: 2rem;
}

/* ====== ASYMMETRIC TILE LAYOUTS ====== */

/* Row layout: image LEFT, text RIGHT (side-by-side within the tile) */
body.theme-media .port-tile.port-layout-row {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
body.theme-media .port-tile.port-layout-row .port-image-wrap {
  flex: 0 0 50%;
  aspect-ratio: 4 / 3;
}
body.theme-media .port-tile.port-layout-row .port-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Row reverse: image RIGHT, text LEFT — for the wide Website tile mainly,
   but works on any tile that wants the mirrored orientation. */
body.theme-media .port-tile.port-layout-row-reverse {
  flex-direction: row-reverse;
  align-items: center;
  gap: 2rem;
}
body.theme-media .port-tile.port-tile-wide.port-layout-row-reverse {
  /* Override default port-tile-wide flex-direction */
  flex-direction: row-reverse;
}
body.theme-media .port-tile.port-layout-row-reverse:not(.port-tile-wide) .port-image-wrap {
  flex: 0 0 50%;
  aspect-ratio: 4 / 3;
}
body.theme-media .port-tile.port-layout-row-reverse:not(.port-tile-wide) .port-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Column reverse: text TOP, image BOTTOM */
body.theme-media .port-tile.port-layout-column-reverse {
  flex-direction: column-reverse;
}

/* Vertical stagger — pushes alternating tiles down so rows aren't lockstep */
body.theme-media .port-tile.port-stagger-down {
  margin-top: 3rem;
}


/* Text-only tile (Business Cards) */
body.theme-media .port-tile-text {
  justify-content: center;
  padding: 2.5rem 2rem;
}

/* Video placeholder — themed dark */
body.theme-media .port-video-placeholder {
  background: linear-gradient(135deg, #2a3d33 0%, #1a2922 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body.theme-media .port-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(200, 165, 114, 0.04) 12px 13px);
  pointer-events: none;
}
body.theme-media .video-placeholder-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
body.theme-media .video-play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 165, 114, 0.18);
  border: 2px solid rgba(200, 165, 114, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-bright);
  margin: 0 auto 1rem;
  padding-left: 4px;
  backdrop-filter: blur(6px);
  transition: all .3s;
}
body.theme-media .port-tile:hover .video-play-icon {
  background: rgba(217, 122, 85, 0.35);
  border-color: var(--accent-bright);
  color: var(--text-h);
  transform: scale(1.05);
}
body.theme-media .video-placeholder-label {
  color: var(--secondary-bright);
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  body.theme-media .port-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  /* All tiles span the single column */
  body.theme-media .port-tile,
  body.theme-media .port-tile.port-span-4,
  body.theme-media .port-tile.port-span-5,
  body.theme-media .port-tile.port-span-6,
  body.theme-media .port-tile.port-span-7,
  body.theme-media .port-tile.port-span-8,
  body.theme-media .port-tile.port-span-12,
  body.theme-media .port-tile-wide {
    grid-column: span 1;
  }
  body.theme-media .port-tile-wide { flex-direction: column; gap: 1.25rem; }
  body.theme-media .port-tile-wide .port-image-wrap { flex: none; min-height: auto; aspect-ratio: 4/3; }
  body.theme-media .port-tile-wide .port-content h3 { font-size: 1.6rem; }
  /* Collapse asymmetric layouts on mobile — image always on top */
  body.theme-media .port-tile.port-layout-row,
  body.theme-media .port-tile.port-layout-row-reverse,
  body.theme-media .port-tile.port-layout-column-reverse {
    flex-direction: column;
    gap: 1.25rem;
  }
  body.theme-media .port-tile.port-tile-wide.port-layout-row-reverse {
    flex-direction: column;
  }
  body.theme-media .port-tile.port-layout-row .port-image-wrap,
  body.theme-media .port-tile.port-layout-row-reverse:not(.port-tile-wide) .port-image-wrap {
    flex: none;
    aspect-ratio: 4 / 3;
  }
  /* Kill desktop stagger on mobile — vertical offset would just look broken */
  body.theme-media .port-tile.port-stagger-down { margin-top: 0; }

  /* ===== Mobile rhythm: vary widths + alternating alignment ===== */
  /* Narrow tiles (82% width) — span-5 tiles on desktop */
  body.theme-media .port-tile.port-span-5 {
    width: 82%;
  }
  /* Wider tiles (94% width) — span-7 tiles on desktop, slightly inset for rhythm */
  body.theme-media .port-tile.port-span-7 {
    width: 94%;
  }
  /* Full-width tiles — wide hero pieces stay 100% */
  body.theme-media .port-tile.port-tile-wide {
    width: 100%;
  }
  /* Alternating alignment — odd children pull left, even children pull right */
  body.theme-media .port-grid > .port-tile:not(.port-tile-wide):nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
  }
  body.theme-media .port-grid > .port-tile:not(.port-tile-wide):nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
  /* Subtle vertical stagger on every other narrow tile */
  body.theme-media .port-grid > .port-tile.port-span-5:nth-child(even) {
    margin-top: -0.5rem;
  }
}

/* ====== Pricing ====== */
body.theme-media .pc {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
}
body.theme-media .pc:hover {
  border-color: rgba(217, 122, 85, 0.35);
  box-shadow: 0 22px 60px rgba(217, 122, 85, 0.18);
}
body.theme-media .pc.pop {
  border: 1.5px solid rgba(217, 122, 85, 0.45);
  background: linear-gradient(180deg, rgba(217, 122, 85, 0.08) 0%, rgba(40, 32, 26, 0.65) 100%);
  box-shadow: 0 22px 70px rgba(217, 122, 85, 0.28);
}
body.theme-media .pop-badge {
  background: var(--accent);
  color: var(--bg);
}
/* pc-tier inherits its color from the base rule (var(--accent)),
   so it picks up the media terracotta automatically — matching how the
   index uses blue and receptionist uses pink. No color override needed. */
body.theme-media .pc-price { color: var(--text-h); }
body.theme-media .pc-price span { color: var(--text-muted); }
body.theme-media .pc-ongoing { color: var(--accent-bright); }
body.theme-media .pc-divider {
  background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), transparent);
}
body.theme-media .pc-desc { color: var(--text-body); }
body.theme-media .pc-list li { color: var(--text-body); }
body.theme-media .pc-list li::before { color: var(--accent); }
body.theme-media .pc-btn {
  background: rgba(217, 122, 85, 0.12);
  color: var(--accent-bright);
  border: 1px solid rgba(217, 122, 85, 0.35);
}
body.theme-media .pc-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
body.theme-media .pc.pop .pc-btn {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
body.theme-media .pc.pop .pc-btn:hover {
  background: var(--accent-bright);
}
body.theme-media .pc.pop::after {
  background: linear-gradient(115deg, transparent 30%, rgba(200, 165, 114, 0.10) 50%, transparent 70%);
}
body.theme-media .pc-add-on {
  background: rgba(200, 165, 114, 0.08);
  color: var(--secondary-bright);
  border-left: 3px solid var(--secondary);
}

/* ====== Custom inquire box ====== */
body.theme-media .inquire-box {
  background: linear-gradient(135deg, rgba(217, 122, 85, 0.10) 0%, rgba(200, 165, 114, 0.06) 100%);
  border: 1.5px solid rgba(217, 122, 85, 0.25);
  color: var(--text-body);
}
body.theme-media .inquire-box h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-h);
}
body.theme-media .inquire-box p { color: var(--text-body); }
body.theme-media .inquire-tag {
  background: var(--accent);
  color: var(--bg);
}

/* ====== Demo form ====== */
body.theme-media .demo-form {
  background: rgba(40, 32, 26, 0.85);
  border: 1px solid rgba(200, 165, 114, 0.20);
}
body.theme-media .demo-form-title { color: var(--text-h); }
body.theme-media .demo-form input,
body.theme-media .demo-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(200, 165, 114, 0.16);
  color: var(--text-h);
}
body.theme-media .demo-form input:focus,
body.theme-media .demo-form textarea:focus {
  border-color: var(--accent);
  background: rgba(217, 122, 85, 0.05);
  box-shadow: 0 0 0 3px rgba(217, 122, 85, 0.18);
}
body.theme-media .demo-form-row label { color: var(--text-muted); }
body.theme-media .demo-form-send {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 3px 10px rgba(217, 122, 85, 0.40);
}
body.theme-media .demo-form-send:hover {
  background: var(--accent-bright);
  box-shadow: 0 5px 14px rgba(217, 122, 85, 0.55);
}
body.theme-media .demo-form-success {
  background: rgba(200, 165, 114, 0.10);
  border-color: rgba(200, 165, 114, 0.30);
  color: var(--secondary-bright);
}

/* ====== Footer ====== */
body.theme-media footer {
  background: rgba(15, 22, 18, 0.6);
  border-top: 1px solid rgba(200, 165, 114, 0.12);
}
body.theme-media footer a { color: var(--text-muted); }
body.theme-media footer a:hover { color: var(--accent-bright); }
body.theme-media .f-copy { color: var(--text-muted); }

/* ====== Back to top ====== */
body.theme-media .back-to-top {
  background: rgba(217, 122, 85, 0.08);
  border: 1px solid rgba(200, 165, 114, 0.20);
  color: var(--accent-bright);
}
body.theme-media .back-to-top:hover {
  background: rgba(217, 122, 85, 0.15);
  border-color: rgba(200, 165, 114, 0.40);
  color: var(--secondary-bright);
}

/* ====== Hamburger / mobile menu ====== */
body.theme-media .hamburger span { background: var(--text-h); }
body.theme-media .n-links {
  background: rgba(28, 38, 32, 0.98);
}
body.theme-media .menu-overlay { background: rgba(8, 14, 11, 0.6); }

/* CSSEOF */

/* ============================================
   MOBILE TEXT SIZE BUMPS — site-wide
   Bumps body/small text up slightly on phones for readability.
   Title/heading text intentionally untouched.
   ============================================ */
@media (max-width: 700px) {
  /* Body text in any section */
  .sub                  { font-size: 1.05rem; line-height: 1.55; }
  .intro-tagline        { font-size: 1.02rem; }
  .eyebrow              { font-size: 1rem; }
  .hero-p               { font-size: 1.08rem; }

  /* Index page small text */
  .feat-card p          { font-size: 1rem; line-height: 1.55; }
  .problem-card p       { font-size: 1rem; line-height: 1.55; }

  /* Pricing cards */
  .pc-desc              { font-size: 1rem; line-height: 1.55; }
  .pc-list li           { font-size: 0.97rem; line-height: 1.5; }
  .pc-ongoing           { font-size: 0.92rem; }
  .pc-example-label     { font-size: 0.85rem; }

  /* Receptionist page card text */
  .feature-card p       { font-size: 1rem; line-height: 1.55; }
  .lang-card p          { font-size: 0.97rem; }
  .lang-strip-text      { font-size: 0.95rem; }
  .voice-sample-caption { font-size: 0.92rem; }

  /* Media page card text */
  .port-tile p          { font-size: 1rem; line-height: 1.55; }
  .port-tile-text p     { font-size: 1rem; }

  /* Buttons */
  .btn-a, .btn-b        { font-size: 1rem; }

  /* Forms */
  .form-input,
  .form-textarea,
  input[type="text"],
  input[type="email"],
  textarea              { font-size: 1rem; }

  /* Footer + nav text */
  .footer p,
  .footer a             { font-size: 0.95rem; }
}

/* ============================================
   INDEX PAGE — center-aligned everywhere
   ============================================ */
body.theme-index .hero h1,
body.theme-index .hero p,
body.theme-index .hero-p,
body.theme-index .hero-tagline,
body.theme-index .heading,
body.theme-index .sub,
body.theme-index .feat-card,
body.theme-index .feat-card h3,
body.theme-index .feat-card p,
body.theme-index .problem-card,
body.theme-index .problem-card h3,
body.theme-index .problem-card p,
body.theme-index .pc,
body.theme-index .pc-tier,
body.theme-index .pc-price,
body.theme-index .pc-ongoing,
body.theme-index .pc-desc,
body.theme-index .pc-example-label,
body.theme-index .pc-list,
body.theme-index .pc-list li,
body.theme-index .footer,
body.theme-index .footer p,
body.theme-index section .wrap,
body.theme-index #problem .wrap,
body.theme-index #services .wrap,
body.theme-index #pricing .wrap,
body.theme-index #contact .wrap {
  text-align: center;
}
/* Pricing list bullets — left-align icon + text on all cards */
body.theme-index .pc-list {
  align-items: flex-start;
  text-align: left;
}
body.theme-index .pc-list li {
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  align-self: flex-start;
}
/* Hero pip dot stays inline-aligned */
body.theme-index .hero-tagline { text-align: center; }

/* Index-only — center hero buttons (matches center-aligned text rule) */
body.theme-index .hero-btns {
  justify-content: center;
}

/* Index-only — inline icon + heading on cards
   The Problem cards: heading centered (icon was a top stripe)
   What We Build cards: icon pinned top-left, heading centered to full card */
body.theme-index .p-card,
body.theme-index .feat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
body.theme-index .feat-card .feat-icon {
  margin-bottom: 0;
  position: absolute;
  top: 0.7rem;
  left: 1.4rem;
}
body.theme-index .feat-card .feat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
body.theme-index .p-card h3,
body.theme-index .feat-card h3 {
  text-align: center;
  margin: 0;
}
body.theme-index .p-card p,
body.theme-index .feat-card p {
  margin-top: 0.85rem;
}

/* ============================================
   INDEX — Problem cards: top stripe with fade
   Replaces the inline .p-bar with a full-width
   colored stripe across the top of the card.
   ============================================ */
body.theme-index .p-card {
  /* Need overflow:hidden so the stripe respects the rounded corners */
  overflow: hidden;
}
body.theme-index .p-bar {
  /* Take it out of the grid flow, paint as top stripe */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 12px;
  border-radius: 0;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  /* Use the existing background color but fade to transparent at the bottom */
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 1;
}
/* The .p-bar was sitting in grid column 1; remove it from the layout
   so the heading takes the full width */
body.theme-index .p-card {
  grid-template-columns: 1fr;
}
body.theme-index .p-card .p-bar {
  grid-row: auto;
  grid-column: auto;
}
body.theme-index .p-card h3 {
  grid-column: 1;
  text-align: center;
  /* Push heading down a bit so the colored stripe shows clearly above it */
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}
body.theme-index .p-card p {
  grid-column: 1;
  position: relative;
  z-index: 2;
}

/* ============================================
   INDEX PAGE — extra small bump for all body text
   (Eyebrow excluded — that's set separately above)
   ============================================ */
@media (max-width: 700px) {
  body.theme-index .sub                  { font-size: 1.12rem; }
  body.theme-index .intro-tagline        { font-size: 1.08rem; }
  body.theme-index .hero-p               { font-size: 1.15rem; }
  body.theme-index .feat-card p          { font-size: 1.06rem; }
  body.theme-index .problem-card p,
  body.theme-index .p-card p             { font-size: 1.06rem; }
  body.theme-index .pc-desc              { font-size: 1.06rem; }
  body.theme-index .pc-list li           { font-size: 1.02rem; }
  body.theme-index .pc-ongoing           { font-size: 0.97rem; }
  body.theme-index .pc-example-label     { font-size: 0.9rem; }
  body.theme-index .feat-card h3,
  body.theme-index .p-card h3            { font-size: 1.18rem; }
  body.theme-index .pc-tier              { font-size: 1.15rem; }
  body.theme-index .btn-a,
  body.theme-index .btn-b                { font-size: 1.05rem; }
  body.theme-index .footer p,
  body.theme-index .footer a             { font-size: 1rem; }
}

/* ============================================
   INDEX — card titles: slightly smaller + full-width gradient line below
   ============================================ */
body.theme-index .feat-card h3,
body.theme-index .p-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}
/* Full-width gradient divider — sits below the icon+title row */
body.theme-index .feat-card .feat-row,
body.theme-index .p-card h3 {
  width: 100%;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1;
  margin-bottom: 0.7rem;
}
/* Mobile size adjustment to match */
@media (max-width: 700px) {
  body.theme-index .feat-card h3,
  body.theme-index .p-card h3 {
    font-size: 1.08rem;
  }
}

/* Index — reduce top padding on cards slightly */
body.theme-index .feat-card {
  padding-top: 1.4rem;
}
body.theme-index .p-card {
  padding-top: 0.9rem;
}

/* ============================================
   INDEX — Problem → Solution interactive cards
   ============================================ */

/* Card resets specific to ps-card flow (overrides earlier flex/center rules) */
body.theme-index .p-card.ps-card {
  display: block;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, box-shadow .4s, transform .4s;
}
body.theme-index .p-card.ps-card:hover {
  transform: translateY(-3px);
}
body.theme-index .p-card.ps-card.is-open {
  /* Subtle accent ring when open */
  border-color: rgba(39, 118, 209, 0.45);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(39, 118, 209, 0.18);
}
/* The colored stripe on top — already exists; tweak transition for color shift */
body.theme-index .p-card.ps-card .p-bar {
  transition: background .6s ease;
}
body.theme-index .p-card.ps-card.is-open .p-bar {
  background: var(--accent) !important;
}

/* Inner sections — reset center-flex from earlier index card rule */
body.theme-index .ps-problem,
body.theme-index .ps-solution {
  display: block;
  padding: 1.4rem 1.6rem 1.6rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Tiny label tag */
body.theme-index .ps-label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 0.65rem;
  opacity: 0.85;
}
body.theme-index .ps-label-solution {
  color: var(--accent);
}

/* Headings & paragraphs */
body.theme-index .p-card.ps-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin: 0 0 0.5rem;
  text-align: center;
  /* Override earlier gradient border on h3 */
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
body.theme-index .p-card.ps-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

/* Solution head — heading text visually centered; icon sits inline to its left */
body.theme-index .ps-solution-head {
  text-align: center;
  margin: 0 0 0.5rem;
}
/* Solution head — h3 perfectly centered; icon as pseudo pinned just left of h3 */
body.theme-index .ps-solution-head {
  text-align: center;
  margin: 0 0 0.5rem;
}
body.theme-index .ps-solution-head h3 {
  margin: 0;
  display: inline-block;
  position: relative;
}
body.theme-index .ps-solution-head h3::before {
  content: attr(data-icon);
  position: absolute;
  right: 75%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0.5rem;
  font-size: 1.4rem;
  line-height: 1;
}

/* Toggle button */
body.theme-index .ps-toggle {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39, 118, 209, 0.10);
  color: var(--accent);
  border: 1px solid rgba(39, 118, 209, 0.28);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}
body.theme-index .ps-toggle:hover {
  background: rgba(39, 118, 209, 0.18);
  border-color: rgba(39, 118, 209, 0.5);
}
body.theme-index .ps-toggle-icon {
  display: inline-block;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
body.theme-index .p-card.ps-card.is-open .ps-toggle-icon {
  transform: rotate(180deg);
}

/* Solution panel — collapsed by default, animated reveal */
body.theme-index .ps-solution {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  transition:
    max-height .55s cubic-bezier(.22,1,.36,1),
    opacity .35s ease .12s,
    padding .55s cubic-bezier(.22,1,.36,1),
    transform .45s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
body.theme-index .p-card.ps-card.is-open .ps-solution {
  /* Use generous max-height; actual content height is much less */
  max-height: 600px;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Divider between problem and solution — hidden; solution is now a nested card */
body.theme-index .ps-divider {
  display: none;
}

/* Solution panel styled as a nested card with rounded top + sides */
body.theme-index .p-card.ps-card .ps-solution {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(46, 204, 113, 0.18);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  margin: 0.6rem 0.5rem 0; /* small inset from card edges + top spacing */
}

/* Mobile size adjustments */
@media (max-width: 700px) {
  body.theme-index .ps-problem,
  body.theme-index .p-card.ps-card.is-open .ps-solution {
    padding: 1.2rem 1.2rem 1.4rem;
  }
  body.theme-index .ps-divider { margin: 0 -1.2rem 1rem; }
  body.theme-index .p-card.ps-card h3 { font-size: 1.1rem; }
  body.theme-index .p-card.ps-card p { font-size: 1rem; }
  body.theme-index .ps-label { font-size: 0.78rem; }
}

/* No-JS fallback — solution is just always visible */
body.theme-index .no-js .ps-solution {
  max-height: none;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
  opacity: 1;
  transform: none;
}
body.theme-index .no-js .ps-toggle { display: none; }

/* ============================================
   INDEX desktop-only — slightly smaller h2 + center the .sub block
   ============================================ */
@media (min-width: 701px) {
  body.theme-index .heading {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
  }
  body.theme-index .sub {
    margin-left: auto;
    margin-right: auto;
  }
  body.theme-index .hero-content {
    margin-left: auto;
    margin-right: auto;
  }
  body.theme-index .hero h1,
  body.theme-index .hero-p,
  body.theme-index .hero-tagline,
  body.theme-index .intro-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  body.theme-index .eyebrow {
    font-size: 1.6rem;
  }
}

/* Index desktop — center the 3rd Problem card in the 2-col grid */
@media (min-width: 701px) {
  body.theme-index .prob-grid > .p-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.75rem); /* same width as a single col, accounting for gap */
    justify-self: center;
  }
}

/* ============================================
   INDEX — Solution mask-wipe reveal
   Solution content gets painted in left-to-right via clip-path,
   card pulses with an accent glow once at start.
   ============================================ */

/* Wrapper for the wipe — applies to the inner content of solution */
body.theme-index .ps-solution-body {
  /* Default state: hidden via clip-path (clipped to width 0 from left) */
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path 0s; /* No transition until card opens */
}

/* When card is open, animate the clip-path to reveal */
body.theme-index .p-card.ps-card.is-open .ps-solution-body {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  /* Stagger body wipe — starts after heading begins */
  transition: clip-path 1.4s cubic-bezier(.55, .05, .25, 1) .5s;
}

/* Solution head fades+wipes in via opacity instead (so it can hold an icon hanging outside) */
body.theme-index .ps-solution-head {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0s, transform 0s;
}
body.theme-index .p-card.ps-card.is-open .ps-solution-head {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1s ease .25s, transform 1.1s cubic-bezier(.22, 1, .36, 1) .25s;
}

/* Single glow pulse on the card when it opens */
body.theme-index .p-card.ps-card.is-open {
  animation: ps-glow-pulse 1s ease-out 1;
}
@keyframes ps-glow-pulse {
  0% {
    box-shadow:
      0 12px 32px rgba(0,0,0,0.35),
      0 0 0 1px rgba(39, 118, 209, 0.18),
      0 0 0 0 rgba(39, 118, 209, 0.55);
  }
  35% {
    box-shadow:
      0 12px 32px rgba(0,0,0,0.35),
      0 0 0 1px rgba(39, 118, 209, 0.45),
      0 0 28px 4px rgba(39, 118, 209, 0.45);
  }
  100% {
    box-shadow:
      0 12px 32px rgba(0,0,0,0.35),
      0 0 0 1px rgba(39, 118, 209, 0.18),
      0 0 0 0 rgba(39, 118, 209, 0);
  }
}

/* Reduced motion fallback — show content immediately, no wipe, no pulse */
@media (prefers-reduced-motion: reduce) {
  body.theme-index .ps-solution-head {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body.theme-index .ps-solution-body {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    transition: none;
  }
  body.theme-index .p-card.ps-card.is-open {
    animation: none;
  }
}

/* ============================================
   INDEX — Toggle button glitch dissolve
   Triggered by .is-dissolving class added on click.
   Final state .is-dissolved removes the button from layout.
   ============================================ */
body.theme-index .ps-toggle {
  position: relative;
  /* Disable hover state once dissolving so it doesn't re-color mid-animation */
}
body.theme-index .ps-toggle.is-dissolving {
  pointer-events: none;
  animation: ps-glitch 0.65s steps(1, end) forwards;
}
body.theme-index .ps-toggle.is-dissolving::before,
body.theme-index .ps-toggle.is-dissolving::after {
  content: attr(data-glitch-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  border-radius: inherit;
  padding: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
}
body.theme-index .ps-toggle.is-dissolving::before {
  color: rgba(255, 80, 90, 0.85);
  animation: ps-glitch-r 0.65s steps(1, end) forwards;
}
body.theme-index .ps-toggle.is-dissolving::after {
  color: rgba(80, 220, 255, 0.85);
  animation: ps-glitch-c 0.65s steps(1, end) forwards;
}
@keyframes ps-glitch {
  0%   { transform: translate(0, 0); opacity: 1; clip-path: inset(0 0 0 0); }
  10%  { transform: translate(-3px, 1px); clip-path: inset(20% 0 50% 0); }
  20%  { transform: translate(2px, -1px); clip-path: inset(60% 0 10% 0); }
  30%  { transform: translate(-2px, 2px); clip-path: inset(0 0 70% 0); }
  40%  { transform: translate(1px, -2px); clip-path: inset(40% 0 30% 0); }
  50%  { transform: translate(-1px, 1px); opacity: 0.85; clip-path: inset(0 0 0 0); }
  65%  { transform: translate(0, 0); opacity: 0.55; }
  85%  { transform: translate(0, 0) scale(0.96); opacity: 0.2; }
  100% { transform: translate(0, 0) scale(0.92); opacity: 0; clip-path: inset(0 0 0 0); }
}
@keyframes ps-glitch-r {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { transform: translate(-4px, 1px); opacity: 0.9; }
  25%  { transform: translate(3px, -2px); opacity: 0.85; }
  40%  { transform: translate(-2px, 2px); opacity: 0.7; }
  55%  { transform: translate(1px, 0); opacity: 0.5; }
  100% { transform: translate(-6px, 0); opacity: 0; }
}
@keyframes ps-glitch-c {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { transform: translate(4px, -1px); opacity: 0.9; }
  25%  { transform: translate(-3px, 2px); opacity: 0.85; }
  40%  { transform: translate(2px, -2px); opacity: 0.7; }
  55%  { transform: translate(-1px, 0); opacity: 0.5; }
  100% { transform: translate(6px, 0); opacity: 0; }
}
/* Fully gone — collapse out of layout */
body.theme-index .ps-toggle.is-dissolved {
  display: none;
}

/* Reduced motion — skip glitch, just hide */
@media (prefers-reduced-motion: reduce) {
  body.theme-index .ps-toggle.is-dissolving {
    animation: none;
    opacity: 0;
  }
  body.theme-index .ps-toggle.is-dissolving::before,
  body.theme-index .ps-toggle.is-dissolving::after {
    display: none;
  }
}

/* ============================================
   INDEX — Item 4: Cards expand independently
   Default grid stretches all cards in a row to match the tallest.
   Switch to align-items: start so each card is its own height.
   ============================================ */
body.theme-index .prob-grid {
  align-items: start;
}

/* ============================================
   INDEX — Item 7: Red stripes that turn green when card opens
   ============================================ */
body.theme-index .p-card.ps-card .p-bar {
  background: #c0392b !important;
  transition: background .55s ease;
}
body.theme-index .p-card.ps-card.is-open .p-bar {
  background: #27ae60 !important;
}

/* ============================================
   INDEX — Item 3: Problem & Solution pills (color-coded)
   ============================================ */
body.theme-index .ps-pill {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  border: 1px solid;
}
body.theme-index .ps-pill-problem {
  color: #ff6b5e;
  background: rgba(192, 57, 43, 0.12);
  border-color: rgba(255, 107, 94, 0.35);
}
body.theme-index .ps-pill-solution {
  color: #2ecc71;
  background: rgba(39, 174, 96, 0.12);
  border-color: rgba(46, 204, 113, 0.35);
}

/* ============================================
   INDEX — Item 6: Workflow Automation list
   Tasks animate cross-out, then "Automated" tag fades in (green)
   ============================================ */
body.theme-index .ps-auto-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
body.theme-index .ps-auto-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  /* Hidden by default; revealed by stagger on .is-running parent */
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .35s ease, transform .35s ease;
}

/* Task text — gets struck through with an accent line */
body.theme-index .ps-auto-task {
  position: relative;
  color: var(--text-body);
  transition: color .8s ease .8s; /* dim after strike-through completes */
}
body.theme-index .ps-auto-task::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 107, 94, 0.85);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(.55, .05, .25, 1);
}

/* "Automated" tag — green text only, no pill, slides in from the right */
body.theme-index .ps-auto-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #2ecc71;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .8s ease .4s, transform .8s cubic-bezier(.34, 1.56, .64, 1) .4s;
}
body.theme-index .ps-auto-tag::before {
  content: '✓';
  margin-right: 0.3rem;
  color: #2ecc71;
}

/* Running animation — staggered per item */
body.theme-index .ps-auto-list.is-running li {
  opacity: 1;
  transform: translateY(0);
}
body.theme-index .ps-auto-list.is-running li:nth-child(1) { transition-delay: 0s; }
body.theme-index .ps-auto-list.is-running li:nth-child(2) { transition-delay: .15s; }
body.theme-index .ps-auto-list.is-running li:nth-child(3) { transition-delay: .30s; }
body.theme-index .ps-auto-list.is-running li:nth-child(4) { transition-delay: .45s; }
body.theme-index .ps-auto-list.is-running li:nth-child(5) { transition-delay: .60s; }

/* When item gets .struck class — strike-through */
body.theme-index .ps-auto-list li.struck .ps-auto-task::after {
  transform: scaleX(1);
}
body.theme-index .ps-auto-list li.struck .ps-auto-task {
  color: var(--text-muted);
  opacity: 0.65;
}
body.theme-index .ps-auto-list li.struck .ps-auto-tag {
  opacity: 1;
  transform: translateX(0);
}

/* Reduced motion — show full state immediately, no animation */
@media (prefers-reduced-motion: reduce) {
  body.theme-index .ps-auto-list li,
  body.theme-index .ps-auto-task::after,
  body.theme-index .ps-auto-tag {
    transition: none;
  }
  body.theme-index .ps-auto-list.is-running li {
    opacity: 1;
    transform: none;
  }
  body.theme-index .ps-auto-list.is-running li .ps-auto-task::after { transform: scaleX(1); }
  body.theme-index .ps-auto-list.is-running li .ps-auto-tag {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   INDEX — Separator under problem h3 in ps-cards
   Dotted line, red while problem state, green after solution opens
   ============================================ */
body.theme-index .p-card.ps-card .ps-problem h3 {
  padding-bottom: 0.7rem !important;
  border-bottom: 1px solid transparent !important;
  border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1 !important;
  transition: border-color .55s ease;
}
/* When card opens, gradient line shifts to green */
body.theme-index .p-card.ps-card.is-open .ps-problem h3 {
  border-image: linear-gradient(90deg, transparent, #2ecc71, transparent) 1 !important;
}

/* Per-card icon position overrides — text widths differ between cards */
body.theme-index .p-card.d2 .ps-solution-head h3::before {
  right: 90%;
}
body.theme-index .p-card.d3 .ps-solution-head h3::before {
  right: 85%;
}

/* Mobile — adjust badge corner radius for smaller card border-radius */
@media (max-width: 700px) {
  .pop-badge {
    border-radius: 0 17px 0 10px;
    font-size: .6rem;
    padding: .25rem .55rem;
    letter-spacing: 0.8px;
  }
}

/* Index pricing — more space below example label + left-align bullet items */
body.theme-index .pc-example-label {
  margin-bottom: 1rem;
}
body.theme-index .pc-list li {
  text-align: left;
  justify-content: flex-start;
}

/* ============================================
   INDEX pricing card refinements
   ============================================ */

/* Item 1 — checkmark + text: left-aligned flush */
body.theme-index .pc-list li {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
  text-align: left;
  padding-left: 1.1rem;
  padding-right: 0;
  box-sizing: border-box;
}
body.theme-index .pc-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
}

/* Item 2 — desktop only: stack "one-time setup fee" below the price */
@media (min-width: 701px) {
  body.theme-index .pc-price span {
    display: block;
    margin-left: 0;
    margin-top: 0.4rem;
    font-size: 0.5em;
  }
}

/* Item 3 — mobile only: Coming Soon badge to top-right corner */
@media (max-width: 700px) {
  .pc-coming-soon {
    top: 0;
    left: auto;
    right: 0;
    transform: none;
    border-radius: 0 18px 0 8px;
  }
}

/* Index pricing — example label in green */
body.theme-index .pc-example-label {
  color: #2ecc71;
}

/* ===== RECEPTIONIST PAGE — HEADLINES CENTERED, BODY COPY LEFT-ALIGNED =====
   Scoped strictly to body.theme-receptionist so the other pages are unaffected.
   Approach: H1/H2/H3 + buttons centered as anchors; paragraph copy reads
   left-aligned in blocks for legibility. Hero stays two-column on desktop
   (text left, photo right) and stacks on mobile via existing media queries. */

/* HERO — keep default two-column layout; just center the h1 + buttons.
   Body paragraph stays left-aligned. No flex-direction override here so
   the existing 2-col rule + 1200px-stack media query both keep working. */
body.theme-receptionist .hero h1 {
  text-align: center;
}
body.theme-receptionist .hero-p {
  text-align: left;
}
body.theme-receptionist .hero-btns {
  justify-content: center;
}

/* DEMO FORM — center the title + action buttons; keep inputs/labels left */
body.theme-receptionist .demo-form-title {
  text-align: center;
}
body.theme-receptionist .demo-form-actions {
  justify-content: center;
}

/* SECTION HEADINGS — centered (eyebrow already centered in base styles).
   Sub paragraphs left-aligned within a sensible reading width. */
body.theme-receptionist .heading {
  text-align: center;
}
body.theme-receptionist .sub {
  text-align: left;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
/* Lang showcase lives inside .lang-headline which is already text-align:center.
   Force its sub to keep that center treatment since the headline IS the focus. */
body.theme-receptionist .lang-headline .sub {
  text-align: center;
}
/* Bottom CTA box body text — centered (overrides the global receptionist
   left-align rule above, since center fits the centered card layout better). */
body.theme-receptionist .cta-box .sub {
  text-align: center;
}

/* VOICE FEATURE CARDS — restructured layout:
   - .vf-head holds icon + h3 inline on the same row
   - .vf-content holds the body paragraph below
   - Cards are narrower so the grid breathes more */
body.theme-receptionist .voice-feat-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
body.theme-receptionist .vf-card {
  flex-direction: column;
  align-items: stretch;
  gap: .9rem;
  padding: 1.6rem 1.5rem;
}
body.theme-receptionist .vf-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  position: relative;
  z-index: 2;
}
/* Phantom spacer on the right of .vf-head matching the icon's width + gap.
   This balances the icon on the left, so the h3 between them ends up
   centered to the card. Icon visually hangs off to the left of center. */
body.theme-receptionist .vf-head::after {
  content: '';
  display: block;
  width: 44px;          /* same as .vf-icon width */
  height: 1px;          /* anything, height is irrelevant in this row */
  flex-shrink: 0;
  /* gap on the parent already provides the .9rem on this side */
}
body.theme-receptionist .vf-card h3 {
  text-align: center;
  margin-bottom: 0;
}
body.theme-receptionist .vf-card p {
  text-align: center;
}

/* HERO BUTTONS — match Learn More to the size/feel of Book a Free Demo
   (same horizontal padding + font weight + min-width so the shorter text
   doesn't make the second button visibly narrower on desktop).
   Color/border treatment stays distinct so the primary action still pops. */
body.theme-receptionist .hero-btns .btn-a,
body.theme-receptionist .hero-btns .btn-b {
  min-width: 180px;
  text-align: center;
  padding: .9rem 2rem;
  font-weight: 700;
}
/* Mobile — keep buttons at base size (matches AI Automation page sizing).
   The earlier `padding: .75rem 1rem; min-width: 0` shrink made them look
   undersized vs. the other pages. */
@media (max-width: 700px) {
  body.theme-receptionist .hero-btns .btn-a,
  body.theme-receptionist .hero-btns .btn-b {
    font-size: 1.05rem;
    padding: .9rem 1.5rem;
    min-width: 160px;
  }
}

/* PRICING CARDS — center the tier label, price, and "monthly fee" line.
   Description + checkmark list stay left-aligned for readability. */
body.theme-receptionist .pc-tier,
body.theme-receptionist .pc-price,
body.theme-receptionist .pc-ongoing {
  text-align: center;
}
body.theme-receptionist .pc-desc {
  text-align: center;
}

/* CTA box — already centered in base styles. */
body.theme-receptionist .cta-email {
  text-align: center;
}

/* ITEM 1: more breathing room under each section eyebrow band
   (the full-bleed strip with "Multilingual by Default", "How We're Different", etc.) */
body.theme-receptionist .eyebrow {
  margin-bottom: 2.6rem;
}

/* ITEM 2 — DESKTOP HERO LAYOUT TUNING
   Two cases:
   (a) Wide enough for true 2-col (>1200px): keep text-left/photo-right, but
       give the hero-content a tighter max-width so there's clear gap before
       the absolute-positioned photo. h1 stays text-align:center within its column.
   (b) Narrower than 1201px (still desktop, just smaller window): the hero
       already stacks vertically via the existing media query — but it stacks
       LEFT-aligned. Override that to center the stacked content. */

/* Desktop hero (≥1201px) — VERTICAL STACK: text on top, photo middle, buttons last.
   DOM order is content → btns → photo (mobile-friendly), so on desktop we use
   CSS `order` to flip btns and photo. Photo gets order: 2, buttons order: 3,
   so the visual order becomes: content → photo → buttons. */
@media (min-width: 1201px) {
  body.theme-receptionist .hero {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }
  body.theme-receptionist .hero-content {
    order: 1 !important;
    max-width: 820px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body.theme-receptionist .hero h1 {
    max-width: 820px;
    text-align: center;
  }
  body.theme-receptionist .hero-p {
    max-width: 640px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  /* Photo + voice sample — flow order 2 (between text and buttons) */
  body.theme-receptionist .hero-vis,
  body.theme-receptionist .hero-vis-photo {
    order: 2 !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    margin: 0 auto 2.5rem !important;
    align-self: center;
    width: auto;
    height: auto;
    max-width: 540px;
  }
  body.theme-receptionist .hero-btns {
    order: 3 !important;
    margin-bottom: 0;
  }
}

/* (b) Stacked hero (≤1200px): center everything since it's a single column now */
@media (max-width: 1200px) {
  body.theme-receptionist .hero {
    align-items: center;
    text-align: center;
  }
  body.theme-receptionist .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  body.theme-receptionist .hero-p {
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== ROUND 2 TWEAKS ===== */

/* ITEM 1 (this round): center the "How We're Different" sub-paragraph
   ("Most AI receptionists sound robotic. Not ours...").
   Receptionist scope generally left-aligns .sub for readability — this
   section is the exception. */
body.theme-receptionist #features .sub {
  text-align: center;
}

/* ITEM 2: gradient divider line under each card title in How We're Different.
   Same gradient pattern as .pc-divider on the pricing cards, auto-themed
   to the receptionist accent (pink/coral) via var(--accent). */
body.theme-receptionist .vf-head::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -.75rem;
  transform: translateX(-50%);
  width: 70%;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
}
/* Bump the gap between vf-head and vf-content slightly so the divider
   doesn't sit right on top of the body paragraph */
body.theme-receptionist .vf-card {
  gap: 1.4rem;
}

/* ITEM 3: more vertical breathing room around the "Hear a sample..." caption
   beneath the photo on the hero. */
body.theme-receptionist .voice-sample-caption {
  margin-top: 2.6rem;
  margin-bottom: 1.4rem;
}

/* ITEM 4: pull "Multilingual by Default" and "How We're Different" sections
   up a bit — both have too much space above them. Reduce section padding-top
   on this page only. The bottom padding stays the same so we don't crunch
   the layout below. */
body.theme-receptionist .lang-showcase,
body.theme-receptionist #features {
  padding-top: 1.5rem;
}

/* ====== ITEM 1: 'Most AI receptionists' sub-paragraph centered =====
   The sub inside #features (How We're Different) is normally left-aligned
   per the receptionist headline/body rule. Force this one centered. */
body.theme-receptionist #features .sub {
  text-align: center;
}

/* ====== ITEM 2 (kept): gradient divider line under each card title.
   The earlier .vf-head::before rule already draws this; no h3::after needed. */

/* ====== ITEM 3: vertical padding around voice-sample caption =====
   "Hear a sample of one of our natural AI voices" — given room to breathe,
   bumped up in size for legibility. The caption now sits OUTSIDE
   .hero-photo-wrap so it no longer collides with the play/wave overlay. */
body.theme-receptionist .voice-sample-caption {
  margin-top: 0.7rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-style: italic;
}

/* ====== ITEM 4: tighten top padding on lang-showcase + features sections.
   The "Multilingual by Default" and "How We're Different" eyebrow bands
   were sitting too low after the previous section ended. */
body.theme-receptionist .lang-showcase {
  padding-top: 1.5rem;
}
body.theme-receptionist #features {
  padding-top: 1.5rem;
}
/* On mobile, pull "Multilingual by Default" up further — the stacked hero
   above (text + photo + buttons) creates more vertical distance there, so
   we trim the section's top padding even more. */
@media (max-width: 700px) {
  body.theme-receptionist .lang-showcase {
    padding-top: 0;
  }
}

/* ====== Knows Your Business card — styled "defer" quote line.
   Subtle pink accent, italic, slightly smaller, to feel like a quoted aside
   rather than competing with the main body copy. */
body.theme-receptionist .vf-defer-quote {
  color: #ffb0c1;
  font-style: italic;
  font-size: .95em;
}

/* Pricing tier label — match the index page's mobile sizing.
   Desktop is already the same (.7rem inherited from base). On mobile (≤700px)
   index bumps pc-tier to 1.15rem; receptionist needs the same treatment. */
@media (max-width: 700px) {
  body.theme-receptionist .pc-tier { font-size: 1.15rem; }
}

/* Pricing — desktop format match: stack "one-time setup fee" below the price
   (same treatment as index page). Extra-specific selector to ensure this
   wins against any base/theme overrides. Below 701px viewport it remains
   inline per the base .pc-price span rule. */
@media (min-width: 701px) {
  body.theme-receptionist .price-row .pc .pc-price span {
    display: block !important;
    margin-left: 0 !important;
    margin-top: 0.5rem;
    font-size: 0.5em;
    text-align: center;
  }
}

/* ===== PORTFOLIO IMAGE LIGHTBOX =====
   Fullscreen modal triggered by tapping any .port-image on the media page.
   Close button (X), backdrop click, and Esc all dismiss. */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.lightbox-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(.96);
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.lightbox.is-open .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(20, 20, 20, 0.7);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(40, 40, 40, 0.85);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.06);
  outline: none;
}
.lightbox-close svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 600px) {
  .lightbox { padding: 3rem 1rem; }
  .lightbox-close {
    top: .8rem;
    right: .8rem;
    width: 40px;
    height: 40px;
  }
}

/* ===== MEDIA PAGE — MOBILE PORTFOLIO LAYOUT =====
   Pattern: [2 small] [1 wide] [2 small] [1 wide]
   - Tiles 1+2 → paired half-width (small row)
   - Tile 3   → full-width wide (port-tile-wide)
   - Tiles 4+5 → paired half-width (small row)
   - Tile 6   → full-width wide (port-tile-wide)
   This overrides the existing 900px single-column rules above. */
@media (max-width: 900px) {
  /* Switch to a 2-column grid; wide tiles span both columns */
  body.theme-media .port-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  /* Reset all the desktop col spans — by default everything takes 1 column */
  body.theme-media .port-tile,
  body.theme-media .port-tile.port-span-4,
  body.theme-media .port-tile.port-span-5,
  body.theme-media .port-tile.port-span-6,
  body.theme-media .port-tile.port-span-7,
  body.theme-media .port-tile.port-span-8 {
    grid-column: span 1;
    width: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }
  /* Wide tiles take both columns of the new mobile grid */
  body.theme-media .port-tile.port-span-12,
  body.theme-media .port-tile-wide {
    grid-column: span 2;
    width: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Wide tiles: image on top, text below — same as before */
  body.theme-media .port-tile-wide {
    flex-direction: column;
    gap: 1.25rem;
  }
  body.theme-media .port-tile.port-tile-wide.port-layout-row-reverse {
    flex-direction: column;
  }
  /* Small paired tiles: image on top, text below; tighter padding */
  body.theme-media .port-tile:not(.port-tile-wide) {
    padding: 1rem;
  }
  body.theme-media .port-tile:not(.port-tile-wide) .port-content h3 {
    font-size: 1.1rem;
  }
  body.theme-media .port-tile:not(.port-tile-wide) .port-content p {
    font-size: .85rem;
    line-height: 1.5;
  }
  /* Small tile images keep a consistent aspect ratio so the row aligns nicely */
  body.theme-media .port-tile:not(.port-tile-wide) .port-image-wrap {
    aspect-ratio: 4 / 3;
  }
}

/* Even tighter on phones */
@media (max-width: 480px) {
  body.theme-media .port-grid {
    gap: .8rem;
  }
  body.theme-media .port-tile:not(.port-tile-wide) {
    padding: .8rem;
  }
}

/* Hint that portfolio images are interactive */
body.theme-media .port-image {
  cursor: zoom-in;
}
/* Video tile poster image uses pointer (not zoom-in) since clicking plays
   a video, not opens an enlarged image. */
body.theme-media .port-video-tile,
body.theme-media .port-video-tile .port-image {
  cursor: pointer;
}

/* ===== PORTFOLIO ZOOM HINT — "Tap to enlarge" chip on each image =====
   Floating glassy badge in the top-right corner of each portfolio image,
   educating users that images are interactive. Subtle on desktop hover,
   always visible on mobile so taps feel discoverable. */
body.theme-media .port-image-wrap {
  position: relative;
}
body.theme-media .port-zoom-hint {
  position: absolute;
  top: .65rem;
  right: .65rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .6rem .35rem .5rem;
  border-radius: 999px;
  background: rgba(20, 14, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 237, 228, 0.18);
  color: #f5ede4;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2px;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  opacity: 0.92;
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
body.theme-media .port-zoom-hint svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
/* Desktop hover state — chip nudges + brightens to feel interactive */
body.theme-media .port-tile:hover .port-zoom-hint {
  opacity: 1;
  background: rgba(217, 122, 85, 0.85);
  border-color: rgba(245, 237, 228, 0.35);
  transform: translateY(-1px);
}
/* Hide chip when the lightbox is open so it doesn't double up */
body:has(.lightbox.is-open) .port-zoom-hint {
  opacity: 0;
}
/* Tighter chip on small screens */
@media (max-width: 600px) {
  body.theme-media .port-zoom-hint {
    top: .5rem;
    right: .5rem;
    font-size: .68rem;
    padding: .3rem .55rem .3rem .45rem;
  }
  body.theme-media .port-zoom-hint svg {
    width: 12px;
    height: 12px;
  }
}
/* Hide chip on the video placeholder tile — it already has its own play overlay,
   and the lightbox doesn't trigger on the placeholder anyway */
body.theme-media .port-video-placeholder .port-zoom-hint {
  display: none;
}

/* ===== MEDIA PAGE — TEXT ALIGNMENT (matches receptionist pattern) =====
   - Headlines (h1, h2, eyebrows) centered as visual anchors
   - Hero content centered (no asymmetric photo column to balance)
   - Section sub paragraphs centered (short enough to read centered)
   - Portfolio card titles centered, body paragraphs LEFT-aligned (real reading copy)
   - Pricing cards: tier/price/ongoing/desc all centered, list left-aligned
     (checkmarks stay on the left of each line) */

/* HERO — fully centered, no photo column to balance */
body.theme-media .hero {
  align-items: center;
  text-align: center;
}
body.theme-media .hero-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.theme-media .hero h1 {
  text-align: center;
  max-width: 720px;
}
body.theme-media .hero-p {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
body.theme-media .hero-btns {
  justify-content: center;
}

/* SECTION HEADINGS + SUBS */
body.theme-media .heading {
  text-align: center;
}
body.theme-media .sub {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* PORTFOLIO CARDS — title centered, body LEFT-aligned (real reading copy) */
body.theme-media .port-content h3 {
  text-align: center;
}
body.theme-media .port-content p {
  text-align: left;
}

/* PRICING CARDS — center tier/price/ongoing/description; list stays left
   (checkmarks need to be on the left of each line for readability) */
body.theme-media .pc-tier,
body.theme-media .pc-price,
body.theme-media .pc-ongoing,
body.theme-media .pc-desc {
  text-align: center;
}
/* Add-on box (Promo Video) — center the title line, leave detail left */
body.theme-media .pc-add-on {
  text-align: center;
}

/* INQUIRE BOX (Custom Quote) — already centered in base styles, just
   ensure the body paragraph follows the same centered pattern. */
body.theme-media .inquire-box p {
  text-align: center;
}

/* DEMO FORM — title + action buttons centered (inputs/labels stay left
   for usability when filling them in) */
body.theme-media .demo-form-title {
  text-align: center;
}
body.theme-media .demo-form-actions {
  justify-content: center;
}

/* MEDIA HERO BUTTONS — match widths so both feel like equal-weight CTAs.
   Use explicit width (not min-width) so the longer label "Pricing & packages"
   doesn't stretch wider than "See Our Work". On mobile, drop to a smaller
   matching width so they sit comfortably side by side. */
body.theme-media .hero-btns .btn-a,
body.theme-media .hero-btns .btn-b {
  width: 240px;
  min-width: 0;
  text-align: center;
  padding: .9rem 2rem;
  font-weight: 700;
}
@media (max-width: 700px) {
  body.theme-media .hero-btns .btn-a,
  body.theme-media .hero-btns .btn-b {
    font-size: 1.05rem;
    padding: .9rem 1.5rem;
    width: 180px;
    min-width: 0;
  }
}

/* Inline tappable link inside a .sub paragraph (e.g., "Request a custom quote")
   — uses the page accent so it reads as clickable, with subtle underline
   that brightens on hover. */
body.theme-media .sub-link {
  color: var(--accent-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 122, 85, 0.45);
  padding-bottom: 1px;
  transition: color .25s ease, border-color .25s ease;
}
body.theme-media .sub-link:hover,
body.theme-media .sub-link:focus-visible {
  color: var(--text-h);
  border-bottom-color: var(--accent-bright);
  outline: none;
}

/* Custom Quote tag — restyled to feel like an editorial label rather than
   a button-like chip. Removes the solid terracotta background that was
   visually clashing with the "Request a Quote" button below it. */
body.theme-media .inquire-tag {
  background: transparent;
  border: none;
  color: var(--accent-bright);
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  padding: 0 0 .25rem;
  margin-bottom: 1.1rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}
/* Decorative thin lines flanking the label, magazine-style */
body.theme-media .inquire-tag::before,
body.theme-media .inquire-tag::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright));
}
body.theme-media .inquire-tag::after {
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

/* ===== VIDEO TILE — poster image + play overlay (replaces old placeholder) =====
   The whole .port-video-tile wrapper is clickable; tapping opens the reel
   in the lightbox in video mode. */
body.theme-media .port-video-tile {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  isolation: isolate;
}
body.theme-media .port-video-tile .port-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
body.theme-media .port-tile:hover .port-video-tile .port-image {
  transform: scale(1.04);
}
/* Dark gradient overlay so the play button + label stay readable on any frame */
body.theme-media .port-video-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.55) 80%);
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1;
}
body.theme-media .port-tile:hover .port-video-tile::after {
  opacity: 0.75;
}
body.theme-media .video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  text-align: center;
}
/* Re-use the existing .video-play-icon styling but make it a solid pill */
body.theme-media .port-video-tile .video-play-icon {
  width: 72px;
  height: 72px;
  margin-bottom: .9rem;
  background: rgba(217, 122, 85, 0.85);
  border-color: rgba(245, 237, 228, 0.45);
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
body.theme-media .port-tile:hover .port-video-tile .video-play-icon {
  background: var(--accent);
  border-color: rgba(245, 237, 228, 0.7);
  transform: scale(1.08);
}
body.theme-media .port-video-tile .video-placeholder-label {
  color: #f5ede4;
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Hide the original "Tap to enlarge" zoom hint on the video tile —
   the play overlay already communicates interactivity. */
body.theme-media .port-video-tile .port-zoom-hint {
  display: none;
}

/* ===== LIGHTBOX — VIDEO MODE =====
   Toggle which media element shows based on .mode-image / .mode-video
   classes set by the JS. */
.lightbox .lightbox-video {
  display: none;
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: #000;
}
.lightbox.mode-image .lightbox-img { display: block; }
.lightbox.mode-image .lightbox-video { display: none; }
.lightbox.mode-video .lightbox-img { display: none; }
.lightbox.mode-video .lightbox-video { display: block; }

/* Intermediate breakpoint: 5-col gets too cramped between 900-1100px,
   collapse to 2 columns so each card has breathing room before going single-col. */
@media (max-width: 1100px) and (min-width: 901px) {
  .price-row.five-col { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Center any orphan cards in the last row of a 5-col layout
   (the 5th card, last bullets, etc. shouldn't sit alone-left) */
@media (max-width: 1100px) and (min-width: 901px) {
  /* When 5 cards in 2 cols → row 3 has 1 orphan, center it */
  .price-row.five-col > .pc:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

/* Slight padding tightening for the narrower five-col cards on desktop */
@media (min-width: 1101px) {
  .price-row.five-col .pc {
    padding: 1.5rem 1.1rem;
    padding-top: 3rem;
  }
  .price-row.five-col .pc-tier {
    font-size: .65rem;
    letter-spacing: 2px;
  }
  .price-row.five-col .pc-price {
    font-size: 1.45rem;
  }
  .price-row.five-col .pc-list li {
    font-size: .82rem;
  }
}

/* Mobile media-page pricing — pair cards 2-up to cut the long scroll.
   With 5 cards total, layout becomes [2 + 2 + 1 wide] on phones.
   Last orphan card centers across the row. */
@media (max-width: 900px) {
  body.theme-media .price-row.five-col {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  /* Center the orphan 5th card across both columns */
  body.theme-media .price-row.five-col > .pc:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: 60%;
    justify-self: center;
  }
  /* Tighter padding inside paired cards */
  body.theme-media .price-row.five-col .pc {
    padding: 1.4rem 1rem;
    padding-top: 2.8rem;
  }
  body.theme-media .price-row.five-col .pc-tier {
    font-size: .68rem;
  }
  /* Shrink the price so ranges like "$150 – $300" and "Starting at $100"
     fit on one line in a half-width paired card */
  body.theme-media .price-row.five-col .pc-price {
    font-size: 1.25rem;
    letter-spacing: -.3px;
    white-space: nowrap;
  }
  body.theme-media .price-row.five-col .pc-list li {
    font-size: .85rem;
  }
}

/* Even tighter on phones */
@media (max-width: 480px) {
  body.theme-media .price-row.five-col {
    gap: .75rem;
  }
  body.theme-media .price-row.five-col .pc {
    padding: 1.2rem .9rem;
    padding-top: 2.6rem;
  }
  body.theme-media .price-row.five-col .pc-price {
    font-size: 1.1rem;
  }
  body.theme-media .price-row.five-col > .pc:nth-child(5):last-child {
    max-width: 80%;
  }
}

/* Mobile pricing — explicitly left-align bulleted items in the paired cards
   so the ✓ checkmarks anchor consistently to the left edge of each card.
   Aggressive overrides: force the <ul> to span the full card width and
   align as block-start instead of inheriting any centered alignment. */
@media (max-width: 900px) {
  body.theme-media .price-row.five-col .pc-list {
    display: block !important;
    width: 100% !important;
    align-self: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  body.theme-media .price-row.five-col .pc-list li {
    display: flex !important;
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin: 0 0 .5rem 0 !important;
    padding: 0 !important;
  }
}

/* More breathing room between the "24+ supported languages" headline stat
   and the "Real-time switching / Native pronunciation" chips beneath it. */
body.theme-receptionist .lang-substat {
  margin-top: 2.5rem;
}

/* "capture lost profit" — green text color (parallels the blue <em> on
   "integrate AI"). Same visual mechanism, different color, different concept. */
body.theme-index .hl-profit {
  color: rgba(110, 213, 156, 0.55);
  font-weight: 700;
}

/* "Custom AI" highlight on the homepage hero H1.
   Coral gradient (deep pink → light pink) to ride the receptionist palette
   without introducing the purple from the language stat. Reads as warm
   accent, doesn't clash with the existing italic-pink <em> on "never sleeps". */
body.theme-receptionist .hl-customai {
  background: linear-gradient(135deg, #ff6b8a 0%, #ffb0c1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Homepage — extra space above the section strip since we removed the intro
   tagline. Without that buffer, the cards sit a bit too close to the nav. */
body.theme-receptionist .section-strip {
  padding-top: 8rem;
}
@media (max-width: 700px) {
  body.theme-receptionist .section-strip {
    padding-top: 6.5rem;
  }
}

/* "FLAGSHIP" badge on the AI Receptionist card in the section strip.
   Anchored to the top-right corner of the card (same pattern as the
   "Most Popular" pricing badge on mobile). Pink coral gradient that
   matches the receptionist H1 highlight. Visible on all three pages. */
/* Base flagship badge — geometry only. Colors are themed per page below. */
.strip-flagship-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  font-family: var(--font-h);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .65rem;
  /* Outer corner matches card radius (14px), inner corner is smaller */
  border-radius: 0 14px 0 8px;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .strip-flagship-badge {
    font-size: .42rem;
    padding: .18rem .4rem;
    letter-spacing: 1px;
    border-radius: 0 14px 0 6px;
  }
}

/* Per-theme flagship badge colors — gradient, text, and shadow each shift
   to fit the page's palette so the badge always feels like part of the
   page rather than a foreign element. */
body.theme-receptionist .strip-flagship-badge {
  background: linear-gradient(135deg, #ff6b8a 0%, #ffb0c1 100%);
  color: #1a0a14;
  box-shadow: 0 2px 8px rgba(255, 107, 138, 0.35);
}
body.theme-index .strip-flagship-badge {
  background: linear-gradient(135deg, #2776d1 0%, #6ed59c 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(39, 118, 209, 0.35);
}
body.theme-media .strip-flagship-badge {
  background: linear-gradient(135deg, #d97a55 0%, #d8b885 100%);
  color: #1c1208;
  box-shadow: 0 2px 8px rgba(217, 122, 85, 0.35);
}

/* AI Automation page — stronger border on outline btn-b ("Book a Free Demo").
   The base --border value (rgba(255,255,255,0.07)) was barely visible against
   the dark backdrop, making the button look half-formed. Use the page accent
   at moderate opacity for a clearly defined edge that still reads as outlined. */
body.theme-index .btn-b {
  border: 2px solid rgba(58, 139, 224, 0.55);
}
body.theme-index .btn-b:hover {
  border-color: var(--accent-bright);
}

/* ====== Tighten "Multilingual by Default" section ======
   Pull each element up: the 24+ stat, the marquee, and "What Sets It Apart"
   below. Vertical rhythm was a bit loose between these elements. */

/* (1) Position of "24+ supported languages" stat below the subhead.
   Use padding-bottom on the .sub paragraph ABOVE rather than margin-top on
   .lang-stat — padding doesn't collapse, reliably creates the gap. */
body.theme-receptionist .lang-headline .sub {
  padding-bottom: 2rem;
}
body.theme-receptionist .lang-showcase .lang-headline .lang-stat {
  margin-top: 0 !important;
}

/* (2) Pull the language marquee scroll up — reduce its top margin */
body.theme-receptionist .marquee-wrapper {
  margin-top: 0.5rem;
}
/* Also reduce gap between lang-headline block and the marquee below it */
body.theme-receptionist .lang-headline {
  margin-bottom: 1rem;
}

/* (3) Pull "What Sets It Apart" (#features) section up — already has 1.5rem
   padding-top from earlier rules; tighten further. */
body.theme-receptionist #features {
  padding-top: 0.5rem;
}

/* "quiet-apos" — softens a typographic apostrophe inside a heading so it
   doesn't read as a tall, prominent vertical mark in serif italic.
   Slightly reduced opacity + a touch lighter weight. */
.quiet-apos {
  opacity: 0.55;
  font-weight: 400;
}

/* Portfolio card divider — gradient line between card title and description.
   Same visual pattern as the pricing card divider. Themed to media's
   terracotta + tan gradient since this only appears on the media page. */
.port-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), transparent);
  margin: 0.9rem 0 1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .port-divider {
    margin: 0.7rem 0 0.85rem;
  }
}

/* Bump "supported languages" up a bit so it sits closer to the middle of
   the "80+" stat rather than aligned with its baseline. */
body.theme-receptionist .lang-stat-lbl {
  position: relative;
  bottom: 0.6rem;
}

/* Inline gradient underline — used for emphasizing single words in body copy.
   Thinner & shorter than the section gradient lines, matches the receptionist
   palette (coral → light pink). Sits just below the text baseline. */
body.theme-receptionist .hl-underline {
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 107, 138, 0.5) 15%,
    rgba(255, 138, 165, 0.6) 50%,
    rgba(255, 107, 138, 0.5) 85%,
    transparent 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 95%;
  padding-bottom: 2px;
}

/* Hamburger menu utility links — Privacy Policy / SMS Opt-In.
   Visually distinct from the main page nav links: smaller, dimmer.
   Visible on BOTH desktop AND mobile (Twilio compliance — these need
   to be readily findable on the live site). */
.n-links li.n-utility {
  position: relative;
}
.n-links li.n-utility a {
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.5px;
}
.n-links li.n-utility a:hover {
  opacity: 1;
}
/* On MOBILE only (hamburger menu), add a divider line above the first
   utility link to separate the legal/compliance group from the page nav.
   On desktop the page-nav items are hidden, so no divider is needed. */
@media (max-width: 900px) {
  .n-links li.n-utility:first-of-type {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ========== FAQ SECTION ==========
   Accordion-style FAQs using native <details>/<summary> for accessibility +
   zero-JS expand/collapse. Each item is a glass card that opens to reveal
   the answer when clicked. Themed for receptionist (pink/coral). */
#faq {
  padding: 4rem 0 3rem;
  position: relative;
}
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(255, 138, 165, 0.25);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--accent-bright);
  position: relative;
  padding-right: 3rem;
  /* Set up a gradient overlay on the text. The brighter "shimmer band"
     sits 200% off to the left by default (invisible). On hover it sweeps
     across the text from left to right. */
  background: linear-gradient(
    90deg,
    var(--accent-bright) 0%,
    var(--accent-bright) 40%,
    #ffe2ec 50%,
    var(--accent-bright) 60%,
    var(--accent-bright) 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.9s ease;
}
.faq-item summary:hover {
  background-position: -100% 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-bright);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
}
@media (max-width: 700px) {
  #faq {
    padding: 2.5rem 0 2rem;
  }
  .faq-list {
    margin-top: 1.8rem;
    gap: 0.7rem;
  }
  .faq-item summary {
    padding: 1rem 1.2rem;
    padding-right: 2.6rem;
    font-size: 0.95rem;
  }
  .faq-item summary::after {
    right: 1.2rem;
    font-size: 1.25rem;
  }
  .faq-item p {
    padding: 0 1.2rem 1.1rem;
    font-size: 0.9rem;
  }
}

/* ========== DEMO CALLOUT ==========
   Editorial-style "show don't tell" moment between the section H2 and
   the feature cards. A small framing line sets up the demonstration,
   then the actual instruction example is delivered in big italic serif —
   the kind of moment that interrupts the scroll and makes the reader
   stop and read. */
.demo-callout {
  max-width: 780px;
  margin: 3rem auto 4rem;
  padding: 2.5rem 2.5rem 2.75rem;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg,
    rgba(255, 107, 138, 0.06) 0%,
    rgba(192, 132, 252, 0.04) 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 138, 165, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
/* Pink coral gradient hairlines top and bottom that bracket it as featured */
.demo-callout::before,
.demo-callout::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), transparent);
  opacity: 0.7;
}
.demo-callout::before { top: 0; }
.demo-callout::after { bottom: 0; }

.dc-frame {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-h);
  margin: 0 auto 1.8rem;
  max-width: 600px;
}

.dc-quote-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 1rem;
}
.dc-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 0.8;
  color: var(--accent-bright);
  opacity: 0.55;
  user-select: none;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.dc-quote-mark-end {
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: -0.2rem;
}
.dc-quote {
  font-family: var(--font-h);
  font-weight: 500;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  letter-spacing: 0.2px;
  color: var(--text-muted);
  margin: 0;
  max-width: 540px;
}

@media (max-width: 700px) {
  .demo-callout {
    margin: 2rem auto 2.8rem;
    padding: 2rem 1.5rem 2.25rem;
    border-radius: 18px;
  }
  .demo-callout::before,
  .demo-callout::after {
    width: 80%;
  }
  .dc-frame {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1.4rem;
  }
  .dc-quote-wrap {
    padding: 0;
    gap: 0.25rem;
  }
  .dc-quote-mark {
    font-size: 1.6rem;
  }
  .dc-quote {
    font-size: 0.88rem;
  }
}

/* Demo callout chip — small editorial label that sits in the top-left
   of the callout panel. Different visual language than the FLAGSHIP badge:
   glass background + thin coral border + leading dot for editorial feel.
   Tells the reader "this is a CATEGORY of capability, not a marketing
   feature claim." */
.dc-chip {
  position: absolute;
  top: 1.4rem;
  left: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-bright);
  padding: 0.4rem 0.85rem 0.4rem 0.75rem;
  background: rgba(255, 107, 138, 0.08);
  border: 1px solid rgba(255, 138, 165, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* Small dot prefix — visual mark that distinguishes it as editorial.
   Pulses gently to draw the eye to the chip without being distracting. */
.dc-chip::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 107, 138, 0.7);
  animation: dc-dot-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
/* Expanding ring pulse — a clear, visible "live indicator" effect like
   a breathing dot on a status indicator. The shadow ring grows out and
   fades, the dot itself stays steady. */
@keyframes dc-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 138, 0.75),
                0 0 6px rgba(255, 107, 138, 0.5);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 107, 138, 0),
                0 0 6px rgba(255, 107, 138, 0.5);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 138, 0),
                0 0 6px rgba(255, 107, 138, 0.5);
    transform: scale(1);
  }
}
/* Add top padding to the callout panel so the chip doesn't crowd the
   framing line below it */
.demo-callout {
  padding-top: 4.75rem;
}

@media (max-width: 700px) {
  .dc-chip {
    top: 1rem;
    left: 1.1rem;
    font-size: 0.55rem;
    letter-spacing: 1.4px;
    padding: 0.32rem 0.65rem 0.32rem 0.55rem;
    gap: 0.4rem;
  }
  .dc-chip::before {
    width: 4px;
    height: 4px;
  }
  .demo-callout {
    padding-top: 3.75rem;
  }
}
