/* ═══════════════════════════════════════════════════════════════════════
   maigica hub — showcase landing page
   Same dark minimalist theme as the original site.
   ═══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary:    #f8f9fb;
    --bg-card:       #ffffff;
    --bg-input:      #f0f1f5;
    --bg-hover:      #edeef2;
    --border:        #e0e0e0;
    --text-primary:  #1a1d23;
    --text-secondary:#555d6b;
    --text-muted:    #999999;
    --accent:        #7c5cbf;
    --accent-dim:    rgba(124, 92, 191, 0.12);
    --accent-glow:   rgba(124, 92, 191, 0.30);
    --radius-sm:     10px;
    --radius-md:     16px;
    --max-w:         1100px;
    --font:          'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-transform: lowercase;
}
a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { font-weight: 300; line-height: 1.25; letter-spacing: 0.5px; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: 1.1rem; font-weight: 300; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── Navbar ────────────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    background: rgba(248,249,251,0.85);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo svg { display: block; }
.nav-links {
    list-style: none; display: flex; align-items: center; gap: 1.5rem;
}
.nav-links a {
    color: var(--text-secondary); font-size: 0.9rem; font-weight: 400;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-links a.nav-cta {
    border: 1px solid var(--accent); color: var(--accent);
    padding: 0.4rem 1.2rem; border-radius: 999px; font-weight: 500;
}
.nav-links a.nav-cta:hover { background: var(--accent-dim); }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    text-align: center; padding-top: 4rem;
}
.hero-content { width: 100%; }

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--accent);
    opacity: 0;
    margin-bottom: 1.5rem;
    animation: anchor-fade-in 1s ease-out 0.3s forwards;
}
@keyframes anchor-fade-in {
    0%   { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: anchor-fade-in 1s ease-out 0.55s forwards;
}

#tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--accent);
    font-weight: 300;
    min-height: 1.8em;
    margin-bottom: 2.5rem;
    letter-spacing: 0.3px;
    line-height: 1.4;
}
#tagline .cursor {
    display: inline-block; width: 2px; height: 1em;
    background: var(--accent); margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink-cursor 0.75s step-end infinite;
}
@keyframes blink-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes fade-scale-in { 0% { opacity: 0; transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
.tagline-appear { animation: fade-scale-in 0.6s ease-out; }

.hero-ctas {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-primary-hero {
    background: var(--accent); color: #fff;
    padding: 0.75rem 2rem; border-radius: 999px;
    font-weight: 500; font-size: 0.9rem;
    display: inline-flex; align-items: center;
    transition: opacity 0.2s;
}
.btn-primary-hero:hover { opacity: 0.82; text-decoration: none; }
.btn-ghost-hero {
    border: 1px solid var(--accent); color: var(--accent);
    padding: 0.75rem 2rem; border-radius: 999px;
    font-weight: 400; font-size: 0.9rem;
    display: inline-flex; align-items: center;
    transition: background 0.2s;
}
.btn-ghost-hero:hover { background: var(--accent-dim); text-decoration: none; }

/* ── Pillars ───────────────────────────────────────────────────── */
.pillars {
    padding: 6rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pillars .section-title {
    text-align: center; margin-bottom: 3.5rem;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem 2.5rem;
}
.pillar {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.pillar-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-dim);
    color: var(--accent);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 {
    font-size: 1.25rem; font-weight: 500; color: var(--text-primary);
    letter-spacing: 0.3px;
}
.pillar p {
    color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65;
    max-width: 280px;
}

/* ── Reach ─────────────────────────────────────────────────────── */
.reach {
    padding: 6rem 0;
}
.reach .section-title {
    text-align: center; margin-bottom: 0.75rem;
}
.reach-intro {
    text-align: center;
    color: var(--text-secondary); font-size: 1rem;
    margin-bottom: 3.5rem;
}
.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.reach-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    transition: border-color 0.3s, transform 0.3s;
}
.reach-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.reach-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-dim);
    color: var(--accent);
}
.reach-icon svg { width: 26px; height: 26px; }
.reach-card h3 {
    font-size: 1rem; font-weight: 500; color: var(--text-primary);
}
.reach-card p {
    color: var(--text-secondary); font-size: 0.88rem; line-height: 1.55;
}

/* ── Solutions grid ────────────────────────────────────────────────── */
.solutions {
    padding: 6rem 0;
}
.solutions .section-title {
    text-align: center; margin-bottom: 3.5rem;
    color: var(--text-primary);
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.solution-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    text-decoration: none;
}
.solution-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin-bottom: 0.25rem;
}
.solution-logo-img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
.solution-card, .solution-card:hover, .solution-card * {
    text-decoration: none;
}
.solution-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-dim);
    margin-bottom: 0.5rem;
}
.solution-icon svg { width: 28px; height: 28px; }
.solution-card h3 {
    font-size: 1.2rem; font-weight: 500; color: var(--text-primary);
}
.solution-card .tagline {
    color: var(--accent); font-weight: 300; font-size: 0.95rem;
    font-style: italic;
}
.solution-card p {
    color: var(--text-secondary); font-size: 0.92rem; line-height: 1.5;
}
.solution-card .card-cta {
    margin-top: auto; padding-top: 1rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--accent); font-weight: 500; font-size: 0.9rem;
}
.solution-card .card-cta svg {
    width: 16px; height: 16px; transition: transform 0.2s;
}
.solution-card:hover .card-cta svg { transform: translateX(3px); }

/* ── Per-vertical tile colours ─────────────────────────────────────── */
.solution-card--chat .card-cta        { color: #7c5cbf; }
.solution-card--chat:hover            { border-color: #7c5cbf; }
.solution-card--chat .tagline         { color: #7c5cbf; }

.solution-card--clinic .card-cta  { color: #1a6b5a; }
.solution-card--clinic:hover      { border-color: #1a6b5a; }
.solution-card--clinic .tagline   { color: #1a6b5a; }

.solution-card--wand {
    background: #0a0a0a;
    border-color: #333333;
}
.solution-card--wand:hover            { border-color: #a78bfa; }
.solution-card--wand .tagline         { color: #a78bfa; }
.solution-card--wand p                { color: #a7a7a7; }
.solution-card--wand .card-cta        { color: #a78bfa; }

/* ── Video showcase ────────────────────────────────────────────────── */
.showcase {
    padding: 4rem 0 6rem;
}
.showcase .section-title {
    text-align: center; margin-bottom: 3rem;
    color: var(--text-primary);
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--text-muted);
    gap: 0.75rem;
    transition: border-color 0.3s;
}
.video-placeholder:hover { border-color: var(--accent); }
.video-placeholder svg {
    width: 48px; height: 48px; opacity: 0.4;
}
.video-placeholder .label {
    font-size: 0.85rem; font-weight: 400;
}

/* ── Built on maigica ──────────────────────────────────────────────── */

/* ── Modal ─────────────────────────────────────────────────────────── */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
}
.modal-backdrop[hidden] { display: none; }
.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    max-width: 620px; width: 100%;
    position: relative;
    text-align: center;
}
.modal h2 {
    margin-bottom: 1.5rem; font-weight: 300;
}
.modal-close {
    position: absolute; top: 0.75rem; right: 1rem;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--text-primary); }
.modal-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.modal-option {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1rem;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}
.modal-option:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    text-decoration: none;
}
.modal-option h3 { color: var(--text-primary); font-size: 0.95rem; font-weight: 500; }
.modal-option p { color: var(--text-secondary); font-size: 0.8rem; line-height: 1.4; }
.modal-option .solution-icon {
    width: 44px; height: 44px;
}

/* ── Modal divider + inquiry ───────────────────────────────────────── */
.modal-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted); font-size: 0.8rem;
}
.modal-divider::before, .modal-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.modal-inquiry p {
    color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.75rem;
}
.inquiry-form {
    display: flex; flex-direction: column; gap: 0.5rem;
}
.inquiry-form input,
.inquiry-form textarea {
    width: 100%; padding: 0.6rem 0.9rem;
    background: var(--bg-input); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text-primary);
    font-family: var(--font); font-size: 0.9rem;
    outline: none; transition: border-color 0.2s;
    text-transform: none;
}
.inquiry-form textarea { resize: vertical; min-height: 60px; }
.inquiry-form input:focus,
.inquiry-form textarea:focus { border-color: var(--accent); }
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: var(--text-muted); }
.inquiry-btn {
    align-self: flex-end;
    padding: 0.6rem 1.2rem;
    background: transparent; border: 1px solid var(--accent);
    border-radius: var(--radius-sm); color: var(--accent);
    font-family: var(--font); font-size: 0.9rem;
    cursor: pointer; transition: background 0.2s;
    text-transform: lowercase;
}
.inquiry-btn:hover { background: var(--accent-dim); }
.inquiry-note {
    color: var(--accent); font-size: 0.8rem; margin-top: 0.5rem;
}

/* ── Built on maigica ──────────────────────────────────────────────── */
.platform-note {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}
.platform-note p {
    color: var(--text-secondary); font-size: 1rem;
    max-width: 560px; margin: 0.75rem auto 1.5rem;
    line-height: 1.6;
}
.platform-note .btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1px solid var(--border); color: var(--text-secondary);
    padding: 0.6rem 1.4rem; border-radius: 999px;
    font-size: 0.9rem; transition: border-color 0.2s, color 0.2s;
}
.platform-note .btn-outline:hover {
    border-color: var(--accent); color: var(--accent); text-decoration: none;
}

/* ── Footer ────────────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    text-align: center;
}
.footer-inner {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.footer-copy {
    color: var(--text-muted); font-size: 0.8rem;
}
.footer-rights {
    color: var(--text-muted); font-size: 0.75rem;
}
.footer-links {
    display: flex; gap: 0.5rem; align-items: center; margin-top: 0.3rem;
}
.footer-links a {
    color: var(--text-muted); font-size: 0.8rem;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-sep {
    color: var(--text-muted); font-size: 0.8rem;
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .hero { min-height: 85vh; padding-top: 5rem; }
    .solutions-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .reach-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { gap: 1rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
    .reach-grid { grid-template-columns: 1fr; }
}

/* Auto-generated — do not edit. Run verticals/_engine/generate.ts to regenerate. */

:root {
  /* Legacy vars (admin pages) */
  --v-primary: #000000;
  --v-primary-light: #1a1a1a;
  --v-accent: #a78bfa;
  --v-border-radius: 10px;
  --v-font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Main-site vars (landing pages) */
  --bg-primary: #000000;
  --bg-card: #0a0a0a;
  --accent: #a78bfa;
  --text-primary: #ffffff;
  --text-secondary: #a7a7a7;
  --text-muted: #666666;
  --border: #333333;
  --radius-sm: 10px;
  --radius-md: 16px;
  --max-w: 1100px;
  --font: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bg-input: #141414;
  --bg-hover: #1a1a1a;
  --accent-dim: rgba(167, 139, 250, 0.15);
  --accent-glow: rgba(167, 139, 250, 0.35);
}

/* ═══════════════════════════════════════════════════════════════
   Vertical base — shared layout for all generated vertical sites
   Matches maigica.ai main website aesthetic.
   ═══════════════════════════════════════════════════════════════ */

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

body {
  font-family: var(--font, -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  color: var(--text-primary, #fff);
  background: var(--bg-primary, #000);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-transform: lowercase;
  transition: background 0.3s, color 0.3s;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { text-transform: inherit; }
input, select, textarea { text-transform: none; }

h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.container { max-width: var(--max-w, 1100px); margin: 0 auto; padding: 0 24px; }

/* ═══ NAVBAR ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 52px;
  padding: 0;
  background: color-mix(in srgb, var(--bg-primary) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border, #333);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo:hover { text-decoration: none; opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted, #666);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  text-decoration: none;
}
.nav-links a.nav-signin,
.nav-signin {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.nav-signin:hover,
.nav-signin:hover {
  background: var(--accent) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.nav-links a.nav-cta-circle,
.nav-cta-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.nav-links a.nav-cta-circle:hover,
.nav-cta-circle:hover {
  background: var(--accent) !important;
  color: #fff !important;
  opacity: 1 !important;
  text-decoration: none;
}
.nav-cta-circle svg { width: 14px; height: 14px; }

#nav-auth-register { margin-left: -0.75rem; }

/* Language select */
.lang-select {
  background: transparent;
  border: 1px solid var(--border, #333);
  color: var(--text-muted, #666);
  border-radius: 9999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: center;
  min-width: 3.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.lang-select:hover,
.lang-select:focus {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}
.lang-select option { background: var(--bg-card, #0a0a0a); color: var(--text-primary); }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted, #999);
  cursor: pointer;
  padding: 4px;
  width: 28px;
  height: 28px;
}

/* Mobile menu */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 90;
}
.mobile-menu-backdrop.open { display: block; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  right: 0;
  z-index: 95;
  background: color-mix(in srgb, var(--bg-card, #111) 97%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
  padding: 16px 24px;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 6px 0;
}
.mobile-menu a:hover { color: var(--text-primary); text-decoration: none; }
.mobile-lang-select { margin-top: 8px; }
.mobile-auth-user { display: flex; align-items: center; gap: 8px; padding: 6px 0; }

/* ═══ HERO ═════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 24px 0;
  background: transparent;
}
.hero[hidden] { display: none; }
html.v-page-routed .hero { display: none; }
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#hero-anchor {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--text-secondary, #a7a7a7);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  opacity: 1;
  animation: anchor-fade-in 1.5s ease;
}

#tagline {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 200;
  letter-spacing: 0.5px;
  color: var(--accent);
  min-height: 2.8em;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

/* Blinking cursor */
.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink-cursor 0.8s step-end infinite;
}

/* Hero CTA circles */
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.hero-cta-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  color: var(--text-secondary);
  text-decoration: none;
}
.hero-cta-circle:hover { text-decoration: none; }
.hero-cta-circle.primary {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.hero-cta-circle.primary:hover {
  background: var(--accent);
  color: #fff;
}
.hero-cta-circle:not(.primary) {
  border: 1px solid var(--border, #333);
  color: var(--text-muted, #666);
}
.hero-cta-circle:not(.primary):hover {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
}

/* ═══ PAGE VIEWS ══════════════════════════════════════ */

.page-view {
  padding-top: 4rem;
  min-height: 100vh;
}
.page-view[hidden] { display: none; }
.page-view.page-enter {
  animation: page-fade-in 0.4s ease both;
}
@keyframes page-fade-in {
  from { transform: translateY(12px); }
  to   { transform: translateY(0); }
}

.page-inner {
  padding: 3rem 0 4rem;
}

.page-title {
  text-align: center;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 200;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 3rem;
}

/* ═══ FEATURE CARDS ═══════════════════════════════════ */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: var(--max-w, 1100px);
  margin: 0 auto;
}

.feature-card {
  width: 300px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 2rem 1.5rem;
  animation: fade-up 0.6s ease both;
}
.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.08s; }
.feature-card:nth-child(3) { animation-delay: 0.16s; }
.feature-card:nth-child(4) { animation-delay: 0.24s; }
.feature-card:nth-child(5) { animation-delay: 0.32s; }
.feature-card:nth-child(6) { animation-delay: 0.40s; }
.feature-card:nth-child(7) { animation-delay: 0.48s; }
.feature-card:nth-child(8) { animation-delay: 0.56s; }
.feature-card:nth-child(9) { animation-delay: 0.64s; }

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: 0;
}

.feature-card p {
  color: var(--text-secondary, #a7a7a7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ═══ USE CASES ═══════════════════════════════════════ */

.uc-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.uc-filter-btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border, #333);
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary, #a7a7a7);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: lowercase;
}
.uc-filter-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
.uc-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.usecases-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-w, 700px);
  margin: 0 auto;
}
.usecase-card {
  width: 100%;
  max-width: 600px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 2rem 1.5rem;
  animation: fade-up 0.6s ease both;
}
.usecase-card:nth-child(1) { animation-delay: 0s; }
.usecase-card:nth-child(2) { animation-delay: 0.08s; }
.usecase-card:nth-child(3) { animation-delay: 0.16s; }
.usecase-card:nth-child(4) { animation-delay: 0.24s; }
.usecase-card:nth-child(5) { animation-delay: 0.32s; }
.usecase-card:nth-child(6) { animation-delay: 0.40s; }
.usecase-card:nth-child(n+7) { animation-delay: 0.48s; }
.usecase-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.usecase-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: 0;
}
.usecase-card p {
  color: var(--text-secondary, #a7a7a7);
  font-size: 0.9rem;
  line-height: 1.5;
}
.usecase-card[hidden] { display: none !important; }

.usecase-visual {
  margin-top: 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
}
.usecase-visual video,
.usecase-visual img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

/* ── Kiosk phone-frame preview ─── */
.uc-phone-frame {
  width: 180px;
  height: 100%;
  border-radius: 26px;
  border: 3px solid #333;
  overflow: hidden;
  background: #0d1117;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  position: relative;
  container-type: inline-size;
}
.uc-phone-frame .uc-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.uc-phone-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  max-width: none;
  max-height: none;
}
.uc-phone-frame .uc-phone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,17,23,0.3) 0%,
    rgba(13,17,23,0.05) 30%,
    rgba(13,17,23,0.4) 70%,
    rgba(13,17,23,0.85) 100%
  );
  z-index: 1;
}
.uc-phone-frame .uc-phone-mic {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28cqi;
  height: 28cqi;
  border-radius: 50%;
  border: 2px solid rgba(139,92,246,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 16px rgba(139,92,246,0.4);
}
.uc-phone-frame .uc-phone-mic svg {
  width: 10cqi;
  height: 10cqi;
}

.uc-learn-link {
  display: block;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted, #999);
  text-decoration: none;
  transition: color 0.15s;
}
.uc-learn-link:hover {
  color: var(--accent);
}

/* ═══ PRICING ═════════════════════════════════════════ */

/* Billing toggle (Monthly / Annual) */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0 auto 1.5rem;
}
.billing-toggle__btn {
  background: transparent;
  border: 1px solid var(--border, #333);
  color: var(--text-muted, #666);
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-transform: lowercase;
}
.billing-toggle__btn:first-child { border-radius: 6px 0 0 6px; }
.billing-toggle__btn:nth-child(2) { border-radius: 0 6px 6px 0; }
.billing-toggle__btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Annual price display */
.pricing-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  justify-content: center;
  min-height: 3.2rem;
}
.pricing-price-old {
  font-size: 0.95rem;
  color: var(--text-muted, #666);
  text-decoration: line-through;
  font-weight: 300;
  transition: opacity 0.3s ease;
}
.pricing-period-sub {
  display: block;
  color: var(--text-muted, #666);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}
body[data-billing="monthly"] .pricing-price-old { opacity: 0; }
body[data-billing="monthly"] .pricing-period-sub { opacity: 0; }

/* Add-on group label */
.pricing-group-label {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-primary);
  margin: 3rem auto 1.5rem;
  letter-spacing: 0.5px;
}
.pricing-grid-packs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-grid-packs .pricing-card { width: 240px; padding: 1.5rem 1rem; }

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  width: 300px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 2rem 1.5rem;
  animation: fade-up 0.6s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card:nth-child(1) { animation-delay: 0s; }
.pricing-card:nth-child(2) { animation-delay: 0.1s; }
.pricing-card:nth-child(3) { animation-delay: 0.2s; }
.pricing-card:nth-child(4) { animation-delay: 0.3s; }

.pricing-card {
  border: 1px solid transparent;
  border-radius: 16px;
  transition: border-color 0.2s;
}
.pricing-card:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

.pricing-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 200;
  color: var(--accent);
  margin-bottom: 0.1rem;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted, #666);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: center;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  padding: 6px 0;
  color: var(--text-secondary, #a7a7a7);
  font-size: 0.9rem;
}
.pricing-card > .btn { margin-top: auto; }

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted, #999);
  margin: 1.5rem auto 0;
  max-width: 600px;
}

/* ═══ BUTTONS ═════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-transform: lowercase;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary, .btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-primary:hover, .btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

/* ═══ FAQ ═════════════════════════════════════════════ */

.v-faq-list { max-width: 760px; margin: 0 auto; }
.v-faq-item { margin-bottom: 16px; }
.v-faq-q {
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  padding: 14px 16px;
  background: var(--bg-card, #0a0a0a);
  border: 1px solid var(--border, #333);
  border-radius: 10px;
  color: var(--text-primary);
  transition: border-color 0.2s;
}
.v-faq-q:hover { border-color: var(--accent); }
.v-faq-a {
  padding: 12px 16px 0;
  color: var(--text-secondary, #a7a7a7);
  font-size: 0.92rem;
  display: none;
}
.v-faq-item.open .v-faq-a { display: block; }

/* ═══ AUTH (inline page) ══════════════════════════════ */

.auth-box {
  max-width: 400px;
  margin: 0 auto;
  background: var(--bg-card, #0a0a0a);
  border: 1px solid var(--border, #333);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.auth-form { display: flex; flex-direction: column; gap: 0.75rem; }
.auth-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted, #888);
  margin-bottom: 0.3rem;
}
.auth-form input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border, #333);
  border-radius: 10px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.auth-form input:focus,
.auth-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.auth-form textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border, #333);
  border-radius: 10px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.auth-submit {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid var(--accent);
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  color: var(--accent);
  transition: background 0.15s, color 0.15s;
  text-transform: lowercase;
  margin-top: 0.5rem;
}
.auth-submit:hover:not(:disabled) { background: var(--accent); color: #fff; }
.auth-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.auth-error { font-size: 0.82rem; color: #ef4444; min-height: 1.2em; text-align: center; }
.auth-success { font-size: 0.82rem; color: #10b981; min-height: 1.2em; text-align: center; }
.auth-msg { font-size: 0.85rem; padding: 0.75rem; border-radius: 10px; background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent); text-align: center; margin-bottom: 1rem; }

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted, #666);
}
.auth-switch a { color: var(--accent); font-weight: 500; }

/* ═══ FOOTER ══════════════════════════════════════════ */

.site-footer {
  border-top: 1px solid var(--border, #333);
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  color: var(--text-muted, #666);
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-rights {
  font-size: 0.75rem;
  color: var(--text-muted, #666);
  margin: -0.3rem 0 0;
}
.footer-links a {
  color: var(--text-muted, #666);
  font-size: 0.8rem;
}
.footer-links a:hover { color: var(--accent); }

/* ═══ ADMIN IFRAME ════════════════════════════════════ */

.admin-iframe {
  width: 100%;
  min-height: calc(100vh - 52px);
  border: none;
  background: var(--bg-primary);
}

/* ═══ ANIMATIONS ══════════════════════════════════════ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

@keyframes anchor-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ══════════════════════════════════════ */

@media (max-width: 1100px) and (min-width: 769px) {
  .page-inner { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; }

  .page-inner { padding: 2rem 8px 3rem; }

  #hero-anchor { font-size: 1rem; }
  #tagline { font-size: clamp(1.4rem, 5vw, 2rem); }

  .features-grid { flex-direction: column; align-items: center; }
  .feature-card { width: 100%; max-width: 400px; }
  .usecases-grid { flex-direction: column; align-items: center; }
  .usecase-card { width: 100%; max-width: 600px; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { width: 100%; max-width: 400px; }

  .hub-products-grid { flex-direction: column; align-items: center; }
  .hub-product-card { width: 100%; max-width: 400px; }
  .auth-box { margin: 0 auto; max-width: calc(100% - 32px); }
}

.nav-desktop:not([hidden]) { display: list-item; }
@media (max-width: 768px) {
  .nav-desktop { display: none; }
}

/* ═══ ONBOARDING ══════════════════════════════════════ */

.v-onboarding { padding: 48px 24px; max-width: 640px; margin: 0 auto; }
.v-onboarding h1 { font-size: 1.8rem; margin-bottom: 32px; text-align: center; }

.v-step { display: none; }
.v-step.active { display: block; }
.v-step h2 { font-size: 1.3rem; margin-bottom: 8px; }
.v-step-desc { color: var(--text-muted); margin-bottom: 24px; }

.v-field { margin-bottom: 20px; }
.v-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.v-field input, .v-field select, .v-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border, #333);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.v-field textarea { min-height: 100px; resize: vertical; }
.v-field input:focus, .v-field select:focus, .v-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.v-step-nav { display: flex; justify-content: space-between; margin-top: 32px; }
.v-btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.95rem;
  border: 1px solid var(--border, #333);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.v-btn-secondary:hover { background: var(--bg-card); color: var(--text-primary); }

.v-completion { text-align: center; padding: 48px 0; }
.v-completion h2 { color: var(--accent); margin-bottom: 16px; }
.v-completion p { color: var(--text-secondary); max-width: 500px; margin: 0 auto; }

/* ═══ HUB SECTIONS ════════════════════════════════════ */

/* hideAuth — keeps nav-auth elements in DOM but never visible */
body[data-hide-auth] #nav-auth-signin,
body[data-hide-auth] #nav-auth-register,
body[data-hide-auth] #nav-auth-user,
body[data-hide-auth] #nav-auth-logout,
body[data-hide-auth] #mobile-auth-signin,
body[data-hide-auth] #mobile-auth-register,
body[data-hide-auth] #mobile-auth-user,
body[data-hide-auth] #mobile-btn-logout { display: none !important; }

/* Hub hero text CTAs */
.hero-ctas--text { gap: 1rem; }
.hero-cta-btn--primary,
.hero-cta-btn--secondary {
  display: inline-flex; align-items: center;
  border-radius: 9999px; padding: 0.65rem 2rem;
  font-family: inherit; font-size: 0.9rem;
  text-decoration: none; text-transform: lowercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hero-cta-btn--primary {
  border: 1px solid var(--accent); color: var(--accent); font-weight: 500;
}
.hero-cta-btn--primary:hover { background: var(--accent); color: #fff; text-decoration: none; }
.hero-cta-btn--secondary {
  border: 1px solid var(--border, #333); color: var(--text-secondary); font-weight: 400;
}
.hero-cta-btn--secondary:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* Hub solutions section intro */
.hub-section-intro {
  text-align: center; color: var(--text-secondary); font-size: 1rem;
  margin: -1.5rem auto 3rem; max-width: 560px;
}

/* Hub product cards */
.hub-products-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2rem; max-width: var(--max-w); margin: 0 auto;
}
.hub-product-card {
  width: 300px; text-align: center;
  background: var(--card-bg, transparent);
  border: 1px solid var(--border, #333); border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
}
.hub-product-card.hub-card-visible {
  opacity: 1;
  transform: translateY(0);
}
.hub-product-card:hover {
  border-color: var(--card-accent, var(--accent));
  transform: translateY(-4px); text-decoration: none;
}
.hub-product-logo { line-height: 0; margin-bottom: 0.25rem; }
.hub-product-wordmark { height: 28px; width: auto; max-width: 100%; }
.hub-product-tagline {
  font-size: 0.85rem; font-weight: 300; font-style: italic;
  color: var(--card-accent, var(--accent));
}
.hub-product-card h3 {
  font-size: 1.1rem; font-weight: 500; color: var(--card-text, var(--text-primary)); margin: 0;
}
.hub-product-card p {
  font-size: 0.88rem; color: var(--card-text, var(--text-secondary)); line-height: 1.55;
}
.hub-product-link {
  margin-top: auto; padding-top: 0.75rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--card-accent, var(--accent));
}

/* Hub contact box */
.hub-contact-box { max-width: 480px; }

/* ═══ PRIVACY ═════════════════════════════════════════ */

.v-privacy { padding: 48px 24px; max-width: 760px; margin: 0 auto; }
.v-privacy h1 { font-size: 1.8rem; margin-bottom: 24px; }
.v-privacy h2 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; }
.v-privacy p, .v-privacy li { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 8px; }
.v-privacy ul { padding-left: 24px; }

/* ═══════════════════════════════════════════════════════════════
   ADMIN PAGES — preserved from original
   ═══════════════════════════════════════════════════════════════ */

.v-admin-nav {
  background: #fff;
  color: var(--v-primary);
  padding: 0 24px;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.v-admin-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.v-admin-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--v-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v-admin-brand:hover { text-decoration: none; opacity: 0.85; }
.v-admin-brand-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.5px;
}
.v-admin-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.v-admin-user { font-size: 0.82rem; color: #555; }
.v-admin-logout {
  background: transparent;
  border: none;
  color: #888;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.v-admin-logout:hover { background: #f3f4f6; color: #333; }

.v-admin-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.v-admin-tab {
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 9999px;
  font-family: inherit;
  transition: color 0.15s, background 0.15s;
  text-transform: lowercase;
}
.v-admin-tab:hover { color: #333; background: #f3f4f6; }
.v-admin-tab.active { color: var(--v-accent); background: var(--v-primary-light, #e8f5f1); }

.v-admin-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

.v-admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.v-metric-card {
  background: #fff;
  border: 1px solid #eff0f3;
  border-radius: var(--v-border-radius);
  padding: 20px;
  text-align: center;
}
.v-metric-label { font-size: 0.82rem; color: #666; margin-bottom: 4px; }
.v-metric-value { font-size: 1.6rem; font-weight: 700; color: var(--v-primary); }

.v-admin-table-section { margin-top: 24px; }
.v-admin-table-section h3 { font-size: 1.1rem; margin-bottom: 12px; }
.v-admin-table-wrap { overflow-x: auto; }
.v-admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.v-admin-table th,
.v-admin-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #e5e7eb; }
.v-admin-table th { font-weight: 600; color: #888; background: #fcfcfd; }

.v-admin-date-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.v-admin-date-filter label { font-size: 0.85rem; color: #666; }
.v-admin-date-filter input[type="date"] {
  padding: 6px 10px;
  border: 1px solid #d1d5db;
  border-radius: var(--v-border-radius);
  font-size: 0.85rem;
  font-family: inherit;
}
.v-admin-empty { color: #888; font-size: 0.92rem; text-align: center; padding: 32px 0; }

.v-settings-section {
  background: #fff;
  border: 1px solid #eff0f3;
  border-radius: var(--v-border-radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.v-settings-section-title {
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fcfcfd;
  margin: 0;
}
.v-settings-toggle { font-size: 0.7rem; transition: transform 0.2s; }
.v-settings-section.collapsed .v-settings-toggle { transform: rotate(-90deg); }
.v-settings-section-body { padding: 20px; }
.v-settings-section.collapsed .v-settings-section-body { display: none; }
.v-settings-readonly {
  background: #f3f4f6;
  padding: 10px;
  border-radius: var(--v-border-radius);
  font-size: 0.82rem;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}
.v-field-hint { display: block; font-size: 0.78rem; color: #888; margin-top: 4px; }
.v-field--checkbox { margin-bottom: 14px; }
.v-field--checkbox label { font-weight: 400; }
.v-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  cursor: pointer;
}
.v-checkbox-label input[type="checkbox"] { width: auto; padding: 0; margin: 0; accent-color: var(--v-primary); }
.v-admin-save-status { margin-left: 16px; font-size: 0.88rem; }

.v-panel-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.v-admin-footer {
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  text-align: center;
  color: #999;
  font-size: 0.78rem;
}
.v-admin-footer a { color: #999; }
.v-admin-footer a:hover { color: var(--v-accent); }
.v-admin-footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 4px;
}

.v-field-row { display: flex; align-items: center; gap: 8px; }
.v-field-row select { flex: 1; }

.v-btn-play-voice {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--v-accent);
  background: transparent;
  color: var(--v-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.v-btn-play-voice:hover { background: var(--v-accent); color: #fff; }
.v-btn-play-voice.playing { background: var(--v-accent); color: #fff; }

.v-settings-info {
  background: var(--v-primary-light, #f0f9ff);
  border: 1px solid #e0e7ef;
  border-radius: var(--v-border-radius);
  padding: 16px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}
.v-settings-info a { color: var(--v-accent); font-weight: 500; }

.v-transcriptions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.v-transcriptions-header h2 { font-size: 1.3rem; margin: 0; }

.v-btn-small {
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid color-mix(in srgb, var(--v-accent, #1a6b5a) 25%, transparent);
  border-radius: 4px;
  background: color-mix(in srgb, var(--v-accent, #1a6b5a) 12%, transparent);
  color: var(--v-accent, #1a6b5a);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.4;
}
.v-btn-small:hover { background: color-mix(in srgb, var(--v-accent, #1a6b5a) 22%, transparent); }
.v-btn-small--summary {
  border-color: color-mix(in srgb, var(--v-accent, #1a6b5a) 40%, transparent);
  color: var(--v-accent, #1a6b5a);
  background: color-mix(in srgb, var(--v-accent, #1a6b5a) 8%, transparent);
}
.v-btn-small--summary:hover { background: color-mix(in srgb, var(--v-accent, #1a6b5a) 18%, transparent); }
.v-btn-small--outline {
  background: none;
  border: none;
  border-style: none;
  color: var(--v-accent, #1a6b5a);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 400;
}
.v-btn-small--outline:hover { background: color-mix(in srgb, var(--v-accent, #1a6b5a) 10%, transparent); }
.v-btn-small:disabled { opacity: 0.6; cursor: default; }
.v-rec-actions { display: flex; gap: 6px; flex-wrap: wrap; }

.v-rec-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 500;
}
.v-rec-status--transcribed { background: #dbeafe; color: #1e40af; }
.v-rec-status--summarized { background: #d1fae5; color: #065f46; }
.v-rec-status--recorded { background: #fef3c7; color: #92400e; }
.v-rec-status--recording { background: #fee2e2; color: #991b1b; }
.v-rec-status--transcribing { background: #e0e7ff; color: #3730a3; }

.v-rec-controls { text-align: center; padding: 24px 0; }
.v-rec-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: var(--v-primary);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v-rec-btn:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.v-rec-btn.recording { background: #dc2626; animation: v-pulse 1.2s ease-in-out infinite; }
@keyframes v-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.v-recording-timer {
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #dc2626;
  margin-top: 8px;
}

.v-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.v-modal {
  background: #fff;
  border-radius: var(--v-border-radius);
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.v-modal h3 { font-size: 1.15rem; margin-bottom: 16px; }
.v-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  align-items: center;
}
.v-modal-actions .v-btn-secondary { margin-left: auto; }
.v-transcript-text {
  background: #f9fafb;
  padding: 16px;
  border-radius: var(--v-border-radius);
  font-size: 0.88rem;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
  max-height: 50vh;
  overflow-y: auto;
}
.v-admin-save-status.success { color: #10b981; }
.v-admin-save-status.error { color: #ef4444; }

body.v-admin-page {
  background: #f8f9fb;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-transform: none;
}
body.v-admin-page .v-admin-main { flex: 1; }

body.v-admin-page label,
body.v-admin-page button,
body.v-admin-page .v-settings-section-title,
body.v-admin-page .v-panel-title,
body.v-admin-page .v-admin-table th,
body.v-admin-page .v-metric-label,
body.v-admin-page .v-field-hint,
body.v-admin-page .v-admin-empty,
body.v-admin-page .v-admin-date-filter label {
  text-transform: lowercase;
}

@media (max-width: 768px) {
  .v-admin-nav-inner { padding: 0 12px; }
  .v-admin-tabs { gap: 0; }
  .v-admin-main { padding: 20px 12px; }
  .v-admin-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ PLAN BADGE + USERNAME IN NAV ════════════════════ */

.nav-user-name {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 300;
}
.plan-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: lowercase;
  margin-left: 6px;
  vertical-align: middle;
}
.badge-free { background: var(--border); color: var(--text-secondary); }
.badge-pp   { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent); }
.badge-biz  { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent); }
.badge-ent  { background: var(--accent); color: var(--bg-primary); }

/* ── Plan dropdown (from badge click) ─────────────── */
.plan-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  background: var(--bg-card, #0a0a0a);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plan-dropdown[hidden] { display: none; }
.plan-dropdown__btn {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  text-transform: lowercase;
  transition: background 0.15s;
}
.plan-dropdown__btn:hover {
  background: var(--bg-hover, rgba(255,255,255,.08));
}

/* ═══ TRANSCRIPTIONS ══════════════════════════════════ */

.v-rec-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  min-height: 90px;
}

.v-staff-filter {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border, #333);
  background: var(--bg-card, #111);
  color: var(--text-primary, #eee);
  font-size: 0.82rem;
  outline: none;
}
.v-staff-filter:focus { border-color: var(--accent, #6C63FF); }

.v-rec-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.v-rec-btn:hover {
  background: var(--accent);
  color: var(--bg-primary, #000);
}
.v-rec-btn.recording {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
  animation: v-pulse-rec 1.2s infinite;
}
@keyframes v-pulse-rec {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}

.v-rec-timer {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary, #aaa);
  letter-spacing: 1px;
}

.v-admin-empty {
  color: var(--text-secondary, #aaa);
  font-size: 0.95rem;
  padding: 2rem 0;
}

.v-admin-table-wrap {
  overflow-x: auto;
}

.v-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.v-admin-table th,
.v-admin-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border, rgba(255,255,255,.08));
}
.v-admin-table th {
  color: var(--text-secondary, #aaa);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.v-rec-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.v-btn-small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, opacity 0.15s;
  line-height: 1.4;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.v-btn-small:hover { background: color-mix(in srgb, var(--accent) 22%, transparent); }
.v-btn-small--summary {
  background: color-mix(in srgb, var(--text-secondary, #888) 15%, transparent);
  color: var(--text-secondary, #888);
  border-color: color-mix(in srgb, var(--text-secondary, #888) 25%, transparent);
}
.v-btn-small--summary:hover { background: color-mix(in srgb, var(--text-secondary, #888) 25%, transparent); }
.v-btn-small--outline {
  background: none;
  border: none;
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 400;
}
.v-btn-small--outline:hover { background: var(--accent-dim, color-mix(in srgb, var(--accent) 10%, transparent)); }
.v-btn-secondary {
  background: var(--bg-card, #111);
  color: var(--text-primary, #fff);
  border: 1px solid var(--border, rgba(255,255,255,.12));
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

.v-rec-status {
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 500;
}
.v-rec-status--recorded { background: rgba(59,130,246,.15); color: #60a5fa; }
.v-rec-status--transcribed { background: rgba(16,185,129,.15); color: #34d399; }
.v-rec-status--summarized { background: rgba(16,185,129,.15); color: #34d399; }

/* Round action circles (play, resummarize) */
.v-action-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--accent, var(--v-accent, #1a6b5a));
  background: transparent;
  color: var(--accent, var(--v-accent, #1a6b5a));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.v-action-circle:hover {
  background: var(--accent, var(--v-accent, #1a6b5a));
  color: #fff;
}
.v-action-circle.playing {
  background: var(--accent, var(--v-accent, #1a6b5a));
  color: #fff;
}
.v-action-circle--outline {
  border-color: color-mix(in srgb, var(--accent, var(--v-accent, #1a6b5a)) 40%, transparent);
  color: var(--accent, var(--v-accent, #1a6b5a));
}
.v-action-circle--outline:hover {
  border-color: var(--accent, var(--v-accent, #1a6b5a));
  background: var(--accent, var(--v-accent, #1a6b5a));
  color: #fff;
}
.v-action-circle:disabled { opacity: 0.5; cursor: default; }
.v-action-circle--danger {
  border-color: rgba(239,68,68,.3);
  color: #ef4444;
}
.v-action-circle--danger:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
}

/* Confirm modal */
.v-modal--confirm { max-width: 400px; text-align: center; }
.v-confirm-msg {
  color: var(--text-secondary, #aaa);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.v-btn-danger {
  background: transparent;
  color: #ef4444;
  border: 1px solid #ef4444;
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
  text-transform: lowercase;
}
.v-btn-danger:hover:not(:disabled) { background: #ef4444; color: #fff; }
.v-btn-danger:disabled { opacity: 0.5; cursor: default; }
.v-modal--confirm .v-btn-secondary {
  background: transparent;
  color: var(--text-primary, #fff);
  border: 1px solid var(--text-muted, #666);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-transform: lowercase;
}
.v-modal--confirm .v-btn-secondary:hover { background: var(--text-primary, #fff); color: var(--bg-primary, #000); }

/* Transcription table — centered columns */
.v-trans-table th,
.v-trans-table td {
  text-align: center;
}
.v-trans-table .v-rec-actions {
  justify-content: center;
}

/* Transcription toolbar (pagination + archive toggle) */
.v-trans-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.v-trans-archive-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-secondary, #aaa);
  cursor: pointer;
  user-select: none;
}
.v-trans-page-info {
  font-size: 0.82rem;
  color: var(--text-muted, #666);
  margin-left: auto;
}
.v-trans-page-btns {
  display: flex;
  gap: 4px;
}
.v-trans-page-btns .v-btn-small {
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
}

/* Notes cell */
.v-rec-notes-cell {
  text-align: left;
  max-width: 200px;
  min-width: 80px;
}
.v-rec-notes-text {
  font-size: 0.8rem;
  color: var(--text-secondary, #aaa);
  white-space: pre-wrap;
  word-break: break-word;
}
.v-action-circle--sm {
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  margin-left: 4px;
  flex-shrink: 0;
}
.v-notes-input {
  width: 100%;
  font-size: 0.82rem;
  padding: 2px 6px;
  background: var(--bg-input, #1a1a1a);
  border: 1px solid var(--accent, #7c5cbf);
  border-radius: 6px;
  color: var(--text-primary, #fff);
  outline: none;
}

/* Transcription modal overlay */
.v-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}
.v-modal {
  background: var(--bg-card, #111);
  border: 1px solid var(--border, rgba(255,255,255,.12));
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}
.v-modal h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}
.v-transcript-text {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary, #ccc);
  margin-bottom: 1rem;
}
.v-modal--content { max-width: 720px; }
.v-content-textarea {
  width: 100%;
  min-height: 280px;
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.65;
  padding: 12px 14px;
  background: var(--bg-input, #141414);
  border: 1px solid var(--border, rgba(255,255,255,.12));
  border-radius: 8px;
  color: var(--text-primary, #fff);
  resize: vertical;
  outline: none;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}
.v-content-textarea:focus { border-color: var(--accent, #7c5cbf); }
.v-btn-save {
  background: transparent;
  border: 1px solid var(--accent, #7c5cbf);
  color: var(--accent, #7c5cbf);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s;
}
.v-btn-save:hover:not(:disabled) { background: var(--accent, #7c5cbf); color: #fff; }
.v-btn-save:disabled { opacity: 0.5; cursor: default; }
.v-content-save-status {
  font-size: 0.78rem;
  margin-right: auto;
  align-self: center;
}
.v-content-save-status--ok  { color: #34d399; }
.v-content-save-status--err { color: #f87171; }
.v-modal-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* ═══ MASTER TABS (transcription / chat configurator) ═══════ */

.v-master-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border, #e0e0e0);
  margin-bottom: 1.5rem;
}
.v-master-tab {
  padding: 0.55rem 1.15rem;
  border: none;
  background: transparent;
  color: var(--text-muted, #888);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.v-master-tab:hover {
  color: var(--text-secondary, #ccc);
}
.v-master-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Landing-page overrides for settings sections (use CSS vars) */
.v-master-panel .v-settings-section {
  background: var(--bg-card, #fff);
  border-color: var(--border, #e0e0e0);
}
.v-master-panel .v-settings-section-title {
  background: transparent;
  color: var(--text-primary, #1a1a1a);
}
.v-master-panel .v-field {
  margin-bottom: 0.65rem;
}
.v-master-panel .v-field label {
  color: var(--text-secondary, #555);
  font-weight: 400;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.v-master-panel .v-field-input {
  background: var(--bg-input, #eef1f5);
  color: var(--text-primary, #1a1a1a);
  border-color: var(--border, #e0e0e0);
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm, 6px);
}
.v-master-panel .v-field textarea.v-field-input {
  min-height: 60px;
}
.v-master-panel .v-field-hint {
  color: var(--text-muted, #999);
}
.v-master-panel .v-admin-save-status.success { color: #10b981; }
.v-master-panel .v-admin-save-status.error { color: #ef4444; }

/* Inner settings tabs (general / transcription / notifications) */
.v-settings-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border, #e0e0e0);
  margin-bottom: 1.2rem;
}
.v-settings-tab {
  padding: 0.5rem 1.2rem;
  border: none;
  background: transparent;
  color: var(--text-secondary, #888);
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.v-settings-tab:hover { color: var(--text-primary, #fff); }
.v-settings-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 500;
}
.v-settings-panel { padding: 8px 0; }

/* Toasts (bottom-right notifications) */
.toasts {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  z-index: 9999;
  pointer-events: none;
}
.toast {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #fff;
  background: var(--bg-card, #111);
  border: 1px solid var(--border, rgba(255,255,255,.12));
  animation: toast-in 0.35s ease;
  max-width: 400px;
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.toast.success { background: #065f46; border-color: #10b981; color: #d1fae5; }
.toast.error   { background: #7f1d1d; border-color: #ef4444; color: #fecaca; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ FOOTER — links on their own line ════════════════ */

.site-footer .container {
  flex-direction: column;
  gap: 0.35rem;
}
.footer-links {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}
.footer-sep {
  color: var(--text-muted, #666);
}

/* ═══ BILLING PAGE ════════════════════════════════════ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pool-card,
.billing-filters,
.summary-card,
.billing-table-wrap {
  opacity: 0;
  animation: fade-up 0.45s ease forwards;
}
.pool-card:nth-child(1) { animation-delay: 0.06s; }
.pool-card:nth-child(2) { animation-delay: 0.12s; }
.pool-card:nth-child(3) { animation-delay: 0.18s; }
.pool-card:nth-child(4) { animation-delay: 0.24s; }
.billing-filters        { animation-delay: 0.30s; }
.summary-card:nth-child(1) { animation-delay: 0.08s; }
.summary-card:nth-child(2) { animation-delay: 0.16s; }
.summary-card:nth-child(3) { animation-delay: 0.24s; }
.summary-card:nth-child(4) { animation-delay: 0.32s; }
.billing-table-wrap     { animation-delay: 0.12s; }

.billing-pool {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.pool-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 1.1rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pool-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
}
.pool-value {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-primary);
}

.billing-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.billing-filters label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.billing-filters input[type="date"] {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-family: var(--font);
}
.billing-filters input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
}

.billing-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.summary-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 1.25rem;
  text-align: center;
}
.summary-value {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.2;
}
.summary-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  letter-spacing: 0.5px;
}

.billing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.billing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.billing-table th,
.billing-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.billing-table th {
  background: transparent;
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
}
.billing-table td {
  color: var(--text-primary);
}
.billing-table tbody tr:hover {
  background: transparent;
}

.billing-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 3rem 1rem;
  font-size: 0.95rem;
}
.billing-empty[hidden] { display: none; }

.pool-card--action { justify-content: center; }
.pool-card[hidden] { display: none !important; }

/* ═══ CONFIRM MODAL ═══════════════════════════════════ */

.confirm-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.confirm-modal.open { display: flex; }
.confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.confirm-modal__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 1.5rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  animation: confirm-enter 0.2s ease;
}
@keyframes confirm-enter {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.confirm-modal__title {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.confirm-modal__message {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.confirm-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.confirm-modal__btn {
  padding: 0.5rem 1.3rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
}
.confirm-modal__btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}
.confirm-modal__btn--confirm {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}
.confirm-modal__btn--confirm:hover {
  opacity: 0.85;
  border-color: var(--accent);
}
.confirm-modal__btn--danger {
  background: #f44336;
  color: #fff;
  border-color: #f44336;
}
.confirm-modal__btn--danger:hover {
  opacity: 0.85;
  border-color: #f44336;
}

/* Staff form modal fields */
.staff-modal__fields {
  margin-bottom: 1.2rem;
}
.staff-modal__fields .v-field {
  margin-bottom: 0.75rem;
}
.staff-modal__fields .v-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.staff-modal__fields .v-field .staff-modal__checkboxes label {
  display: flex;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0;
}
.staff-modal__fields .v-field-input {
  width: 100%;
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 6px);
  background: var(--bg-input, var(--bg-primary));
  color: var(--text-primary);
  font-family: var(--font);
  box-sizing: border-box;
}
.staff-modal__fields .v-field-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 20%, transparent);
}
.staff-modal__fields .v-field-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted, #999);
  margin-top: 3px;
}
.staff-modal__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.staff-modal__checkboxes label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 6px);
  font-size: 0.84rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  margin-bottom: 0;
}
.staff-modal__checkboxes label:hover {
  border-color: var(--accent);
}
.staff-modal__checkboxes input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  margin: 0;
}
.staff-modal__checkboxes input[type="checkbox"]:checked + span {
  font-weight: 500;
}

/* ── Reservations page ─────────────────────────────────────────────────── */
.res-page-header{display:flex;justify-content:flex-end;align-items:center;position:relative;margin-bottom:3rem;min-height:2.4rem}
.res-page-header .page-title{position:absolute;left:50%;transform:translateX(-50%);margin-bottom:0;white-space:nowrap}
@media(max-width:480px){.res-page-header .page-title{position:static;transform:none;flex:1;text-align:center;white-space:normal}.res-page-header{flex-wrap:wrap;gap:8px}}
.res-filters{display:flex;gap:10px;margin-bottom:18px;flex-wrap:wrap;align-items:flex-end}
.res-filter-group{display:flex;flex-direction:column;flex:1;min-width:130px;max-width:210px}
.res-filter-label{font-size:.72rem;font-weight:600;color:var(--text-muted,#999);margin-bottom:4px;text-transform:uppercase;letter-spacing:.04em}
.res-filter-select{width:100%;padding:9px 12px;border:1px solid var(--border,#e0ddd8);border-radius:8px;font-size:.875rem;font-family:inherit;background:var(--bg-primary,#faf8f5);color:var(--text-primary,#1a1a1a);cursor:pointer;-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;background-size:12px;padding-right:30px}
.res-filter-select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px color-mix(in srgb,var(--accent) 15%,transparent)}
.res-table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.res-table{width:100%;border-collapse:collapse;font-size:.875rem}
.res-table th{background:var(--bg-card,#fff);border-bottom:2px solid var(--border,#e0ddd8);padding:8px 10px;text-align:left;font-weight:600;white-space:nowrap;color:var(--text-secondary,#555)}
.res-table td{padding:8px 10px;border-bottom:1px solid var(--border,#e0ddd8);vertical-align:middle}
.res-table tr:hover td{background:var(--bg-primary,#faf8f5)}
.res-td-id{color:var(--text-muted,#999);font-size:.8rem;white-space:nowrap}
.res-td-code{font-family:monospace;font-size:.8rem;white-space:nowrap;color:var(--text-secondary,#555)}
.res-td-date{white-space:nowrap}
.res-td-num{text-align:center}
.res-td-contact{max-width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.res-td-notes{max-width:200px;font-size:.8rem;color:var(--text-secondary,#555);white-space:pre-line}
.res-td-actions{white-space:nowrap}
.res-btn{border:none;background:none;cursor:pointer;padding:4px 6px;border-radius:4px;font-size:.85rem;opacity:.75;transition:opacity .15s,background .15s}
.res-btn:hover{opacity:1;background:var(--primary-light,#e8eef5)}
.res-btn--confirm{color:#065f46}
.res-btn--cancel{color:#92400e}
.res-btn--delete{color:#c0392b}
.res-count{font-size:.8rem;color:var(--text-muted,#999);text-align:right;margin-top:8px}
/* Status badges */
.res-badge{display:inline-block;padding:2px 8px;border-radius:12px;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.03em}
.res-badge--pending{background:#fef3c7;color:#92400e}
.res-badge--confirmed{background:#d1fae5;color:#065f46}
.res-badge--cancelled{background:#f3f4f6;color:#6b7280}
/* Reservation modal */
.res-modal-card{max-width:520px;width:98vw}
.res-modal-fields{display:flex;flex-direction:column;gap:12px;margin-bottom:16px}
.res-modal-row2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:480px){.res-modal-row2{grid-template-columns:1fr}}

/* ── Accommodations settings tab ───────────────────────────────────────── */
.acc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px;margin-bottom:20px}
.acc-card{background:var(--bg-card,#fff);border:1px solid var(--border,#e0ddd8);border-radius:8px;padding:16px;display:flex;flex-direction:column;gap:8px;transition:box-shadow .15s}
.acc-card:hover{box-shadow:0 2px 12px rgba(0,0,0,.08)}
.acc-card--inactive{opacity:.6}
.acc-card-header{display:flex;justify-content:space-between;align-items:center;gap:8px}
.acc-card-name{font-weight:600;font-size:1rem;color:var(--text-primary,#1a1a1a)}
.acc-card-status{font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em;padding:2px 8px;border-radius:10px}
.acc-status--active{background:#d1fae5;color:#065f46}
.acc-status--inactive{background:#f3f4f6;color:#6b7280}
.acc-card-meta{display:flex;gap:12px;font-size:.82rem;color:var(--text-secondary,#555)}
.acc-card-meta i{margin-right:3px;opacity:.7}
.acc-card-desc{font-size:.85rem;color:var(--text-secondary,#555);margin:0;line-height:1.45}
.acc-card-actions{display:flex;gap:6px;flex-wrap:wrap;margin-top:4px}
/* Inline add/edit form */
.acc-inline-form{background:var(--bg-primary,#faf8f5);border:1px solid var(--accent,#c9a96e);border-radius:8px;padding:20px;margin:16px 0}
.acc-form-title{font-size:1rem;font-weight:600;margin:0 0 14px}
.acc-form-fields{display:flex;flex-direction:column;gap:12px;margin-bottom:16px}
.acc-form-row2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.acc-form-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.req{color:#c0392b}
@media(max-width:480px){.acc-form-row2{grid-template-columns:1fr}}


.res-upgrade-nudge .btn {
  padding: 0.8rem 2rem;
  font-weight: 500;
  border-radius: 9999px;
}

/* iCal sync section */
.ical-export-box{background:var(--bg-card,#fff);border:1px solid var(--border,#e0ddd8);border-radius:8px;padding:14px;margin-bottom:8px}
.ical-hint{font-size:.82rem;color:var(--text-muted,#999);margin:2px 0 8px}
.ical-url-input{font-size:.82rem;background:var(--bg-primary,#faf8f5);cursor:pointer}
.ical-feeds-grid{display:flex;flex-direction:column;gap:6px;margin:8px 0 12px}
.ical-feed-row{display:flex;align-items:center;gap:8px;padding:8px 10px;background:var(--bg-card,#fff);border:1px solid var(--border,#e0ddd8);border-radius:6px;font-size:.85rem}
.ical-feed-acc{font-weight:600;white-space:nowrap}
.ical-feed-url{color:var(--text-secondary,#555);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0}
.ical-feed-err{color:#c0392b;cursor:help}
.ical-add-row{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:8px}
.v-field-input--sm{padding:6px 10px;font-size:.85rem}
@media(max-width:480px){.ical-add-row{flex-direction:column}.ical-add-row .v-field-input--sm,.ical-add-row .btn{width:100%}}

/* ═══ LIVE DEMO ═════════════════════════════════════════════
   Visible-by-default section that sits below the hero.
   Stacked: compact head → full-width iframe → "things to try" strip → caption.
   Full width lets the embedded property page render its natural desktop
   layout (chat column + room cards) instead of the mobile fallback.
   Opt-in via landing.liveDemo.url in definition.json.
*/
.live-demo { padding: 3rem 24px 5rem; background: transparent; }
html.v-page-routed .live-demo { display: none; }
.live-demo-inner {
  max-width: var(--max-w, 1200px); margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.live-demo-head { text-align: center; max-width: 760px; margin: 0 auto; }
.live-demo-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 300; color: var(--text-primary);
  margin-bottom: 0.5rem; line-height: 1.25;
}
.live-demo-sub {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 0.9rem;
}
.live-demo-browser {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border, #e0ddd8);
  border-radius: 8px; padding: 7px 14px;
  font-size: 0.85rem; color: var(--text-primary);
  font-family: 'SF Mono', Consolas, monospace;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.live-demo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border, #e0ddd8); flex-shrink: 0;
}
.live-demo-url {
  margin-left: 0.5rem; color: var(--accent); font-weight: 500;
  word-break: break-all;
}
.live-demo-frame-wrap {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border, #e0ddd8);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  height: 720px; max-height: 85vh;
  width: 100%;
}
.live-demo-frame-caption {
  padding: 10px 16px; font-size: 0.8rem; color: var(--text-muted);
  background: var(--bg-primary, #faf8f5);
  border-bottom: 1px solid var(--border, #e0ddd8);
  text-align: center; letter-spacing: 0.3px;
}
.live-demo-frame { flex: 1; width: 100%; border: none; background: var(--bg-card, #fff); }

/* "Things to try:" strip below iframe — horizontal on desktop */
.live-demo-try {
  display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
  padding: 0.5rem 0.25rem; margin-top: 0.25rem;
}
.live-demo-try-label {
  font-size: 0.85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;
  padding-top: 2px; flex-shrink: 0;
}
.live-demo-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; flex: 1;
}
.live-demo-bullets li {
  font-size: 0.92rem; color: var(--text-secondary);
  padding-left: 1.15rem; position: relative; line-height: 1.45;
}
.live-demo-bullets li::before {
  content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 500;
}
.live-demo-link-caption {
  font-size: 0.88rem; color: var(--text-muted);
  margin: 0.5rem auto 0; max-width: 720px;
  text-align: center; line-height: 1.55;
}

@media(max-width: 900px) {
  .live-demo-frame-wrap { height: 600px; }
  .live-demo-try { flex-direction: column; gap: 0.6rem; }
  .live-demo-bullets { flex-direction: column; gap: 0.5rem; }
}
@media(max-width: 480px) {
  .live-demo { padding: 2rem 20px 3rem; }
  .live-demo-browser { font-size: 0.75rem; padding: 6px 10px; }
  .live-demo-frame-wrap { height: 540px; }
}

/* ═══ KNOWLEDGE PAGE (KB chunks) ════════════════════ */

.kbp-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; max-width: 760px; margin-left: auto; margin-right: auto; }
.kbp-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius, 8px); padding: 20px 24px; animation: fade-up 0.4s ease both; }
.kbp-card-head { display: flex; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 6px; }
.kbp-card-label { font-size: 0.95rem; font-weight: 500; color: var(--accent); text-transform: lowercase; }
.kbp-card-label::before { content: '✦  '; }
.kbp-card-content { font-size: 0.88rem; line-height: 1.65; color: var(--text-secondary); padding: 14px 18px; background: var(--bg-primary); border-left: 3px solid var(--accent); border-radius: 4px; }


@media(max-width: 600px) {
  .kbp-card { padding: 14px 16px; }
  .kbp-card-content { padding: 10px 14px; }
}

/* ══════════════════════════════════════════════════════════
   LUXURY ENHANCEMENTS
   Hero ambient glow, sample chips, mobile demo button,
   inline CTA form — modern minimalist, not generic.
   ══════════════════════════════════════════════════════════ */

/* ── Hero ambient breathing animation ───────────────────── */
@keyframes hero-breathe {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.04); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 60%, var(--accent-glow, rgba(201,169,110,0.18)) 0%, transparent 70%);
  animation: hero-breathe 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero { position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 1; }

/* Optional hero background photo with slow Ken Burns zoom */
@keyframes hero-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  animation: hero-zoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

/* ── Sample question chips ───────────────────────────────── */
.live-demo-chips {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  padding: 0.25rem 0;
}
.live-demo-chips-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
  padding-top: 6px;
  flex-shrink: 0;
}
.live-demo-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.live-demo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 6px 14px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--accent);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
  line-height: 1;
}
.live-demo-chip::before {
  content: '"';
  opacity: 0.5;
  font-size: 0.9em;
}
.live-demo-chip:hover {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.live-demo-chip:active { transform: translateY(0); }

/* ── Mobile demo open button ─────────────────────────────── */
.live-demo-mobile-cta {
  display: none; /* hidden on desktop */
  align-items: center;
  gap: 1rem;
  padding: 18px 24px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border, #e0ddd8);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.live-demo-mobile-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, color-mix(in srgb, var(--accent) 6%, transparent) 100%);
  pointer-events: none;
}
.live-demo-mobile-cta:hover {
  text-decoration: none;
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  transform: translateY(-2px);
}
.live-demo-mobile-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.live-demo-mobile-cta__text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.live-demo-mobile-cta__arrow {
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.8;
  transition: transform 0.2s;
}
.live-demo-mobile-cta:hover .live-demo-mobile-cta__arrow {
  transform: translateX(3px);
}

/* Show mobile button / hide desktop iframe on small screens */
@media (max-width: 640px) {
  .live-demo-frame-wrap--desktop { display: none !important; }
  .live-demo-mobile-cta { display: flex; }
}

/* ── Inline CTA contact form ─────────────────────────────── */
.cta-contact {
  padding: 5rem 24px 6rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border, #e0ddd8);
  position: relative;
  overflow: hidden;
}
.cta-contact::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--accent-glow, rgba(201,169,110,0.12)) 0%, transparent 70%);
  pointer-events: none;
}
html.v-page-routed .cta-contact { display: none; }
.cta-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.cta-contact-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 200;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.cta-contact-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.cta-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-contact-form input,
.cta-contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border, #e0ddd8);
  border-radius: 8px;
  background: var(--bg-card, #fff);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-transform: none;
}
.cta-contact-form input:focus,
.cta-contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim, rgba(201,169,110,0.12));
}
.cta-contact-form textarea { resize: vertical; min-height: 80px; }
.cta-contact-submit {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--font);
  text-transform: lowercase;
}
.cta-contact-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.cta-contact-submit:active { transform: translateY(0); }
.cta-contact-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

@media (max-width: 700px) {
  .cta-contact-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .cta-contact { padding: 3rem 20px 4rem; }
}

/* ── Live-demo frame: refined luxury shadow ──────────────── */
.live-demo-frame-wrap {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

