/* ==========================================================================
   هستی صالحی — Premium luxury dark · Glassmorphism · Gold accents
   Rich charcoal surfaces · restrained metallic gold · frosted depth
   ========================================================================== */

:root {
  /* Surfaces — layered charcoal depth */
  --bg: #0b0b0c;
  --bg-soft: #111214;
  --bg-elevated: #17181b;
  --card-surface: rgba(24, 24, 27, 0.65);
  --surface-raised: rgba(23, 24, 27, 0.82);
  --surface-chrome: rgba(17, 18, 20, 0.92);
  --surface-inset: rgba(255, 255, 255, 0.05);
  --mock-bg: #121316;

  /* Typography — high contrast on dark */
  --fg: #f5f5f4;
  --muted: #a8a29e;
  --muted-soft: #78716c;

  /* Gold accent system */
  --accent: #d4af37;
  --accent-deep: #c8a64a;
  --accent-highlight: #f2d57a;
  --accent-soft: rgba(212, 175, 55, 0.12);
  --accent-glow: rgba(212, 175, 55, 0.28);
  --gold: #d4af37;
  --gold-deep: #c8a64a;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --gold-highlight: #f2d57a;
  --on-accent: #0b0b0c;

  /* Semantic */
  --danger: #e07a6a;
  --danger-deep: #c95547;
  --danger-soft: rgba(224, 122, 106, 0.14);

  /* Lines & card borders */
  --line: rgba(255, 255, 255, 0.06);
  --line-gold: rgba(212, 175, 55, 0.32);
  --card-border: rgba(212, 175, 55, 0.26);
  --card-border-hover: rgba(242, 213, 122, 0.42);

  /* Glass — frosted luxury panels */
  --glass-bg: rgba(24, 24, 27, 0.58);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-blur: saturate(160%) blur(24px);
  --glass-shadow:
    0 1px 1px rgba(0, 0, 0, 0.45),
    0 10px 36px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --card-shadow-hover:
    0 6px 28px rgba(0, 0, 0, 0.55),
    0 0 0 0.5px var(--card-border-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* Type scale (desktop) */
  --text-hero: 3.25rem;   /* 52px */
  --text-h2: 2.125rem;    /* 34px */
  --text-h3: 1.3125rem;   /* 21px */
  --text-body: 0.9375rem; /* 15px */
  --text-sm: 0.8125rem;   /* 13px */
  --text-caption: 0.75rem;/* 12px */
  --lh-tight: 1.1;
  --lh-snug: 1.2;
  --lh-card: 1.3;
  --lh-body: 1.6;
  --tracking-tight: -0.025em;

  /* Spacing scale (8px base) */
  --space-1: 0.5rem;   /* 8 */
  --space-2: 1rem;     /* 16 */
  --space-3: 1.5rem;   /* 24 */
  --space-4: 2rem;     /* 32 */
  --space-5: 3rem;     /* 48 */
  --space-6: 4rem;     /* 64 */
  --space-7: 6rem;     /* 96 */
  --space-8: 7.5rem;   /* 120 */
  --section-y: var(--space-8);
  --card-pad: 2.25rem; /* 36 */
  --gap: var(--space-3);

  /* Radius scale */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --font: "Vazirmatn", Tahoma, sans-serif;
  --container: min(1080px, calc(100% - 3rem));
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --focus: 0 0 0 3px rgba(212, 175, 55, 0.35);
  --nav-h: 3.5rem;
  --icon-sm: 1.5rem;   /* 24 */
  --icon-md: 1.75rem;  /* 28 */
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--fg);
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-align: right;
  background-color: var(--bg);
  /* Layered luxury ambient lighting */
  background-image:
    radial-gradient(ellipse 42% 36% at 0% 0%, rgba(212, 175, 55, 0.07), transparent 68%),
    radial-gradient(ellipse 38% 32% at 100% 6%, rgba(242, 213, 122, 0.05), transparent 62%),
    radial-gradient(ellipse 44% 34% at 50% 100%, rgba(212, 175, 55, 0.04), transparent 70%),
    radial-gradient(ellipse 55% 40% at 80% 45%, rgba(255, 255, 255, 0.015), transparent 55%),
    linear-gradient(180deg, #0d0d0e 0%, var(--bg) 38%, #0a0a0b 100%);
  background-attachment: fixed;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

button,
input {
  font: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  right: var(--space-2);
  z-index: 11000;
  padding: 0.65rem 1rem;
  background: linear-gradient(155deg, var(--gold-highlight), var(--accent));
  color: var(--on-accent);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-2);
}

/* Apple-style glass */
.glass {
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass,
  .site-nav.is-scrolled,
  .outcome,
  .feature,
  .faq__item,
  .cta__panel,
  .demo-form,
  .device,
  .proof__pilot,
  .proof__stat,
  .compare__card,
  .summary,
  .summary__card,
  .pricing__panel,
  .capability-showcase__copy {
    background: rgba(17, 18, 20, 0.94) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Loader                                                                     */
/* -------------------------------------------------------------------------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
  width: min(240px, 72vw);
}

.loader__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-size: var(--text-h3);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--fg);
  letter-spacing: var(--tracking-tight);
}

.loader__track {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: var(--radius-pill);
}

.loader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--gold-highlight));
  will-change: width;
}

.loader__pct {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.loader__fallback {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
  justify-items: center;
}

.loader__fallback-msg {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  max-width: 60ch;
}

/* -------------------------------------------------------------------------- */
/* Type & layout                                                              */
/* -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--gold);
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, var(--text-h2));
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.section-sub,
.lede {
  font-size: var(--text-body);
  color: var(--muted);
  max-width: 60ch;
  line-height: var(--lh-body);
  font-weight: 400;
}

.body-copy {
  color: var(--muted);
  max-width: 60ch;
  line-height: var(--lh-body);
  font-size: var(--text-body);
}

.section-head {
  margin-bottom: var(--space-5);
}

.section-head .section-sub {
  margin-top: var(--space-2);
}

.section-head--center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.section-head--center .section-sub {
  margin-inline: auto;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.section-divider {
  width: min(480px, 56%);
  margin: 0 auto;
  opacity: 0.55;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem; /* 12 × 24 */
  font-size: var(--text-sm);
  font-weight: 600;
  border: 0.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn--accent {
  background: linear-gradient(155deg, var(--gold-highlight) 0%, var(--accent) 46%, var(--accent-deep) 100%);
  color: var(--on-accent);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 8px 24px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--accent:hover {
  transform: translateY(-1px);
  background: linear-gradient(155deg, #f8dea0 0%, var(--accent) 50%, var(--accent-deep) 100%);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 12px 32px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.88);
  color: var(--fg);
  text-shadow: none;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.85rem 1.65rem;
  font-size: var(--text-body);
  width: 100%;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* -------------------------------------------------------------------------- */
/* Logo                                                                       */
/* -------------------------------------------------------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  letter-spacing: var(--tracking-tight);
}

.logo__mark {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.logo--hero {
  font-size: var(--text-body);
  margin-bottom: var(--space-2);
  animation: brandIn 0.9s var(--ease) both;
}

.logo--on-media {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.logo--sm {
  font-size: var(--text-sm);
}

@keyframes brandIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Sticky glass navigation                                                    */
/* -------------------------------------------------------------------------- */

.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease),
    backdrop-filter 0.25s var(--ease);
  border-bottom: 0.5px solid transparent;
  background: transparent;
}

/* Soft bridge into hero — taller than the nav so it doesn't read as a solid bar */
.site-nav::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: calc(var(--nav-h) + 3rem);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.25s var(--ease);
}

.site-nav.is-scrolled {
  background: var(--glass-bg);
  border-bottom-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.site-nav.is-scrolled::before {
  opacity: 0;
}

.site-nav:not(.is-scrolled) .logo,
.site-nav:not(.is-scrolled) .site-nav__links a {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.site-nav:not(.is-scrolled) .logo__mark {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.site-nav__inner {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.site-nav__links {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.site-nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
}

.site-nav__links a:hover {
  color: var(--fg);
}

.site-nav__cta {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 0.5px solid var(--line-gold);
  color: var(--gold-highlight) !important;
  text-shadow: none !important;
  font-weight: 600;
}

.site-nav:not(.is-scrolled) .site-nav__cta {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.2);
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  backdrop-filter: var(--glass-blur);
}

.site-nav.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: var(--glass-bg);
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: var(--radius-pill);
  color: inherit;
}

.site-nav:not(.is-scrolled) .nav-toggle {
  color: #fff;
}

.site-nav.is-scrolled .nav-toggle {
  color: var(--fg);
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 880;
  display: grid;
  place-items: center;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-panel__links {
  display: grid;
  gap: var(--space-3);
  text-align: center;
  font-size: var(--text-h3);
  font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero__pin {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #0a0a0b;
  contain: paint;
}

.hero__ground-shadow {
  display: none;
}

/* Hero canvas frame-sequence — full-bleed under veil/copy; gyroParallax tilts
   .hero__canvas-wrap on mobile. Video scrub path removed. */
.hero__canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: 50% 55%;
  will-change: transform;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__canvas.is-compositing {
  will-change: transform;
  transform: translateZ(0);
}

@media (max-width: 768px) {
  .hero__ground-shadow {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 14%;
    z-index: 2;
    width: min(72vw, 22rem);
    height: 16%;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(
      ellipse 70% 55% at 50% 50%,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.16) 45%,
      transparent 72%
    );
    opacity: 0.75;
  }

  .hero__canvas-wrap {
    z-index: 1;
  }

  .hero__veil {
    z-index: 3;
  }

  /* Full-bleed canvas must not capture vertical pan — otherwise iOS/Android
     won't scroll the document when the gesture starts on the hero. */
  .hero__pin,
  .hero__canvas-wrap,
  .hero__canvas {
    touch-action: pan-y;
  }
}

/* Soft edge wash for copy readability — light touch */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 35% at 100% 0%, rgba(212, 175, 55, 0.1), transparent 60%),
    radial-gradient(ellipse 35% 30% at 0% 100%, rgba(212, 175, 55, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 30%, transparent 52%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__copy {
  position: absolute;
  right: clamp(1.25rem, 5vw, 4rem);
  bottom: clamp(4rem, 10vh, 5.5rem);
  z-index: 4;
  max-width: min(30rem, 90vw);
  padding: var(--space-3) var(--space-3) var(--space-2);
  border-radius: var(--radius);
  /* Scrim behind the Hook/Vision text — real video frames vary more in
     brightness than the old illustrated PNG sequence, so this keeps the
     copy legible regardless of what's playing behind it. */
  background: linear-gradient(
    155deg,
    rgba(10, 10, 11, 0.46) 0%,
    rgba(10, 10, 11, 0.28) 55%,
    rgba(10, 10, 11, 0.08) 100%
  );
  will-change: opacity, transform;
   /* Entrance + scroll-tied fade run on GSAP (scrollSequence.js) so a CSS
      animation with fill-mode:both doesn't fight the scroll-tied opacity. */
  opacity: 0;
  transform: translateY(28px);
}

/* Mobile-only brand signature, legible over the video independent of its
   brightness — same muted/caption treatment used for the footer tagline. */
.hero__mobile-brand {
  display: none;
}

@keyframes copyRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, var(--text-hero));
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.hero__title em {
  font-style: normal;
  color: #fff;
  font-weight: 700;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-3);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.hero__checklist {
  display: grid;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-sm);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.hero__scroll {
  position: absolute;
  left: clamp(1.15rem, 4vw, 2.75rem);
  bottom: 2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.75);
}

.hero__scroll-line {
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.95;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.35;
  }
}

/* -------------------------------------------------------------------------- */
/* Social proof                                                               */
/* -------------------------------------------------------------------------- */

.proof {
  padding-block: var(--space-6) var(--space-4);
}

.proof__pilot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.proof__badge {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 0.5px solid var(--line-gold);
  color: var(--gold-highlight);
  font-size: var(--text-caption);
  font-weight: 600;
}

.proof__pilot-text {
  color: var(--muted);
  max-width: 60ch;
  font-size: var(--text-sm);
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  text-align: center;
}

.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: var(--card-pad);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.proof__stat:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.proof__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--space-2);
  border-radius: var(--radius-sm);
  color: var(--gold-highlight);
  background: var(--surface-inset);
  border: 0.5px solid var(--line-gold);
}

.proof__icon svg {
  width: var(--icon-sm);
  height: var(--icon-sm);
}

.proof__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--space-1);
  letter-spacing: var(--tracking-tight);
  font-variant-numeric: tabular-nums;
  line-height: var(--lh-tight);
}

.proof__label {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 400;
}

/* -------------------------------------------------------------------------- */
/* About                                                                      */
/* -------------------------------------------------------------------------- */

.about {
  overflow: hidden;
}

.about__atmosphere {
  position: absolute;
  inset: auto -8% -30% auto;
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.about__wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: var(--space-6);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.about__story .lede {
  margin: var(--space-3) 0 var(--space-2);
  color: var(--fg);
  font-weight: 400;
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--gap);
  align-items: stretch;
}

.compare__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: var(--card-pad);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.compare__card:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.compare__card--before {
  border-color: rgba(224, 122, 106, 0.28);
}

.compare__card--after {
  border-color: var(--card-border);
}

.compare__badge {
  display: inline-flex;
  margin-bottom: var(--space-2);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 600;
  background: var(--danger-soft);
  color: var(--danger);
}

.compare__badge--ok {
  background: var(--accent-soft);
  color: var(--gold-highlight);
}

.compare__chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  height: 5.5rem;
  margin-bottom: 0.85rem;
  padding: 0.5rem 0.35rem 0;
}

.compare__bar {
  width: 0.85rem;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #e8968a, var(--danger-deep));
  opacity: 0.85;
  transform-origin: bottom;
  animation: barGrow 1s var(--ease) both;
}

.compare__chart--ok .compare__bar {
  background: linear-gradient(180deg, var(--gold-highlight), var(--accent));
}

.compare__card.is-visible .compare__bar,
.compare.is-visible .compare__bar {
  animation-play-state: running;
}

@keyframes barGrow {
  from {
    transform: scaleY(0.15);
    opacity: 0.3;
  }
  to {
    transform: scaleY(1);
    opacity: 0.9;
  }
}

.compare__metric {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-1);
}

.compare__num {
  display: block;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-1);
  line-height: var(--lh-tight);
}

.compare__num--bad {
  color: var(--danger);
}

.compare__num--ok {
  color: var(--gold-highlight);
}

.compare__hint {
  font-size: var(--text-caption);
  color: var(--muted);
  line-height: var(--lh-body);
}

.compare__vs {
  display: grid;
  place-items: center;
  color: var(--muted);
  align-self: center;
  font-size: var(--text-sm);
  font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Product showcase                                                           */
/* -------------------------------------------------------------------------- */

.product {
  background: transparent;
}

.product__showcase {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr;
  gap: var(--gap);
  align-items: stretch;
}

.product__side {
  display: grid;
  gap: var(--gap);
  grid-template-rows: 1fr auto;
}

.device {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.device__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--surface-chrome);
  border-bottom: 0.5px solid var(--line-gold);
  flex-shrink: 0;
}

.device__chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #d0d5d2;
}

.device__chrome span:nth-child(1) {
  background: #ff5f57;
}
.device__chrome span:nth-child(2) {
  background: #febc2e;
}
.device__chrome span:nth-child(3) {
  background: #28c840;
}

.device__url {
  margin-right: auto;
  margin-left: 0.75rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 0.72rem;
  direction: ltr;
}

.device__screen {
  flex: 1;
  min-height: 0;
  background: var(--mock-bg);
}

.device__cap {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  border-top: 0.5px solid var(--line-gold);
  flex-shrink: 0;
  background: var(--surface-chrome);
}

.device--phone {
  max-width: 290px;
  width: 100%;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  padding: 0.7rem;
  background: var(--surface-raised);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  position: relative;
}

.device__phone-bezel {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.device__notch {
  display: block;
  width: 5.5rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #1a1a1a;
}

.device--phone .device__screen {
  border-radius: 1.35rem;
  overflow: hidden;
  min-height: 460px;
}

.device--phone .device__cap {
  text-align: center;
  border-top: 0;
  padding-bottom: 0.2rem;
  padding-top: 0.7rem;
  background: transparent;
}

/* Mock shared — light product chrome */
.mock {
  width: 100%;
  height: 100%;
  font-size: 12px;
  line-height: 1.45;
  color: var(--fg);
}

.mock a {
  pointer-events: none;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
}

.mock-pill--ok {
  background: var(--accent-soft);
  color: var(--gold-highlight);
}

.mock-pill--wait {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-highlight);
}

.mock-pill--cancel {
  background: var(--danger-soft);
  color: var(--danger);
}

.mock--dash {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 420px;
  background: var(--mock-bg);
}

.mock-side {
  background: var(--surface-chrome);
  border-left: 1px solid var(--line-gold);
  padding: 1rem 0.75rem;
}

.mock-side__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  padding-inline: 0.35rem;
}

.mock-side__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.mock-side__nav {
  display: grid;
  gap: 0.25rem;
}

.mock-side__nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.55rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.mock-side__nav a svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
  flex-shrink: 0;
}

.mock-side__nav a.is-active,
.mock-side__nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.mock-main {
  padding: 1rem 1.1rem 1.15rem;
  min-width: 0;
}

.mock-main__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.mock-main__hello {
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
}

.mock-main__title {
  font-size: 1.1rem;
  font-weight: 800;
}

.mock-main__date {
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--surface-inset);
  border: 1px solid var(--line-gold);
  white-space: nowrap;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.mock-stat {
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mock-stat__label {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  margin-bottom: 0.35rem;
}

.mock-stat__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  color: var(--accent-deep);
}

.mock-stat__hint {
  font-size: 0.65rem;
  color: var(--muted-soft);
}

.mock-stat__hint--up {
  color: var(--accent-deep);
}

.mock-table-wrap {
  border-radius: 14px;
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
  overflow: hidden;
}

.mock-table__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
}

.mock-table__head h4 {
  font-size: 0.85rem;
  font-weight: 800;
}

.mock-table__head span {
  color: var(--muted);
  font-size: 0.68rem;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.mock-table th,
.mock-table td {
  padding: 0.55rem 0.75rem;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-table th {
  color: var(--muted-soft);
  font-weight: 600;
  font-size: 0.68rem;
}

.mock-table tbody tr:last-child td {
  border-bottom: 0;
}

.mock-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

.mock--cal {
  min-height: 280px;
  padding: 0.85rem;
  background: var(--mock-bg);
}

.mock-cal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.mock-cal__label {
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 0.15rem;
}

.mock-cal__title {
  font-size: 0.95rem;
  font-weight: 800;
}

.mock-cal__btn {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: var(--on-accent);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: default;
  box-shadow: 0 8px 18px var(--accent-glow);
}

.mock-cal__grid {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.4rem;
  min-height: 210px;
}

.mock-cal__times {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.6rem 0.2rem;
  color: var(--muted-soft);
  font-size: 0.62rem;
}

.mock-cal__days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
}

.mock-cal__day {
  position: relative;
  border-radius: 12px;
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
  min-height: 210px;
  overflow: hidden;
}

.mock-cal__day.is-today {
  border-color: var(--card-border-hover);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.mock-cal__day header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.mock-cal__day.is-today header {
  color: var(--gold-highlight);
}

.mock-cal__slot {
  position: absolute;
  right: 4px;
  left: 4px;
  top: var(--top, 20%);
  height: var(--h, 16%);
  border-radius: 8px;
  padding: 0.28rem 0.35rem;
  overflow: hidden;
}

.mock-cal__slot strong,
.mock-cal__slot em {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-cal__slot strong {
  font-size: 0.62rem;
  font-weight: 800;
}

.mock-cal__slot em {
  font-style: normal;
  font-size: 0.58rem;
  opacity: 0.9;
}

.mock-cal__slot--orange {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: var(--on-accent);
}

.mock-cal__slot--violet {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-highlight));
  color: var(--on-accent);
}

.mock-cal__slot--mint {
  background: linear-gradient(135deg, rgba(242, 213, 122, 0.85), var(--accent));
  color: var(--on-accent);
}

.mock-cal__slot--open {
  background: var(--accent-soft);
  border: 1px dashed var(--line-gold);
  color: var(--gold-highlight);
  animation: slotPulse 2.4s ease-in-out infinite;
}

@keyframes slotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0);
  }
}

.mock--staff {
  min-height: 460px;
  padding: 1.55rem 0.9rem 1rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.12), transparent 45%),
    var(--mock-bg);
  display: flex;
  flex-direction: column;
}

.mock-staff__status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  margin-bottom: 0.85rem;
  direction: ltr;
}

.mock-staff__hero {
  text-align: center;
  margin-bottom: 0.9rem;
}

.mock-staff__avatar {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--on-accent);
  background: linear-gradient(145deg, var(--gold-highlight), var(--accent), var(--accent-deep));
  box-shadow: 0 10px 24px var(--accent-glow);
}

.mock-staff__name {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.mock-staff__role {
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.55rem;
}

.mock-staff__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--surface-inset);
  border: 0.5px solid var(--line-gold);
  font-size: 0.7rem;
  color: var(--muted);
}

.mock-staff__stars {
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}

.mock-staff__rating strong {
  color: var(--fg);
}

.mock-staff__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

.mock-staff__tags span {
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 0.5px solid var(--line-gold);
  color: var(--gold-highlight);
  font-size: 0.68rem;
  font-weight: 600;
}

.mock-staff__list {
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
  border-radius: 14px;
  padding: 0.7rem;
  margin-bottom: 0.85rem;
}

.mock-staff__list-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.mock-staff__list-head h4 {
  font-size: 0.82rem;
  font-weight: 800;
}

.mock-staff__list-head span {
  color: var(--muted);
  font-size: 0.68rem;
}

.mock-staff__appt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.15rem;
  border-top: 1px solid var(--line);
}

.mock-staff__appt strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.15rem;
}

.mock-staff__appt span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.mock-staff__cta {
  margin-top: auto;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--gold-highlight), var(--accent), var(--accent-deep));
  color: var(--on-accent);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: default;
  box-shadow: 0 12px 28px var(--accent-glow);
}

/* -------------------------------------------------------------------------- */
/* Outcomes                                                                   */
/* -------------------------------------------------------------------------- */

.outcomes__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.outcome {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--card-pad);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.outcome:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.outcome__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: var(--space-2);
  border-radius: var(--radius-sm);
  color: var(--gold-highlight);
  background: var(--surface-inset);
  border: 0.5px solid var(--line-gold);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.outcome__icon svg {
  width: var(--icon-md);
  height: var(--icon-md);
}

.outcome:hover .outcome__icon {
  transform: none;
}

.outcome__num {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: var(--space-1);
}

.outcome__title {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--lh-card);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-1);
}

.outcome__text {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  max-width: 60ch;
}

/* -------------------------------------------------------------------------- */
/* Features                                                                   */
/* -------------------------------------------------------------------------- */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--card-pad);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.feature__visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  color: var(--gold-highlight);
  background: var(--surface-inset);
  border: 0.5px solid var(--line-gold);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feature__icon svg {
  width: var(--icon-md);
  height: var(--icon-md);
}

.feature:hover .feature__icon {
  transform: none;
}

.feature__num {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
}

.feature__title {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--lh-card);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-1);
}

.feature__desc {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  max-width: 60ch;
  flex: 1;
}

/* -------------------------------------------------------------------------- */
/* Summary                                                                    */
/* -------------------------------------------------------------------------- */

.summary {
  text-align: center;
  overflow: hidden;
  margin-inline: max(1rem, calc((100% - var(--container)) / 2));
  padding-block: var(--space-7);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.summary__glow {
  position: absolute;
  inset: 8% 20% auto;
  height: 40%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
}

.summary__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding-inline: var(--space-3);
}

.summary__heading {
  max-width: 22ch;
}

.summary__lead {
  margin-top: 0 !important;
}

.summary__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  width: 100%;
  margin: var(--space-1) 0 var(--space-2);
  text-align: right;
}

.summary__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  height: 100%;
  padding: var(--space-3);
  border-radius: var(--radius);
  background: var(--card-surface);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.summary__card:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.summary__card p {
  font-weight: 500;
  color: var(--fg);
  line-height: var(--lh-body);
  font-size: var(--text-sm);
}

.summary__check {
  flex-shrink: 0;
  width: var(--icon-sm);
  height: var(--icon-sm);
  margin-top: 0.1rem;
  color: var(--gold-highlight);
}

.summary__check svg {
  width: var(--icon-sm);
  height: var(--icon-sm);
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */

.faq__wrap {
  max-width: 820px;
}

.faq__list {
  display: grid;
  gap: var(--space-1);
}

.faq__item {
  border: 0.5px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) var(--card-pad);
  background: transparent;
  border: 0;
  color: var(--fg);
  font-weight: 600;
  font-size: var(--text-body);
  line-height: var(--lh-card);
  text-align: right;
  cursor: pointer;
}

.faq__icon {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq__item.is-open .faq__icon {
  transform: rotate(-135deg);
  border-color: var(--accent);
}

.faq__a {
  display: none;
  padding: 0 var(--card-pad) var(--space-3);
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  max-width: 60ch;
}

.faq__item.is-open .faq__a {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* CTA + form                                                                 */
/* -------------------------------------------------------------------------- */

.cta {
  padding-block: var(--section-y);
}

.cta__panel {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.cta__title {
  font-size: clamp(1.5rem, 2.8vw, var(--text-h2));
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-2);
}

.cta__sub {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  max-width: 60ch;
  margin-bottom: var(--space-3);
}

.cta__perks {
  display: grid;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.cta__perks li {
  position: relative;
  padding-right: 1.25rem;
  color: var(--fg);
  font-size: var(--text-body);
  font-weight: 400;
}

.cta__perks li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.cta__direct {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.cta__direct-link {
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--line-gold);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  background: var(--surface-inset);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.cta__direct-link:hover {
  color: var(--gold-highlight);
  border-color: var(--card-border-hover);
  background: var(--accent-soft);
}

.cta__direct-link--wa {
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--gold-deep);
}

.demo-form {
  display: grid;
  gap: var(--space-2);
  padding: var(--card-pad);
  border-radius: var(--radius-lg);
  background: var(--card-surface);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.demo-form__field {
  display: grid;
  gap: 0.35rem;
}

.demo-form__field label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--fg);
}

.demo-form__field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--line-gold);
  background: rgba(11, 11, 12, 0.65);
  color: var(--fg);
  font-size: var(--text-body);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.demo-form__field input::placeholder {
  color: var(--muted-soft);
}

.demo-form__field input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--focus);
}

.demo-form__field input.is-invalid {
  border-color: #dc5246;
}

.demo-form__error {
  min-height: 1.1rem;
  font-size: var(--text-caption);
  color: var(--danger);
}

.demo-form__success {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 0.5px solid var(--line-gold);
  color: var(--gold-highlight);
  font-weight: 500;
  font-size: var(--text-sm);
  text-align: center;
}

.demo-form.is-sent .demo-form__submit {
  display: none;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.footer {
  padding-block: var(--space-5) var(--space-6);
  border-top: 0.5px solid var(--line-gold);
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-3);
}

.footer__brand {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.footer__nav {
  display: flex;
  gap: var(--space-3);
}

.footer__nav a {
  font-size: var(--text-sm);
  color: var(--muted);
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--gold-highlight);
}

.footer__copy {
  justify-self: start;
  font-size: var(--text-caption);
  color: var(--muted);
}

.footer__tagline {
  font-size: var(--text-caption);
  color: var(--muted-soft);
  max-width: 20ch;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 960px) {
  :root {
    --section-y: var(--space-6);
    --text-hero: 2.25rem; /* 36 */
    --text-h2: 1.75rem;   /* 28 */
    --text-h3: 1.1875rem; /* 19 */
    --card-pad: 1.75rem;
  }

  .about__wrap,
  .outcomes__rail,
  .features__grid,
  .cta__panel,
  .proof__stats,
  .summary__cards,
  .compare {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare__vs {
    transform: rotate(90deg);
    padding-block: 0.25rem;
  }

  .product__showcase {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    margin-inline: calc(-1 * ((100vw - 100%) / 2));
    padding-inline: max(1.25rem, (100vw - var(--container)) / 2);
    -webkit-overflow-scrolling: touch;
  }

  .product__showcase > .device,
  .product__side {
    flex: 0 0 min(92vw, 420px);
    scroll-snap-align: center;
  }

  .product__side {
    display: flex;
    gap: var(--gap);
  }

  .product__side > .device {
    flex: 0 0 min(88vw, 360px);
    scroll-snap-align: center;
  }

  .mock--dash {
    grid-template-columns: 120px 1fr;
  }

  .mock-stats {
    grid-template-columns: 1fr;
  }

  .cta__panel {
    padding: var(--space-4);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer__brand {
    justify-items: center;
  }

  .footer__copy {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  :root {
    --section-y: var(--space-6);
    --text-hero: 2.125rem; /* 34 */
    --container: min(1080px, calc(100% - 2rem));
    --gap: var(--space-2);
  }

  .site-nav__links--desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
    /* Clear hamburger: bars must dominate the control, not sit as hairlines */
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.55rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    flex: 0 0 3px;
    height: 3px;
    min-height: 3px;
    background-color: #fff;
    border-radius: 1px;
    opacity: 1;
  }

  .site-nav.is-scrolled .nav-toggle {
    border-color: var(--line);
    background: var(--glass-bg);
    color: var(--fg);
    box-shadow: none;
  }

  .site-nav.is-scrolled .nav-toggle span {
    background: currentColor;
  }

  .site-nav__inner {
    padding-inline: var(--space-2);
  }

  .site-nav .logo {
    font-size: var(--text-sm);
    max-width: calc(100% - 3.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .hero__copy {
    right: var(--space-2);
    left: var(--space-2);
    bottom: var(--space-4);
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* Fix 3: hide hero brand on mobile — nav already carries the name */
  .logo--hero {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Small persistent brand signature over the video scrub itself — legible
     regardless of the current frame's brightness (scrim + text-shadow). */
  .hero__mobile-brand {
    display: block;
    position: absolute;
    top: calc(var(--nav-h) + var(--space-2));
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(10, 10, 11, 0.38);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    font-family: var(--font);
    font-size: var(--text-caption);
    color: var(--muted);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
  }

  /* Soften baked-in frame wordmark (HASTI SALEHI) on the right of WebPs */
  .hero__veil {
    background:
      linear-gradient(to left, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 28%, transparent 55%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 28%, transparent 48%, rgba(0, 0, 0, 0.5) 100%);
  }

  /* Fix 2: no room beside stacked CTAs — hide scroll hint on mobile */
  .hero__scroll {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.5rem, 6.5vw, 1.875rem);
    margin-bottom: var(--space-2);
  }

  .hero__sub {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
    max-width: none;
    line-height: var(--lh-body);
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: var(--space-2);
  }

  .hero__actions .btn {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
    padding-block: 0.65rem;
    padding-inline: var(--space-2);
    font-size: var(--text-sm);
  }

  /* Outline secondary CTA — distinct from disabled/flat grey fill */
  .hero__actions .btn--ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero__actions .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-shadow: none;
  }

  .logo {
    font-size: var(--text-sm);
  }

  .mock--dash {
    grid-template-columns: 1fr;
  }

  .mock-side {
    display: none;
  }

  .mock-cal__days {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mock-cal__day:nth-child(4),
  .mock-cal__day:nth-child(5) {
    display: none;
  }

  .mock-table th:nth-child(2),
  .mock-table td:nth-child(2) {
    display: none;
  }

  body {
    background-attachment: scroll;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Legal, pricing, testimonials, sticky CTA                                   */
/* -------------------------------------------------------------------------- */

.legal__wrap {
  max-width: 48rem;
}

.legal__body {
  display: grid;
  gap: var(--space-2);
}

.legal__heading {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--lh-card);
  margin-top: var(--space-2);
  color: var(--fg);
}

.legal__list {
  margin: 0;
  padding-right: 1.25rem;
  display: grid;
  gap: var(--space-1);
}

.pricing__panel {
  max-width: 36rem;
  margin-inline: auto;
  padding: var(--card-pad);
  text-align: center;
  display: grid;
  gap: var(--space-3);
}

.pricing__lead {
  margin-inline: auto;
  text-align: center;
}

.testimonials__grid {
  max-width: 56rem;
  margin-inline: auto;
}

.testimonial {
  text-align: center;
}

.testimonial__quote {
  margin: 0 0 var(--space-2);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--fg);
  font-weight: 400;
}

.testimonial__meta {
  display: grid;
  gap: 0.2rem;
}

.testimonial__name {
  font-style: normal;
  font-weight: 600;
  color: var(--fg);
  font-size: var(--text-sm);
}

.testimonial__salon {
  color: var(--muted);
  font-size: var(--text-caption);
}

.testimonial__photo {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto var(--space-2);
  border-radius: 50%;
  overflow: hidden;
  border: 0.5px solid var(--line);
}

.testimonial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: var(--space-2);
  right: var(--space-2);
  bottom: calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
  z-index: 850;
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--on-accent);
  background: linear-gradient(155deg, var(--gold-highlight), var(--accent), var(--accent-deep));
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.sticky-cta.is-visible {
  display: block;
}

@media (max-width: 768px) {
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
  }
}

/* -------------------------------------------------------------------------- */
/* Feature index, capability gallery, closing                                 */
/* -------------------------------------------------------------------------- */

.features__index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.feature-index {
  display: grid;
  gap: var(--space-1);
  padding: var(--space-3);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 0.5px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature-index:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.feature-index__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  color: var(--gold-highlight);
  background: var(--surface-inset);
  border: 0.5px solid var(--line-gold);
}

.feature-index__icon svg {
  width: var(--icon-sm);
  height: var(--icon-sm);
}

.feature-index__num {
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--muted);
}

.feature-index__title {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--lh-card);
  letter-spacing: var(--tracking-tight);
}

.feature-index__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: var(--lh-body);
}

.capability-gallery__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.capability-gallery__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--fg);
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.capability-gallery__pill:hover {
  border-color: var(--card-border-hover);
  color: var(--gold-highlight);
  background: var(--accent-soft);
}

.capability-gallery__pill-num {
  color: var(--muted);
  font-weight: 600;
}

.capability-showcase {
  padding-block: var(--space-6);
}

.capability-showcase__wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-6);
  align-items: center;
}

.capability-showcase--reverse .capability-showcase__wrap {
  direction: ltr;
}

.capability-showcase--reverse .capability-showcase__copy {
  direction: rtl;
}

.capability-showcase__title {
  font-size: clamp(1.25rem, 2.5vw, var(--text-h2));
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-2);
}

.capability-showcase__device {
  margin: 0;
}

.mock--report,
.mock--marketing,
.mock--booking {
  padding: var(--space-2);
  min-height: 280px;
}

.mock-report__head,
.mock-marketing__head,
.mock-booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.mock-report__label,
.mock-marketing__label,
.mock-booking__head p {
  font-size: var(--text-caption);
  color: var(--muted);
  margin: 0;
}

.mock-report__head h4,
.mock-marketing__head h4,
.mock-booking__head h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.15rem 0 0;
}

.mock-report__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: var(--space-2);
}

.mock-report__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 4.5rem;
  margin-bottom: var(--space-2);
  padding: 0.25rem 0;
}

.mock-report__bars span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--gold-highlight), var(--accent));
  opacity: 0.85;
}

.mock-report__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: var(--text-caption);
  color: var(--muted);
}

.mock-report__list strong {
  color: var(--fg);
  font-weight: 600;
}

.mock-marketing__cards {
  display: grid;
  gap: 0.5rem;
}

.mock-marketing__card {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
}

.mock-marketing__card--accent {
  border-color: rgba(212, 175, 55, 0.22);
  background: var(--accent-soft);
}

.mock-marketing__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-highlight);
  margin-bottom: 0.25rem;
}

.mock-marketing__card strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.mock-marketing__card p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

.mock-booking__staff {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-2);
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
}

.mock-booking__avatar {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--gold-highlight);
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-booking__staff strong {
  display: block;
  font-size: 0.85rem;
}

.mock-booking__staff em {
  font-size: 0.7rem;
  color: var(--muted);
  font-style: normal;
}

.mock-booking__slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: var(--space-2);
}

.mock-booking__slot {
  padding: 0.5rem;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  border: 0.5px solid var(--line-gold);
  background: var(--surface-inset);
}

.mock-booking__slot.is-active {
  border-color: var(--card-border-hover);
  background: var(--accent-soft);
  color: var(--gold-highlight);
}

.mock-booking__slot--open {
  border-style: dashed;
  color: var(--muted);
  font-weight: 500;
}

.mock-booking__service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.65rem;
  margin-bottom: var(--space-2);
  border-radius: var(--radius-sm);
  background: var(--card-surface);
  border: 0.5px solid var(--line-gold);
  font-size: 0.78rem;
}

.mock-booking__service span {
  color: var(--muted);
}

.mock-booking__cta {
  width: 100%;
  padding: 0.65rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, var(--gold-highlight), var(--accent));
  color: var(--on-accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.closing__inner {
  max-width: 40rem;
  margin-inline: auto;
  padding: var(--space-6) var(--space-4);
  text-align: center;
  display: grid;
  gap: var(--space-3);
  justify-items: center;
}

.closing__brand {
  justify-content: center;
}

.closing__title {
  max-width: 20ch;
}

.closing__sub {
  margin-inline: auto;
}

@media (max-width: 960px) {
  .features__index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-showcase__wrap,
  .capability-showcase--reverse .capability-showcase__wrap {
    grid-template-columns: 1fr;
    direction: rtl;
  }
}

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

  .mock-report__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Custom cursor (desktop / pointer: fine only — class is added
   by customCursor.js, so touch devices are never affected)
   ============================================================ */

html.has-custom-cursor,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor [data-cursor-hover] {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 12000;
  opacity: 0;
  will-change: transform;
}

.cursor-dot.is-visible,
.cursor-ring.is-visible {
  opacity: 1;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  mix-blend-mode: difference;
  display: grid;
  place-items: center;
  transition:
    width 0.25s ease,
    height 0.25s ease,
    margin 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.2s ease;
}

.cursor-ring.is-hover {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-color: rgba(255, 255, 255, 0.75);
}

.cursor-ring.has-text {
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  mix-blend-mode: normal;
  background: linear-gradient(155deg, var(--gold-highlight), var(--accent));
  border-color: var(--accent);
}

.cursor-ring__label {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--on-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.cursor-ring.has-text .cursor-ring__label {
  opacity: 1;
}

/* Magnetic buttons move via JS transform — keep them composited. */
.hero__actions .btn,
[data-magnetic] {
  will-change: transform;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
