/* ==========================================================================
   CLINICLY ONE — HOME · HEADER + HERO (Section 1)
   Page-scoped styles. Depends on tokens.css + components.css (load first).
   Everything colour/size here is either a token or a stated Layer-2 value.

   Scope kept deliberately to this review chunk:
     · sticky glass nav (glow menu, services dropdown, shine CTA, burger)
     · dark split hero (aurora bg, orbit halo signature, people, 7 UI cards)
     · niche strip · mobile sheet menu · mobile sticky action bar

   Glass budget (tokens rule 2): exactly 3 live backdrop-filter cards
   (.c1-hcard--blur) + the fixed nav. All other cards fake the material with
   a solid tint — visually identical over this background, zero blur cost.
   ========================================================================== */

/* ==========================================================================
   0 · PAGE SCAFFOLD
   ========================================================================== */

/* Neither tokens.css nor components.css ships a box-model reset; without it
   every width:100% + padding combo (buttons, inputs, the hero grid itself)
   overflows its parent. Border-box is the baseline the components assume. */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.c1-home {
  margin: 0;
  background: var(--c1-ink-900);
  color: var(--c1-oninv);
  font-family: var(--c1-font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.c1-skip {
  position: fixed;
  top: -56px; left: 14px;
  z-index: calc(var(--c1-z-modal) + 1);
  padding: 0.65rem 1.1rem;
  background: var(--c1-action);
  color: var(--c1-oninv-strong);
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-sm);
  font-weight: var(--c1-w-semibold);
  text-decoration: none;
  border-radius: var(--c1-r-sm);
  transition: top var(--c1-dur-fast) var(--c1-ease);
}
.c1-skip:focus-visible { top: 12px; outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.9), var(--c1-ring-focus); }


/* ==========================================================================
   1 · NAV — sticky glass, darkens on scroll
   ========================================================================== */

/* client-locked: the deep glass look is the permanent default — no scroll change */
.c1-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--c1-z-nav);
  background: rgba(4, 8, 28, 0.88);
  -webkit-backdrop-filter: var(--c1-glass-blur);
  backdrop-filter: var(--c1-glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 40px -18px rgba(2, 4, 18, 0.9);
}

.c1-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--c1-sp-6);
  max-width: var(--c1-container);
  margin-inline: auto;
  padding: 0 var(--c1-gutter);
  height: 74px;
}

/* Brand: transparent mark + live-text wordmark (dark-nav legible) */
.c1-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
  border-radius: var(--c1-r-sm);
}
.c1-nav__brand:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); }
.c1-nav__mark { display: block; width: 40px; height: auto; }
.c1-nav__word {
  font-family: var(--c1-font-head);
  font-size: 1.22rem;
  font-weight: var(--c1-w-semibold);
  letter-spacing: -0.015em;
  color: var(--c1-oninv-strong);
  white-space: nowrap;
}
.c1-nav__word em {
  font-style: normal;
  background: linear-gradient(96deg, #9D6DFC, #C77BFA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   2 · GLOW MENU — pill track with a sliding violet spotlight
   ========================================================================== */

.c1-glowmenu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--c1-r-pill);
}
.c1-glowmenu > li { position: relative; }

.c1-glowmenu__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.05rem;
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-sm);
  font-weight: var(--c1-w-medium);
  letter-spacing: 0.005em;
  color: var(--c1-oninv);
  text-decoration: none;
  background: none;
  border: 0;
  border-radius: var(--c1-r-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--c1-dur-fast) var(--c1-ease);
}
.c1-glowmenu__icon { width: 15px; height: 15px; opacity: 0.75; flex: none; }
.c1-glowmenu__chev { width: 13px; height: 13px; opacity: 0.7; transition: transform var(--c1-dur-base) var(--c1-ease-out); }
.c1-glowmenu__item--sub.is-open .c1-glowmenu__chev { transform: rotate(180deg); }

.c1-glowmenu__link:hover,
.c1-glowmenu__link.is-active { color: var(--c1-oninv-strong); }
.c1-glowmenu__link:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); }

/* top light-bar spark on the hovered / active item */
.c1-glowmenu__link::before {
  content: "";
  position: absolute;
  top: -5px; left: 50%;
  width: 22px; height: 2px;
  transform: translateX(-50%);
  border-radius: var(--c1-r-pill);
  background: var(--c1-grad-action);
  box-shadow: 0 2px 14px 2px rgba(124, 77, 251, 0.75);
  opacity: 0;
  transition: opacity var(--c1-dur-base) var(--c1-ease);
}
.c1-glowmenu__link:hover::before,
.c1-glowmenu__link.is-active::before { opacity: 1; }

/* the sliding spotlight (positioned by JS) */
.c1-glowmenu__glow {
  position: absolute;
  top: 4px; bottom: 4px; left: 0;
  width: 0;
  border-radius: var(--c1-r-pill);
  background:
    radial-gradient(75% 130% at 50% 0%, rgba(124, 77, 251, 0.42), rgba(124, 77, 251, 0.10) 62%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition: left 0.32s var(--c1-ease-out),
              width 0.32s var(--c1-ease-out),
              opacity var(--c1-dur-base) var(--c1-ease);
}
.c1-glowmenu.has-glow .c1-glowmenu__glow { opacity: 1; }

/* ==========================================================================
   3 · SERVICES DROPDOWN — dark glass panel
   ========================================================================== */

.c1-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 280px;
  padding: 8px;
  background: rgba(10, 14, 40, 0.92);
  -webkit-backdrop-filter: var(--c1-glass-blur);
  backdrop-filter: var(--c1-glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--c1-r-md);
  box-shadow: var(--c1-glass-specular-soft), var(--c1-glass-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--c1-dur-base) var(--c1-ease),
              transform var(--c1-dur-base) var(--c1-ease-out),
              visibility 0s linear var(--c1-dur-base);
  z-index: var(--c1-z-overlay);
}
.c1-glowmenu__item--sub.is-open .c1-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.c1-nav__dropitem {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--c1-r-sm);
  text-decoration: none;
  transition: background-color var(--c1-dur-fast) var(--c1-ease);
}
a.c1-nav__dropitem:hover { background: rgba(124, 77, 251, 0.16); }
a.c1-nav__dropitem:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); }
.c1-nav__dropname {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-sm);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-nav__dropdesc {
  font-size: var(--c1-t-xs);
  color: var(--c1-oninv-muted);
}
.c1-nav__dropitem--soon { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--c1-sp-3); }
.c1-nav__dropitem--soon .c1-nav__dropname { color: var(--c1-oninv-muted); }

/* dark-surface "Coming Soon" badge inside nav surfaces (nav isn't .c1-on-dark) */
.c1-nav .c1-badge--soon,
.c1-mnav .c1-badge--soon {
  background-color: rgba(224, 163, 60, 0.14);
  border-color: rgba(224, 163, 60, 0.4);
  color: var(--c1-amber-bright);
}
.c1-nav .c1-badge--soon .c1-badge__icon,
.c1-mnav .c1-badge--soon .c1-badge__icon { color: var(--c1-amber-bright); }

/* ==========================================================================
   4 · SHINY CTA — animated conic border, dots ring, shimmer + breathe glow
   Port of the approved reference button, recoloured to the brand: ink body,
   violet→orchid highlights. Continuous slow border rotation; hover/focus
   widens the gradient, shifts its angle and wakes the inner glow.
   ========================================================================== */

@property --gradient-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --fmark-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-angle-offset { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-percent { syntax: "<percentage>"; initial-value: 5%; inherits: false; }
@property --gradient-shine { syntax: "<color>"; initial-value: white; inherits: false; }

.c1-btn--shiny {
  --shiny-bg: #070C26;                    /* ink-800: near-black, violet cast kept */
  --shiny-bg-subtle: #1C2248;
  --shiny-highlight: #7C4DFB;             /* --c1-violet */
  --shiny-highlight-subtle: #A971FD;      /* lilac end of the action gradient */
  --shiny-anim: c1GradientAngle linear infinite;
  --shiny-duration: 3s;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  /* fallbacks for browsers without @property (ring renders static) */
  --gradient-angle: 0deg;
  --gradient-angle-offset: 0deg;
  --gradient-percent: 5%;
  --gradient-shine: #fff;

  isolation: isolate;
  position: relative;
  overflow: hidden;
  outline-offset: 4px;
  border: 1px solid transparent;
  border-radius: var(--c1-r-pill);
  color: var(--c1-oninv-strong);
  background:
    linear-gradient(var(--shiny-bg), var(--shiny-bg)) padding-box,
    conic-gradient(
      from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)
    ) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-bg-subtle),
              0 14px 34px -16px rgba(108, 63, 245, 0.6);
  transition: var(--shiny-transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine;
}

.c1-btn--shiny::before,
.c1-btn--shiny::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.c1-btn--shiny:active { translate: 0 1px; }

/* dots pattern swept by a rotating conic mask */
.c1-btn--shiny::before {
  --size: calc(100% - 6px);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle at var(--position) var(--position),
    white calc(var(--position) / 4),
    transparent 0
  ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  -webkit-mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
          mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
  border-radius: inherit;
  opacity: 0.4;
}

/* inner shimmer */
.c1-btn--shiny::after {
  --shiny-anim: c1Shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--shiny-highlight), transparent);
  -webkit-mask-image: radial-gradient(circle at bottom, transparent 40%, black);
          mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.c1-btn--shiny span { position: relative; z-index: 1; }
/* (the reference's rectangular inner-glow on hover is intentionally omitted —
   client asked for the square hover artefact to be removed on all buttons) */

/* continuous slow rotation + a paused reverse layer that wakes on hover */
.c1-btn--shiny,
.c1-btn--shiny::before,
.c1-btn--shiny::after {
  animation: var(--shiny-anim) var(--shiny-duration),
             var(--shiny-anim) calc(var(--shiny-duration) / 0.4) reverse paused;
  animation-composition: add;
}

.c1-btn--shiny:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-highlight-subtle);
}
.c1-btn--shiny:is(:hover, :focus-visible),
.c1-btn--shiny:is(:hover, :focus-visible)::before,
.c1-btn--shiny:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}
.c1-btn--shiny:focus-visible {
  box-shadow: inset 0 0 0 1px var(--shiny-bg-subtle), var(--c1-ring-focus);
}

@keyframes c1GradientAngle { to { --gradient-angle: 360deg; } }
@keyframes c1Shimmer { to { rotate: 360deg; } }

.c1-nav__cta { flex: none; }

/* ==========================================================================
   5 · BURGER + MOBILE SHEET MENU
   ========================================================================== */

.c1-nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--c1-r-sm);
  cursor: pointer;
}
.c1-nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c1-oninv-strong);
  border-radius: 2px;
  transition: transform var(--c1-dur-base) var(--c1-ease-out);
}
.c1-nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.c1-nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.c1-nav__burger:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); }

.c1-mnav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--c1-z-nav) - 1);
  padding: 96px var(--c1-gutter) 32px;
  overflow-y: auto;
  background: rgba(4, 8, 28, 0.97);
  -webkit-backdrop-filter: var(--c1-glass-blur-thick);
  backdrop-filter: var(--c1-glass-blur-thick);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--c1-dur-base) var(--c1-ease),
              transform var(--c1-dur-base) var(--c1-ease-out);
}
.c1-mnav.is-open { opacity: 1; transform: none; }
html.c1-menu-locked { overflow: hidden; }

.c1-mnav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
}
.c1-mnav__link {
  display: block;
  padding: 15px 4px;
  font-family: var(--c1-font-head);
  font-size: 1.35rem;
  font-weight: var(--c1-w-semibold);
  letter-spacing: -0.01em;
  color: var(--c1-oninv-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.c1-mnav__link.is-active { color: var(--c1-orchid); }
.c1-mnav__group {
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 4px;
}
.c1-mnav__label {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-eyebrow);
  font-weight: var(--c1-w-semibold);
  letter-spacing: var(--c1-ls-eyebrow);
  text-transform: uppercase;
  color: var(--c1-oninv-muted);
  margin-bottom: 6px;
}
.c1-mnav__sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--c1-sp-3);
  padding: 10px 8px;
  border-radius: var(--c1-r-sm);
  text-decoration: none;
}
a.c1-mnav__sublink:active { background: rgba(124, 77, 251, 0.16); }
.c1-mnav__sublink b {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-body);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-mnav__sublink > span:not(.c1-badge) {
  font-size: var(--c1-t-xs);
  color: var(--c1-oninv-muted);
  text-align: right;
}
.c1-mnav__sublink--soon b { color: var(--c1-oninv-muted); }
.c1-mnav a:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); border-radius: var(--c1-r-sm); }

.c1-mnav__ctas {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
/* the sheet is a dark surface but not .c1-on-dark — keep the ghost CTA white */
.c1-mnav .c1-btn--ghost {
  color: var(--c1-oninv-strong);
  border-color: rgba(255, 255, 255, 0.28);
}
.c1-mnav .c1-btn--ghost:hover { background-color: var(--c1-glass-on-dark-2); border-color: rgba(255, 255, 255, 0.5); }
.c1-mnav__wa .c1-btn__icon { color: var(--c1-whatsapp); }

/* ==========================================================================
   6 · HERO — layout + background
   ========================================================================== */

.c1-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(104px, 15vh, 138px);
  padding-bottom: clamp(0.75rem, 2vh, 1.5rem);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c1-hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--c1-grad-dark); }
.c1-hero__mesh { position: absolute; inset: 0; background: var(--c1-grad-mesh); opacity: 0.8; }

.c1-hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  mix-blend-mode: screen;
  will-change: transform;
}
.c1-hero__aurora--a {
  width: min(46vw, 700px); height: min(46vw, 700px);
  top: -14%; left: -9%;
  background: radial-gradient(circle, rgba(124, 77, 251, 0.32) 0%, transparent 66%);
  animation: c1AuroraA 26s var(--c1-ease-inout) infinite alternate;
}
.c1-hero__aurora--b {
  width: min(42vw, 620px); height: min(42vw, 620px);
  top: 4%; right: -11%;
  background: radial-gradient(circle, rgba(74, 99, 245, 0.26) 0%, transparent 66%);
  animation: c1AuroraB 33s var(--c1-ease-inout) infinite alternate;
}
.c1-hero__aurora--c {
  width: min(54vw, 780px); height: min(54vw, 780px);
  bottom: -30%; left: 24%;
  background: radial-gradient(circle, rgba(199, 123, 250, 0.18) 0%, transparent 66%);
  animation: c1AuroraC 39s var(--c1-ease-inout) infinite alternate;
}
@keyframes c1AuroraA { to { transform: translate(9%, 7%) scale(1.12); } }
@keyframes c1AuroraB { to { transform: translate(-7%, 9%) scale(1.16); } }
@keyframes c1AuroraC { to { transform: translate(6%, -9%) scale(1.1); } }

.c1-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
  max-width: 1240px;      /* hero breathes wider than the 1140 content column */
  margin-inline: auto;
  padding-inline: var(--c1-gutter);
}

/* ==========================================================================
   7 · HERO — copy column
   ========================================================================== */

.c1-hero__copy { display: grid; justify-items: start; }

.c1-hero__eyebrow { margin: 0 0 var(--c1-sp-5); }
.c1-hero__dot {
  width: 8px; height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--c1-grad-action);
  box-shadow: var(--c1-glow-node);
}

.c1-hero__title {
  margin: 0 0 var(--c1-sp-5);
  font-family: var(--c1-font-head);
  font-size: clamp(2.1rem, 1.05rem + 4.2vw, 4rem);
  font-weight: var(--c1-w-semibold);
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--c1-oninv-strong);
  text-wrap: balance;
}
.c1-hero__title-grad {
  display: block;
  margin-top: 0.18em;
  background: linear-gradient(94deg, #9D6DFC 4%, #C77BFA 62%, #DCA9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.c1-hero__sub {
  margin: 0 0 var(--c1-sp-8);
  font-size: var(--c1-t-lead);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv);
  max-width: 54ch;
}

.c1-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.c1-hero__trust {
  margin: var(--c1-sp-4) 0 0;
  font-size: var(--c1-t-sm);
  color: var(--c1-oninv-muted);
}

/* ==========================================================================
   8 · HERO — stage (people, halo signature, ground glow)
   ========================================================================== */

.c1-hero__stage {
  position: relative;
  padding-top: 140px;                /* air so the top cards float fully above the heads */
}

.c1-hero__people {
  display: block;
  width: min(102%, 700px);
  height: auto;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  /* dissolve the mid-thigh crop into the ink — no hard edge */
  -webkit-mask-image: linear-gradient(180deg, #000 58%, rgba(0, 0, 0, 0.5) 80%, transparent 97%);
          mask-image: linear-gradient(180deg, #000 58%, rgba(0, 0, 0, 0.5) 80%, transparent 97%);
}

/* signature: one soft orbit loop behind the group (echoes the infinity mark) */
.c1-hero__halo {
  position: absolute;
  z-index: 1;
  left: 50%; top: 12%;
  width: 82%;
  aspect-ratio: 2 / 0.9;
  transform: translateX(-50%) rotate(-8deg);
  border: 1px solid var(--c1-orbit-line);
  border-radius: 50%;
  animation: c1HaloBreathe 9s var(--c1-ease-inout) infinite alternate;
}
.c1-hero__halo::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: var(--c1-orbit-halo);
  filter: blur(26px);
}
.c1-hero__node {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c1-orbit-node);
  box-shadow: var(--c1-glow-node);
}
.c1-hero__node--a { left: 7%; top: 68%; animation: c1NodePulse 4.2s var(--c1-ease-inout) infinite alternate; }
.c1-hero__node--b { right: 10%; top: 22%; animation: c1NodePulse 5.1s var(--c1-ease-inout) 1s infinite alternate; }
@keyframes c1HaloBreathe { to { transform: translateX(-50%) rotate(-8deg) scale(1.035); opacity: 0.82; } }
@keyframes c1NodePulse { from { opacity: 0.5; } to { opacity: 1; } }

.c1-hero__ground {
  position: absolute;
  z-index: 1;
  left: 50%; bottom: -6px;
  width: 74%; height: 110px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(124, 77, 251, 0.38) 0%, transparent 72%);
  filter: blur(26px);
}


/* ==========================================================================
   9 · HERO CARDS — shared shell
   ========================================================================== */

.c1-hero__cards { position: absolute; inset: 0; z-index: 3; }

.c1-hcard {
  position: absolute;
  width: var(--w, 180px);
  /* parallax (vars set by JS on the stage; --d = depth per card) */
  transform: translate3d(calc(var(--par-x, 0px) * var(--d, 0)),
                         calc(var(--par-y, 0px) * var(--d, 0)), 0);
  /* breakpoint crossings glide instead of snapping while the window resizes */
  transition: left 0.35s var(--c1-ease), right 0.35s var(--c1-ease),
              top 0.35s var(--c1-ease), bottom 0.35s var(--c1-ease),
              width 0.35s var(--c1-ease);
}
html.c1-layout-mode .c1-hcard { transition: none; }   /* instant while dragging */
/* entrance gate — armed only when hero.js confirms motion */
html.hero-motion .c1-hcard:not(.is-in) { opacity: 0; }

.c1-hcard__inner {
  border-radius: var(--c1-r-md);
  padding: 11px 12px;
  color: var(--c1-oninv);
  /* faux-glass default: solid tint, no blur cost */
  background: rgba(13, 20, 53, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--c1-glass-specular-soft), var(--c1-glass-shadow);
  animation: c1CardFloat var(--float-t, 6.5s) var(--c1-ease-inout) var(--float-d, 0s) infinite alternate;
}
/* the 3 live-glass cards (tokens glass budget: max 3 per viewport) */
.c1-hcard--blur .c1-hcard__inner {
  background: var(--c1-glass-on-dark-2);
  -webkit-backdrop-filter: var(--c1-glass-blur);
  backdrop-filter: var(--c1-glass-blur);
  box-shadow: var(--c1-glass-specular), var(--c1-glass-shadow);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .c1-hcard--blur .c1-hcard__inner { background: rgba(13, 20, 53, 0.92); }
}
@keyframes c1CardFloat { to { transform: translateY(-7px); } }

.c1-hcard__head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.c1-hcard__title {
  font-family: var(--c1-font-head);
  font-size: 0.72rem;
  font-weight: var(--c1-w-semibold);
  letter-spacing: 0.02em;
  color: var(--c1-oninv-strong);
  white-space: nowrap;
}
.c1-hcard__cap {
  display: block;
  margin-top: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: var(--c1-oninv-muted);
}

/* card placement + per-card sizing (desktop)
   Rails: the group fills the image edge-to-edge, so head-height is a
   no-card zone. Short cards float fully ABOVE the heads (stage padding
   gives them room); everything else sits at torso height or dissolves
   into the ground-glow zone. Never on a face. */
/* Positions client-locked via ?layout drag session (1920px viewport).
   All cards are left/top anchored to the stage; a 1100–1535px guard below
   re-anchors the right rail so nothing clips on smaller desktops. */
.c1-hcard--site   { --w: 205px; left: 30.9%; top: 6.9%;   --float-t: 7.2s; --float-d: .4s; }
.c1-hcard--wa     { --w: 200px; left: 74.6%; top: 82%;    --float-t: 6.4s; --float-d: 1.1s; }
.c1-hcard--cal    { --w: 184px; left: 34%;   top: 82.9%;  --float-t: 6.9s; --float-d: .7s; }
.c1-hcard--gmb    { --w: 196px; left: 93%;   top: 23.1%;  --float-t: 7.6s; --float-d: 0s; }
.c1-hcard--growth { --w: 184px; left: 90.2%; top: 51.8%;  --float-t: 6.1s; --float-d: 1.5s; }
.c1-hcard--ads    { --w: 195px; left: -3.3%; top: 70.6%;  --float-t: 6.6s; --float-d: 1.8s; }
.c1-hcard--live   { --w: auto;  left: -4.5%; top: 53.3%;  --float-t: 5.8s; --float-d: .9s; }

/* ==========================================================================
   10 · CARD SKINS
   ========================================================================== */

/* --- 1 · Website preview --------------------------------------------------- */
.c1-browser {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--c1-ink-700);
}
.c1-browser__bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.06);
}
.c1-browser__bar > i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.c1-browser__url {
  margin-left: 5px;
  flex: 1;
  padding: 2.5px 8px;
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  color: var(--c1-oninv-muted);
  background: rgba(4, 8, 28, 0.55);
  border-radius: var(--c1-r-pill);
}
.c1-browser__view { height: 58px; overflow: hidden; background: var(--c1-paper); }
.c1-msite { animation: c1MsiteScroll 10s var(--c1-ease-inout) infinite; }
@keyframes c1MsiteScroll {
  0%, 14%  { transform: translateY(0); }
  48%, 62% { transform: translateY(-44%); }
  92%, 100%{ transform: translateY(0); }
}
.c1-msite__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  background: var(--c1-paper);
  border-bottom: 1px solid var(--c1-paper-line);
}
.c1-msite__logo { width: 9px; height: 9px; border-radius: 50%; background: var(--c1-grad-identity); }
.c1-msite__nav > i { width: 14px; height: 3px; border-radius: 2px; background: var(--c1-paper-border); }
.c1-msite__pill {
  margin-left: auto;
  padding: 2px 6px;
  font-family: var(--c1-font-head);
  font-size: 0.5rem;
  font-weight: var(--c1-w-semibold);
  color: var(--c1-paper);
  background: var(--c1-action);
  border-radius: var(--c1-r-pill);
}
.c1-msite__hero {
  display: grid;
  justify-items: start;
  gap: 3.5px;
  padding: 9px 8px 10px;
  background: linear-gradient(135deg, var(--c1-paper-tint-2), var(--c1-action-soft));
}
.c1-msite__hero b { width: 64%; height: 5px; border-radius: 3px; background: var(--c1-indigo-deep); }
.c1-msite__hero i { width: 82%; height: 3px; border-radius: 2px; background: var(--c1-paper-border); }
.c1-msite__hero i.c1-msite__short { width: 55%; }
.c1-msite__cta {
  margin-top: 3px;
  padding: 2.5px 7px;
  font-family: var(--c1-font-head);
  font-size: 0.5rem;
  font-weight: var(--c1-w-semibold);
  color: var(--c1-paper);
  background: var(--c1-grad-action);
  border-radius: var(--c1-r-pill);
}
.c1-msite__row {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: var(--c1-paper);
}
.c1-msite__row i {
  flex: 1;
  height: 26px;
  border-radius: 5px;
  background: var(--c1-paper-tint-2);
  border: 1px solid var(--c1-paper-line);
}
.c1-msite__band { height: 18px; background: var(--c1-grad-identity); opacity: .92; }

/* --- 2 · WhatsApp ---------------------------------------------------------- */
.c1-wa__badge {
  display: grid;
  place-items: center;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--c1-whatsapp);
  flex: none;
}
.c1-wa__badge svg { width: 12px; height: 12px; color: #fff; }
.c1-wa__online {
  margin-left: auto;
  font-size: 0.6rem;
  color: var(--c1-mint);
}
.c1-wa__chat { display: grid; gap: 6px; }
.c1-wa__msg {
  margin: 0;
  max-width: 92%;
  padding: 6px 9px;
  font-size: 0.68rem;
  line-height: 1.45;
  border-radius: 10px;
  transition: opacity var(--c1-dur-slow) var(--c1-ease-out),
              transform var(--c1-dur-slow) var(--c1-ease-out);
}
.c1-wa__msg--in {
  justify-self: start;
  background: rgba(255, 255, 255, 0.1);
  border-top-left-radius: 3px;
  color: var(--c1-oninv-strong);
}
.c1-wa__msg--out {
  justify-self: end;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-top-right-radius: 3px;
  color: var(--c1-oninv-strong);
}
.c1-wa__ticks { color: #53BDEB; font-size: 0.62rem; letter-spacing: -0.08em; }
.c1-wa__typing {
  display: none;
  margin: 0;
  justify-self: start;
  gap: 3px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border-top-left-radius: 3px;
}
.c1-wa__typing i {
  width: 4.5px; height: 4.5px;
  border-radius: 50%;
  background: var(--c1-oninv-muted);
  animation: c1TypingDot 1.1s ease-in-out infinite;
}
.c1-wa__typing i:nth-child(2) { animation-delay: .18s; }
.c1-wa__typing i:nth-child(3) { animation-delay: .36s; }
@keyframes c1TypingDot { 0%, 60%, 100% { transform: none; opacity: .5; } 30% { transform: translateY(-3px); opacity: 1; } }
/* animated state (JS-armed): messages start hidden, typing becomes visible */
[data-seq="wa"].is-anim .c1-wa__msg { opacity: 0; transform: translateY(6px); }
[data-seq="wa"].is-anim .c1-wa__msg.show { opacity: 1; transform: none; }
[data-seq="wa"].is-anim .c1-wa__typing { display: inline-flex; opacity: 0; transition: opacity var(--c1-dur-base) var(--c1-ease); }
[data-seq="wa"].is-anim .c1-wa__typing.show { opacity: 1; }

/* --- 3 · Booking calendar -------------------------------------------------- */
.c1-cal__icon { color: var(--c1-orchid); }
.c1-cal__icon svg { width: 15px; height: 15px; display: block; }
.c1-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 8px;
}
.c1-cal__grid span {
  font-size: 0.56rem;
  text-align: center;
  color: var(--c1-oninv-muted);
  padding-bottom: 1px;
}
.c1-cal__grid i {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  font-style: normal;
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
  color: var(--c1-oninv);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 5px;
  transition: background-color var(--c1-dur-fast) var(--c1-ease),
              color var(--c1-dur-fast) var(--c1-ease),
              box-shadow var(--c1-dur-fast) var(--c1-ease);
}
.c1-cal__grid i.is-hot { background: rgba(124, 77, 251, 0.3); color: var(--c1-oninv-strong); }
.c1-cal__grid i.is-picked {
  background: var(--c1-action);
  color: var(--c1-oninv-strong);
  font-weight: var(--c1-w-semibold);
  box-shadow: 0 0 14px rgba(108, 63, 245, 0.55);
}
.c1-cal__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  font-family: var(--c1-font-head);
  font-size: 0.62rem;
  font-weight: var(--c1-w-semibold);
  color: var(--c1-mint);
  background: rgba(93, 224, 175, 0.12);
  border: 1px solid rgba(93, 224, 175, 0.35);
  border-radius: var(--c1-r-pill);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--c1-dur-slow) var(--c1-ease-out),
              transform var(--c1-dur-slow) var(--c1-ease-out);
}
.c1-cal__chip svg { width: 10px; height: 10px; }
.c1-cal__chip.show { opacity: 1; transform: none; }

/* --- 4 · Google Business Profile ------------------------------------------- */
.c1-gmb__g {
  display: grid;
  place-items: center;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: #fff;
  flex: none;
}
.c1-gmb__g svg { width: 13px; height: 13px; display: block; }
.c1-gmb__stars {
  display: flex;
  align-items: center;
  gap: 2.5px;
}
.c1-gmb__star { width: 15px; height: 15px; color: var(--c1-gold); transition: color .28s var(--c1-ease); }
[data-seq="gmb"].is-anim .c1-gmb__star { color: rgba(245, 185, 66, 0.2); }
[data-seq="gmb"].is-anim .c1-gmb__star.is-lit { color: var(--c1-gold); }
.c1-gmb__rating {
  margin-left: 5px;
  font-family: var(--c1-font-head);
  font-size: 0.95rem;
  font-weight: var(--c1-w-bold);
  color: var(--c1-oninv-strong);
  font-variant-numeric: tabular-nums;
}
.c1-gmb__meta {
  margin: 6px 0 0;
  font-size: 0.66rem;
  color: var(--c1-oninv-strong);
}
.c1-gmb__delta { font-style: normal; color: var(--c1-mint); }

/* --- 5 · Patient growth ----------------------------------------------------- */
.c1-growth__icon { color: var(--c1-mint); }
.c1-growth__icon svg { width: 15px; height: 15px; display: block; }
.c1-growth__big {
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.c1-growth__big b {
  font-family: var(--c1-font-head);
  font-size: 1.42rem;
  font-weight: var(--c1-w-bold);
  line-height: 1;
  color: var(--c1-oninv-strong);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.c1-growth__big span { font-size: 0.66rem; color: var(--c1-oninv-muted); }
.c1-growth__spark { display: block; width: 100%; height: auto; }
.c1-growth__line { stroke-dasharray: 1; stroke-dashoffset: 0; }
[data-seq="growth"].is-anim .c1-growth__line { stroke-dashoffset: 1; }
[data-seq="growth"].is-anim.is-drawn .c1-growth__line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s var(--c1-ease-out);
}
.c1-growth__area, .c1-growth__dot { transition: opacity .5s var(--c1-ease); }
[data-seq="growth"].is-anim .c1-growth__area,
[data-seq="growth"].is-anim .c1-growth__dot { opacity: 0; }
[data-seq="growth"].is-anim.is-drawn .c1-growth__area,
[data-seq="growth"].is-anim.is-drawn .c1-growth__dot { opacity: 1; transition-delay: .55s; }

/* --- 6 · Google + Meta Ads (merged, short) ---------------------------------- */
.c1-gads__logo svg { width: 17px; height: 17px; display: block; }
.c1-gads__delta { font-style: normal; color: var(--c1-mint); font-size: 0.6rem; }
.c1-meta__logos { display: inline-flex; align-items: center; gap: 4px; }
.c1-meta__ig { width: 14px; height: 14px; color: #E4A0FF; }
.c1-meta__fb { width: 14px; height: 14px; color: #7BA6FF; }
.c1-ads__meta {
  margin: 2px 0 0;
  font-size: 0.66rem;
  color: var(--c1-oninv-strong);
  white-space: nowrap;
}
.c1-ads__meta b {
  font-family: var(--c1-font-head);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}
/* mobile-only Google-ad mock (shown under the clicks metric on phones) */
.c1-ads__ad { display: none; }
.c1-ads__tag {
  font-family: var(--c1-font-head);
  font-size: 0.52rem;
  font-weight: var(--c1-w-bold);
  letter-spacing: 0.04em;
  color: var(--c1-oninv-strong);
}
.c1-ads__headline { font-size: 0.68rem; font-weight: var(--c1-w-medium); color: #9DB4FF; }
.c1-ads__ad i { width: 92%; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.14); }
.c1-ads__ad i.c1-ads__short { width: 64%; }

/* mobile-only website visitor metrics */
.c1-site__meta { display: none; }

/* --- 7 · "Live on Google" pill ---------------------------------------------- */
.c1-hcard--live .c1-hcard__inner--pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: var(--c1-r-pill);
  font-family: var(--c1-font-head);
  font-size: 0.72rem;
  font-weight: var(--c1-w-semibold);
  letter-spacing: 0.02em;
  color: var(--c1-oninv-strong);
  white-space: nowrap;
}
.c1-live__dot {
  width: 7px; height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--c1-mint);
  box-shadow: 0 0 8px rgba(93, 224, 175, 0.8);
  animation: c1LivePulse 2.2s var(--c1-ease-inout) infinite;
}
.c1-live__g { display: grid; place-items: center; width: 15px; height: 15px; flex: none; }
.c1-live__g svg { width: 13px; height: 13px; display: block; }
@keyframes c1LivePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ==========================================================================
   11 · NICHE STRIP
   ========================================================================== */

.c1-hero__niches {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.75rem, 3.5vh, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.c1-niches {
  display: flex;
  align-items: stretch;
  justify-content: center;
  list-style: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1rem, 2.2vh, 1.4rem) var(--c1-gutter) 0;
}
.c1-niche {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 0.35rem 0.5rem;
  text-align: center;
}
.c1-niche + .c1-niche::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 58%;
  background: rgba(255, 255, 255, 0.09);
}
/* icons are alpha masks (client line-art, recoloured by the page) so they
   render razor-sharp in exactly the brand gradient on the dark ground */
.c1-niche__icon {
  display: block;
  width: 48px; height: 38px;
  background: linear-gradient(135deg, #A78BFA 15%, #C77BFA 85%);
  -webkit-mask: var(--niche-icon) no-repeat center / contain;
          mask: var(--niche-icon) no-repeat center / contain;
}
.c1-niche__icon--dental { --niche-icon: url(../img/illus/c1-niche-dental.png); }
.c1-niche__icon--skin   { --niche-icon: url(../img/illus/c1-niche-skin.png); }
.c1-niche__icon--medspa { --niche-icon: url(../img/illus/c1-niche-medspa.png); }
.c1-niche__icon--body   { --niche-icon: url(../img/illus/c1-niche-body.png); }
.c1-niche__icon--more   { --niche-icon: url(../img/illus/c1-niche-more.svg); }
.c1-niche span {
  font-size: var(--c1-t-sm);
  font-weight: var(--c1-w-medium);
  color: var(--c1-oninv);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   HOME SECTION 2 · CLIENT LOGO MARQUEE
   Real client logos normalised to white knockouts (assets/img/logos/
   clients-white/). Pure CSS infinite scroll: the track holds two copies and
   translates -50%; each item carries its own right-margin so both halves
   measure identically (flex gap would break the -50% loop point).
   Speed: --c1-marquee-dur = time for the full logo set to pass (client
   spec: ~3s). One variable to tune if it ever feels off.
   ========================================================================== */

.c1-clients {
  position: relative;
  padding-block: clamp(1.9rem, 4vh, 2.6rem);   /* slim, even above and below */
  background: linear-gradient(180deg, var(--c1-ink-900), var(--c1-ink-800));
}
.c1-clients__label {
  margin: 0 var(--c1-gutter) clamp(1.25rem, 3vh, 1.75rem);
  text-align: center;
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-eyebrow);
  font-weight: var(--c1-w-semibold);
  letter-spacing: var(--c1-ls-eyebrow);
  text-transform: uppercase;
  color: var(--c1-oninv-muted);
}

.c1-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.c1-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0;
  padding: 0.6rem 0 1rem;               /* just enough room for the pop + glow */
  list-style: none;
  /* one full logo set passes per period — 7.5s = slow-medium (client-tuned) */
  animation: c1Marquee var(--c1-marquee-dur, 7.5s) linear infinite;
}
.c1-marquee:hover .c1-marquee__track { animation-play-state: paused; }
/* track holds 3 identical sets → shift exactly one set for a seamless wrap */
@keyframes c1Marquee { to { transform: translateX(calc(-100% / 3)); } }

.c1-marquee__item {
  position: relative;
  flex: none;
  margin-right: clamp(2.75rem, 6vw, 4.75rem);
  transition: transform var(--c1-dur-base) var(--c1-ease-out);
}
.c1-marquee__item img {
  display: block;
  height: clamp(38px, 4.6vw, 50px);
  width: auto;
  max-width: min(46vw, 175px);
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--c1-dur-base) var(--c1-ease);
}
/* subtle pop with a violet glow pooling beneath (hover / finger press) */
.c1-marquee__item::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  bottom: -16px;
  height: 20px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(124, 77, 251, 0.55), transparent 75%);
  filter: blur(9px);
  opacity: 0;
  transition: opacity var(--c1-dur-base) var(--c1-ease);
  pointer-events: none;
}
.c1-marquee__item:hover,
.c1-marquee__item:active { transform: translateY(-5px) scale(1.06); }
.c1-marquee__item:hover img,
.c1-marquee__item:active img { opacity: 1; }
.c1-marquee__item:hover::after,
.c1-marquee__item:active::after { opacity: 1; }

/* reduced motion: static, swipeable strip; loop copies hidden */
@media (prefers-reduced-motion: reduce) {
  .c1-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .c1-marquee__track { animation: none; }
  .c1-marquee__copy { display: none; }
}

/* ==========================================================================
   SHARED · SECTION PILL
   One eyebrow treatment for every section: small line-icon + uppercase label
   in a violet glass capsule. --onlight is the dark variant for light bands.
   ========================================================================== */

.c1-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 var(--c1-sp-5);
  padding: 8px 15px;
  border-radius: var(--c1-r-pill);
  background: rgba(124, 77, 251, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-eyebrow);
  font-weight: var(--c1-w-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c1-oninv);
}
.c1-pill svg { width: 14px; height: 14px; flex: none; color: var(--c1-orchid); }
/* on light sections: dark purple glass so it still reads as the same device */
.c1-pill--onlight {
  background: linear-gradient(150deg, #2A1B5E, #1A1140);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: var(--c1-shadow-md);
  color: #EDE8FF;
}

/* ==========================================================================
   HOME SECTION 3 · THE DIAGNOSIS (light)
   The emotional argument before the calculator. Light band between the dark
   hero/marquee above and the dark-panelled calculator below (dark/light/dark
   rhythm per DESIGN). Reuses .c1-card / .c1-eyebrow / .c1-h2 / .c1-lead;
   the fact-chip borrows the badge pill geometry in the action-violet family.
   ========================================================================== */

.c1-diag {
  position: relative;
  /* cool grey with the brand's violet cast — the hero's tone, in daylight */
  background: linear-gradient(180deg, var(--c1-paper-tint-2) 0%, var(--c1-paper-tint) 55%, var(--c1-paper) 100%);
  padding-top: var(--c1-section-y-lg);
  padding-bottom: clamp(1.25rem, 2.5vh, 2rem);   /* calculator follows tightly */
}
.c1-diag__inner {
  max-width: var(--c1-container);
  margin-inline: auto;
  padding-inline: var(--c1-gutter);
}

.c1-diag__head {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5.5vh, 3.5rem);
}
.c1-diag__head .c1-h2 { margin: 0 0 var(--c1-sp-5); }
.c1-diag__sub { max-width: 38rem; }

/* --- feature steps: dark glass panel, list left, swapping visual right -----
   The whole component sits in one rounded ink-glass card (the header's
   material, blue-deep). Inside: on-dark step buttons with icon badges,
   white image panel matching the card's corner radius exactly. */
.c1-steps {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  max-width: 66rem;
  margin: clamp(1.25rem, 3vh, 2.25rem) auto 0;   /* extra air under the subheading */
  padding: clamp(1.25rem, 2.6vw, 2.5rem);
  border-radius: var(--c1-r-xl);
  background: var(--c1-grad-dark);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--c1-glass-specular-soft), var(--c1-glass-shadow-lg);
}
.c1-steps__list {
  display: grid;
  gap: clamp(0.7rem, 1.6vh, 1.1rem);
}

.c1-steps__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  text-align: left;
  background: none;
  border: 0;
  border-radius: var(--c1-r-lg);
  cursor: pointer;
  opacity: 0.42;
  transition: opacity var(--c1-dur-slow) var(--c1-ease),
              background-color var(--c1-dur-base) var(--c1-ease),
              box-shadow var(--c1-dur-base) var(--c1-ease);
}
.c1-steps__item:hover { opacity: 0.75; }
.c1-steps__item.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.c1-steps__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), var(--c1-ring-focus);
  opacity: 1;
}

/* icon badge — light glass circle; the active one lights up violet */
.c1-steps__badge {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--c1-oninv);
  transition: transform var(--c1-dur-base) var(--c1-ease-out),
              background var(--c1-dur-base) var(--c1-ease),
              border-color var(--c1-dur-base) var(--c1-ease),
              color var(--c1-dur-base) var(--c1-ease),
              box-shadow var(--c1-dur-base) var(--c1-ease);
}
.c1-steps__badge svg { width: 21px; height: 21px; }
.c1-steps__item.is-active .c1-steps__badge {
  background: var(--c1-grad-action);
  border-color: rgba(167, 139, 250, 0.5);
  color: var(--c1-oninv-strong);
  transform: scale(1.1);
  box-shadow: var(--c1-shadow-action);
}

.c1-steps__text { display: grid; gap: 3px; }
.c1-steps__title {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-h4);
  font-weight: var(--c1-w-semibold);
  line-height: var(--c1-lh-tight);
  color: var(--c1-oninv-strong);
}
.c1-steps__line {
  font-family: var(--c1-font-body);
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-tight);
  color: var(--c1-oninv);
}

.c1-steps__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--c1-r-xl);               /* same pixel radius as the card */
  overflow: hidden;
  background: #fff;                            /* the images are white-backed */
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--c1-glass-shadow);
}
.c1-steps__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(26px);
  visibility: hidden;
  transition: opacity 0.5s var(--c1-ease-out),
              transform 0.5s var(--c1-ease-out),
              visibility 0s linear 0.5s;
}
.c1-steps__panel.is-active {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}
.c1-steps__panel img,
.c1-steps__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;                         /* whole illustration, no crop */
}
.c1-steps__fallback { display: none; }
.c1-steps__panel.no-img img { display: none; }
.c1-steps__panel.no-img .c1-steps__fallback { display: block; }

/* pill that hands the narrative to the calculator */
.c1-diag__gap-eyebrow {
  display: flex;
  width: fit-content;
  margin: clamp(3rem, 6.5vh, 4.75rem) auto 0;    /* clear air under the dark card */
}

.c1-diag__close {
  margin: var(--c1-sp-4) auto 0;
  max-width: 46rem;
  text-align: center;
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-h3);
  font-weight: var(--c1-w-semibold);
  line-height: var(--c1-lh-head);
  letter-spacing: var(--c1-ls-head);
  color: var(--c1-text-strong);
  text-wrap: balance;
}
.c1-diag__close strong { font-weight: inherit; color: var(--c1-action); }

/* the hand-off headline to the calculator — deliberately loud */
.c1-diag__bridge {
  margin: var(--c1-sp-6) auto 0;
  max-width: 44rem;
  text-align: center;
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-h4);
  font-weight: var(--c1-w-medium);
  line-height: var(--c1-lh-tight);
  color: var(--c1-text);
}
.c1-diag__bridge strong {
  font-weight: var(--c1-w-bold);
  color: var(--c1-text-strong);
}
.c1-diag__trust {
  margin: var(--c1-sp-3) auto 0;
  text-align: center;
  font-family: var(--c1-font-body);
  font-size: var(--c1-t-sm);
  color: var(--c1-text-muted);
}

@media (max-width: 1023px) {
  .c1-steps { grid-template-columns: minmax(0, 1fr); max-width: 40rem; }
  .c1-steps__stage { order: -1; }              /* visual first, like the reference */
}
@media (max-width: 767px) {
  .c1-diag { padding-block: clamp(3rem, 9vw, 4rem); }
  .c1-diag__head { margin-bottom: 1.5rem; }
  .c1-steps { padding: 0.9rem; gap: 1.1rem; border-radius: var(--c1-r-lg); }
  .c1-steps__stage { border-radius: var(--c1-r-lg); }
  .c1-steps__item { padding: 10px 10px; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
  .c1-steps__badge { width: 38px; height: 38px; }
  .c1-steps__badge svg { width: 18px; height: 18px; }
  .c1-steps__title { font-size: 1.05rem; }
  .c1-diag__gap-eyebrow { margin-top: 2.5rem; }
  .c1-diag__close { margin-top: 0.75rem; }
}

/* ==========================================================================
   HOME SECTION 5 · PROOF — RECEIPTS, NOT PROMISES (dark)
   Real GMB screenshot in a browser frame on the left; big animated metrics
   plus the illustrative cost-of-invisibility panel on the right. All grid
   tracks minmax(0,·) — the mobile-overflow lesson holds here too.
   ========================================================================== */

.c1-proof {
  position: relative;
  /* client-locked: majority BLACK, purple only as a hint in the last stretch.
     Vertical (not diagonal) so the bottom edge is a uniform #2A1150 — the exact
     colour .c1-serv opens with, which is what makes that seam disappear. */
  background: linear-gradient(180deg, #050307 0%, #08050E 42%, #120A24 74%, #2A1150 100%);
  padding-top: var(--c1-section-y-lg);
  padding-bottom: clamp(2.5rem, 5vh, 4rem);   /* even close — no dead band below */
}
.c1-proof__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--c1-gutter);
}

.c1-proof__head {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5.5vh, 3.5rem);
}
.c1-proof__head .c1-eyebrow { margin: 0 0 var(--c1-sp-4); }
.c1-proof__head .c1-h2 { margin: 0 0 var(--c1-sp-5); }
.c1-proof__sub { max-width: 44rem; }

.c1-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 53fr) minmax(0, 47fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

/* --- left · the receipt ---------------------------------------------------- */
.c1-proof__browser {
  margin: 0;
  border-radius: var(--c1-r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--c1-glass-specular-soft), var(--c1-glass-shadow-lg);
  background: #10142E;
}
.c1-proof__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.c1-proof__bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.c1-proof__bar i:nth-child(1) { background: #FF6159; }
.c1-proof__bar i:nth-child(2) { background: #FFBD2E; }
.c1-proof__bar i:nth-child(3) { background: #28C840; }
.c1-proof__bar span {
  margin-left: 10px;
  flex: 1;
  padding: 4px 12px;
  font-size: var(--c1-t-xs);
  color: var(--c1-oninv-muted);
  background: rgba(4, 8, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--c1-r-pill);
}
.c1-proof__browser img { display: block; width: 100%; height: auto; }

.c1-proof__honesty {
  margin-top: var(--c1-sp-5);
  padding: var(--c1-sp-5) var(--c1-sp-6);
  border: 1px solid rgba(199, 123, 250, 0.28);
  border-radius: var(--c1-r-md);
  background: rgba(199, 123, 250, 0.05);
}
.c1-proof__honesty h3 {
  margin: 0 0 var(--c1-sp-2);
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-body);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-proof__honesty p {
  margin: 0;
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv);
}

/* --- right · metrics ------------------------------------------------------- */
.c1-proof__metric {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 6px 16px;
  align-items: start;
  padding: var(--c1-sp-5) var(--c1-sp-5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--c1-r-lg);
  background: rgba(255, 255, 255, 0.045);
}
.c1-proof__metric + .c1-proof__metric { margin-top: var(--c1-sp-4); }
.c1-proof__micon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--c1-r-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--c1-orchid);
}
.c1-proof__micon svg { width: 22px; height: 22px; }
.c1-proof__mtext { display: grid; gap: 2px; }
.c1-proof__mnum {
  font-family: var(--c1-font-head);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: var(--c1-w-bold);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c1-oninv-strong);
  font-variant-numeric: tabular-nums;
}
.c1-proof__mnum em { font-style: normal; font-size: 0.6em; color: var(--c1-oninv-muted); margin-right: 2px; }
.c1-proof__mlabel {
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-tight);
  color: var(--c1-oninv);
}
.c1-proof__spark {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 4px;
}
[data-proof].is-live .c1-proof__sparkline { animation: c1SparkDraw 1.2s var(--c1-ease-out); }
@keyframes c1SparkDraw { from { stroke-dasharray: 1; stroke-dashoffset: 1; } to { stroke-dasharray: 1; stroke-dashoffset: 0; } }

/* --- right · the cost of invisibility -------------------------------------- */
.c1-proof__loss {
  margin-top: var(--c1-sp-5);
  padding: var(--c1-sp-6);
  border-radius: var(--c1-r-lg);
  background: rgba(228, 101, 92, 0.07);
  border: 1px solid rgba(228, 101, 92, 0.3);
}
.c1-proof__loss-tag {
  margin: 0 0 var(--c1-sp-4);
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-micro);
  font-weight: var(--c1-w-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F0917F;
}
.c1-proof__lrow {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.c1-proof__lrow + .c1-proof__lrow { margin-top: var(--c1-sp-3); }
.c1-proof__licon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c1-oninv);
}
.c1-proof__licon svg { width: 17px; height: 17px; }
.c1-proof__lrow p {
  margin: 0;
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv);
}
.c1-proof__lrow b {
  font-family: var(--c1-font-head);
  font-size: 1.05rem;
  color: var(--c1-oninv-strong);
  font-variant-numeric: tabular-nums;
}

.c1-proof__loss-big {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: var(--c1-sp-5);
  padding-top: var(--c1-sp-5);
  border-top: 1px solid rgba(228, 101, 92, 0.25);
}
.c1-proof__loss-amount {
  font-family: var(--c1-font-head);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: var(--c1-w-bold);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(94deg, #F0917F 10%, #E4655C 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.c1-proof__loss-per {
  flex: 1 1 200px;
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-tight);
  color: var(--c1-oninv);
}
.c1-proof__loss-math {
  margin: var(--c1-sp-4) 0 0;
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv);
}
.c1-proof__loss-math b { color: var(--c1-oninv-strong); }

.c1-proof__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--c1-sp-4) var(--c1-sp-6);
  margin-top: var(--c1-sp-6);
}
.c1-proof__calclink {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-sm);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(93, 224, 175, 0.4);
  padding-bottom: 2px;
  transition: color var(--c1-dur-fast) var(--c1-ease), border-color var(--c1-dur-fast) var(--c1-ease);
}
.c1-proof__calclink:hover { color: var(--c1-oninv-strong); border-color: rgba(255, 255, 255, 0.5); }
.c1-proof__calclink:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); border-radius: 4px; }

.c1-proof__disclaim {
  margin: clamp(2rem, 4.5vh, 3rem) auto 0;
  max-width: 52rem;
  text-align: center;
  font-size: var(--c1-t-xs);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv-muted);
}

@media (max-width: 1023px) {
  .c1-proof__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 767px) {
  .c1-proof { padding-block: clamp(3rem, 9vw, 4rem); }
  .c1-proof__head { margin-bottom: 1.75rem; }
  .c1-proof__metric { padding: var(--c1-sp-4); }
  .c1-proof__loss { padding: var(--c1-sp-5); }
  .c1-proof__ctas .c1-btn { width: 100%; }
}

/* ==========================================================================
   HOME SECTION 6 · THE GROWTH PATH — TWO SERVICE CARDS (dark, aurora)
   Aurora-pricing card language in brand colours: dark cards, hover lift with
   a blurred aurora wash behind, corner ribbon on the featured card. No blur
   surfaces (glass budget stays at 3) — tints only.
   ========================================================================== */

.c1-serv {
  position: relative;
  overflow: hidden;
  /* client-locked: melts seamlessly out of the proof section's purple, through
     maroon into deep orange, then down to black — no visible seam */
  background: linear-gradient(180deg, #2A1150 0%, #4A2136 8%, #7A3018 16%, #CC5F13 26%, #A24309 46%, #351805 72%, #0B0603 100%);
  padding-block: var(--c1-section-y-lg);
}
.c1-serv__bg { position: absolute; inset: 0; opacity: 0.2; pointer-events: none; }
.c1-serv__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.c1-serv__blob--a {
  width: min(44vw, 600px); height: min(44vw, 600px);
  bottom: 10%; left: 6%;
  background: rgba(224, 104, 24, 0.5);
  animation: c1AuroraA 24s var(--c1-ease-inout) infinite alternate;
}
.c1-serv__blob--b {
  width: min(38vw, 500px); height: min(38vw, 500px);
  bottom: 4%; right: 8%;
  background: rgba(240, 145, 60, 0.4);
  animation: c1AuroraB 30s var(--c1-ease-inout) infinite alternate;
}

.c1-serv__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--c1-gutter);
}

.c1-serv__head {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5.5vh, 3.5rem);
}
/* orange-section variant of the shared pill */
.c1-serv__pill {
  background: rgba(12, 8, 4, 0.72);
  border-color: rgba(0, 0, 0, 0.35);
  color: #FFE8D2;
}
.c1-serv__pill svg { color: #F0913C; }
.c1-serv__head .c1-h2 { margin: 0 0 var(--c1-sp-4); }
/* client-locked: header text stays WHITE on the orange top */
.c1-serv .c1-serv__head .c1-h2 { color: #FFFFFF; }
.c1-serv__sub { max-width: 38rem; }
.c1-serv .c1-serv__sub { color: #FFFFFF; }

.c1-serv__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 62rem;
  margin-inline: auto;
}

.c1-serv__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--c1-r-xl);
  background: rgba(10, 7, 4, 0.78);          /* black glass, warm cast */
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 20px 60px -14px rgba(0, 0, 0, 0.7);
  transition: transform var(--c1-dur-slow) var(--c1-ease-out),
              border-color var(--c1-dur-base) var(--c1-ease);
}
.c1-serv__card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(240, 145, 60, 0.45);
}
/* the aurora wash that breathes in behind the content on hover */
.c1-serv__card::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: linear-gradient(45deg, #F0913C, #C2560E);
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.5s var(--c1-ease);
  pointer-events: none;
}
.c1-serv__card--featured::before { background: linear-gradient(45deg, #E06818, #8A3D0A); }
.c1-serv__card:hover::before { opacity: 0.22; }

.c1-serv__corner {
  position: absolute;
  top: 0; right: 0;
  z-index: 2;
  padding: 7px 15px;
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-micro);
  font-weight: var(--c1-w-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B1020;
  background: #F0913C;
  border-radius: 0 var(--c1-r-xl) 0 12px;
}

.c1-serv__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
}
.c1-serv__name {
  margin: var(--c1-sp-4) 0 0;
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-h3);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-serv__desc {
  margin: var(--c1-sp-2) 0 0;
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv);
}

.c1-serv__list {
  list-style: none;
  margin: var(--c1-sp-6) 0 var(--c1-sp-8);
  padding: 0;
  display: grid;
  gap: var(--c1-sp-4);
}
.c1-serv__list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  font-size: var(--c1-t-sm);
  color: var(--c1-oninv);
}
.c1-serv__ico {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(240, 145, 60, 0.16), rgba(240, 145, 60, 0.04));
  border: 1px solid rgba(240, 145, 60, 0.3);
  color: #F0913C;
}
.c1-serv__ico svg { width: 17px; height: 17px; }

.c1-serv__cta { width: 100%; margin-top: auto; }

/* section-scoped recolours: badge goes black, shiny CTA goes orange/black */
.c1-serv .c1-badge--available {
  background-color: #0D0A06;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.c1-serv .c1-badge--available .c1-badge__icon { color: #F0913C; }

.c1-serv .c1-btn--shiny {
  --shiny-bg: #0A0703;
  --shiny-bg-subtle: #2A1608;
  --shiny-highlight: #E8721C;
  --shiny-highlight-subtle: #F5A65B;
  box-shadow: inset 0 0 0 1px var(--shiny-bg-subtle),
              0 14px 34px -16px rgba(232, 114, 28, 0.6);
}

@media (max-width: 900px) {
  .c1-serv__grid { grid-template-columns: minmax(0, 1fr); max-width: 30rem; }
}
@media (max-width: 767px) {
  .c1-serv { padding-block: clamp(3rem, 9vw, 4rem); }
  .c1-serv__head { margin-bottom: 1.75rem; }
  .c1-serv__blob--b { display: none; }      /* one less blurred layer on phones */
}

/* ==========================================================================
   HOME SECTION 7 · HOW IT WORKS — display-card stack + swapping visual
   Port of the display-cards fan: skewed stacked cards, grayscale backs,
   hover/tap lifts a card and its step image settles into the right panel
   with the same skew-release feel. Brand violet/blue.
   ========================================================================== */

.c1-how {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0B0603 0%, #0A0918 24%, var(--c1-ink-900) 62%);
  padding-top: clamp(2.25rem, 3.5vw, 4rem);
  padding-bottom: var(--c1-section-y-lg);
}
.c1-how__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--c1-gutter);
}
.c1-how__head {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(3.25rem, 8vh, 5.5rem);
}
/* client-locked: lighter headline with a slow animated gradient sheen */
.c1-how__head .c1-h2 {
  font-weight: var(--c1-w-medium);
  background: linear-gradient(100deg, #EDEAFB 0%, #C9B8FF 28%, #9FE8D0 52%, #C9B8FF 74%, #EDEAFB 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: c1TextSheen 8s linear infinite;
}
@keyframes c1TextSheen { to { background-position: -260% 0; } }

.c1-how__grid {
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);      /* deliberate air, tuned to the smaller visual */
  max-width: 76rem;
  margin-inline: auto;
}

/* --- the fan of cards ------------------------------------------------------ */
.c1-how__stack {
  display: grid;
  grid-template-areas: "stack";
  place-items: start center;
  padding: 3.75rem 0 9.5rem 0;      /* headroom for the hover rise + fan spread */
}
.c1-how__card {
  grid-area: stack;
  position: relative;
  z-index: calc(1 + var(--i));
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(30rem, 100%);
  padding: 21px 23px;
  text-align: left;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(13, 10, 32, 0.85);
  color: var(--c1-oninv);
  cursor: pointer;
  touch-action: manipulation;
  transform: skewY(-8deg) translate(calc(var(--i) * 3.6rem), calc(var(--i) * 3.9rem));
  filter: grayscale(1);
  transition: transform 0.7s var(--c1-ease-out),
              filter 0.7s var(--c1-ease),
              border-color 0.4s var(--c1-ease),
              background-color 0.4s var(--c1-ease);
}
/* right-edge fade so the stack reads layered (matches the section base) */
.c1-how__card::after {
  content: "";
  position: absolute;
  right: -2px; top: -5%;
  height: 110%;
  width: 55%;
  border-radius: inherit;
  background: linear-gradient(to left, #070B1E 8%, transparent);
  pointer-events: none;
  transition: opacity 0.5s var(--c1-ease);
}
.c1-how__card:hover,
.c1-how__card.is-active {
  z-index: 10;                       /* the risen card always reads in full */
  filter: grayscale(0);
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(19, 14, 44, 0.97);
  transform: skewY(-8deg) translate(calc(var(--i) * 3.6rem), calc(var(--i) * 3.9rem - 3.2rem));
}
.c1-how__card:hover::after,
.c1-how__card.is-active::after { opacity: 0; }
.c1-how__card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), var(--c1-ring-focus);
  filter: grayscale(0);
}

.c1-how__cardhead { display: flex; align-items: center; gap: 10px; }
.c1-how__ico {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: rgba(124, 77, 251, 0.2);
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: var(--c1-orchid);
}
.c1-how__ico svg { width: 16px; height: 16px; }
.c1-how__title {
  font-family: var(--c1-font-head);
  font-size: 1.2rem;
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-how__desc {
  font-size: var(--c1-t-body);
  line-height: var(--c1-lh-tight);
  color: var(--c1-oninv);
}
.c1-how__meta {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-micro);
  font-weight: var(--c1-w-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c1-oninv-muted);
}
.c1-how__card:hover .c1-how__meta,
.c1-how__card.is-active .c1-how__meta { color: var(--c1-mint); }

/* --- the swapping visual --------------------------------------------------- */
.c1-how__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 32rem;              /* keeps the visual balanced against the cards */
  justify-self: center;
  border-radius: var(--c1-r-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--c1-glass-shadow);
}
.c1-how__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(26px) skewY(-3deg);
  visibility: hidden;
  transition: opacity 0.55s var(--c1-ease-out),
              transform 0.55s var(--c1-ease-out),
              visibility 0s linear 0.55s;
}
.c1-how__panel.is-active {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}
.c1-how__panel img,
.c1-how__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c1-how__fallback { display: none; }
.c1-how__panel.no-img img { display: none; }
.c1-how__panel.no-img .c1-how__fallback { display: block; }

/* --- responsive: straight-facing stack, press to rise ---------------------- */
@media (max-width: 900px) {
  .c1-how__grid { grid-template-columns: minmax(0, 1fr); gap: 1rem; max-width: 30rem; }
  .c1-how__stage { order: -1; aspect-ratio: 16 / 10; }
  /* no fan on phones — holding a card to read it isn't practical, so every
     card sits fully visible and a press just lifts it */
  .c1-how__stack {
    grid-template-areas: none;
    grid-auto-flow: row;
    gap: 12px;
    padding: 0;
    place-items: stretch;
  }
  .c1-how__card {
    grid-area: auto;
    width: 100%;
    padding: 14px 16px;
    transform: none;
    filter: grayscale(0);          /* all readable at rest */
  }
  .c1-how__card::after { display: none; }   /* fade only existed for the overlap */
  .c1-how__card:hover,
  .c1-how__card.is-active { transform: none; }
  .c1-how__card.is-active {
    border-color: rgba(167, 139, 250, 0.55);
    background: rgba(19, 14, 44, 0.95);
  }
  /* finger down = the same lift, just without needing to hold it to read */
  .c1-how__card.is-pressed,
  .c1-how__card.is-pressed.is-active {
    transform: translateY(-6px);
    background: rgba(19, 14, 44, 0.99);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.65);
  }
  .c1-how__desc { font-size: var(--c1-t-xs); }
}
@media (max-width: 767px) {
  .c1-how { padding-block: clamp(3rem, 9vw, 4rem); }
  .c1-how__head { margin-bottom: 1.5rem; }
}

/* ==========================================================================
   HOME SECTION 10 · ABOUT — team showcase (two people, hover-synced)
   Photos left (offset like the reference, auto-upgrade slots until the real
   pictures land), copy-deck About Strip text + member rows + stat row right.
   ========================================================================== */

.c1-about {
  position: relative;
  background: var(--c1-ink-900);
  padding-block: var(--c1-section-y-lg);
}
.c1-about__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--c1-gutter);
}
.c1-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: clamp(2.5rem, 5.5vw, 5.5rem);
  align-items: center;
}

/* --- photos ---------------------------------------------------------------- */
.c1-about__photos {
  display: flex;
  align-items: flex-start;   /* stretch would override the aspect-ratio */
  gap: clamp(16px, 2.6vw, 30px);
  justify-content: center;
}
.c1-about__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--c1-r-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, var(--c1-ink-700), var(--c1-ink-600));
  cursor: pointer;
  transition: opacity 0.4s var(--c1-ease), border-color 0.3s var(--c1-ease),
              transform 0.4s var(--c1-ease-out);
}
/* both people get identical framing — only the vertical offset differs */
.c1-about__photo--a,
.c1-about__photo--b { width: min(48%, 300px); aspect-ratio: 5 / 6; }
.c1-about__photo--b { margin-top: 3rem; }
.c1-about__photo img:first-child {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) brightness(0.8);
  transition: filter 0.5s var(--c1-ease);
}
.c1-about__photo.no-img img:first-child { display: none; }
.c1-about__ph {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.c1-about__photo.no-img .c1-about__ph { display: flex; }
.c1-about__ph img { opacity: 0.55; }
.c1-about__ph b {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-micro);
  font-weight: var(--c1-w-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c1-oninv-muted);
}
/* hover sync states (driven by JS on both photos and rows) */
.c1-about__photo.is-hot {
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateY(-4px);
}
.c1-about__photo.is-hot img:first-child { filter: grayscale(0) brightness(1); }
.c1-about__photo.is-dim { opacity: 0.55; }

/* --- text ------------------------------------------------------------------ */
.c1-about__text .c1-h2 { margin: 0 0 var(--c1-sp-5); }
.c1-about__body {
  margin: 0 0 var(--c1-sp-6);
  font-size: var(--c1-t-body);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv);
  max-width: 60ch;
}

.c1-about__team { display: grid; gap: var(--c1-sp-4); }
.c1-about__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 4px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s var(--c1-ease);
}
.c1-about__row.is-hot { opacity: 1; }
.c1-about__row.is-dim { opacity: 0.5; }
.c1-about__row:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); border-radius: var(--c1-r-sm); }
.c1-about__bar {
  width: 24px; height: 12px;
  flex: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.25);
  transform: scaleX(0.66);
  transform-origin: left center;
  transition: transform 0.3s var(--c1-ease-out), background 0.3s var(--c1-ease);
}
.c1-about__row.is-hot .c1-about__bar {
  transform: scaleX(1);
  background: var(--c1-grad-action);
}
.c1-about__who { display: grid; gap: 3px; }
.c1-about__name {
  font-family: var(--c1-font-head);
  font-size: 1.1rem;
  font-weight: var(--c1-w-semibold);
  letter-spacing: -0.01em;
  color: var(--c1-oninv-strong);
  line-height: 1;
}
.c1-about__role {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-micro);
  font-weight: var(--c1-w-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c1-oninv-muted);
}

.c1-about__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--c1-sp-6);           /* even on both axes */
  margin: var(--c1-sp-8) 0 0;
  padding-top: var(--c1-sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.c1-about__stats dt {
  display: grid;
  justify-items: start;
  gap: 11px;                     /* icon sits above the label, evenly */
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-body);
  font-weight: var(--c1-w-semibold);
  line-height: var(--c1-lh-tight);
  color: var(--c1-oninv-strong);
}
.c1-about__sicon {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--c1-orchid);
}
.c1-about__sicon svg { width: 19px; height: 19px; }
.c1-about__stats dd {
  margin: 5px 0 0;
  font-size: var(--c1-t-xs);
  color: var(--c1-oninv-muted);
}

@media (max-width: 900px) {
  .c1-about__grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .c1-about__photos { justify-content: flex-start; }
  .c1-about__photo--b { margin-top: 2rem; }
  .c1-about__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--c1-sp-6); }
}
@media (max-width: 767px) {
  /* sits closer to the section above; keeps its own breathing room below */
  .c1-about {
    padding-top: clamp(1.5rem, 4.5vw, 2.25rem);
    padding-bottom: clamp(3rem, 9vw, 4rem);
  }
}

/* ==========================================================================
   HOME SECTION 12 · BOOKING — YOUR FREE AUDIT (dark, violet glow)
   Two paths: low-commitment call-back card (sign-in-card language: dark glass,
   travelling light beam) and the Cal.com inline embed. Plus the contact strip
   and the floating call/WhatsApp buttons.
   ========================================================================== */

.c1-book {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c1-ink-900) 0%, #0A0A2E 55%, #120C38 100%);
  padding-block: var(--c1-section-y-lg);
}
.c1-book__bg { position: absolute; inset: 0; pointer-events: none; }
.c1-book__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.c1-book__glow--a {
  width: min(50vw, 720px); height: min(34vw, 460px);
  top: -12%; left: 50%;
  transform: translateX(-50%);
  background: rgba(124, 77, 251, 0.18);
}
.c1-book__glow--b {
  width: min(40vw, 560px); height: min(40vw, 560px);
  bottom: -18%; right: -10%;
  background: rgba(74, 99, 245, 0.14);
}

.c1-book__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--c1-gutter);
}
.c1-book__head {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vh, 3.25rem);
}
.c1-book__head .c1-h2 { margin: 0 0 var(--c1-sp-4); }
.c1-book__sub { max-width: 46rem; }
.c1-book__gets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: var(--c1-sp-6) 0 0;
  padding: 0;
  max-width: 56rem;
}
.c1-book__gets li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: var(--c1-r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--c1-t-xs);
  font-weight: var(--c1-w-medium);
  color: var(--c1-oninv);
}
.c1-book__gets svg { width: 13px; height: 13px; color: var(--c1-mint); flex: none; }

.c1-book__grid {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  max-width: 72rem;
  margin-inline: auto;
}

/* --- left · the call-back card --------------------------------------------- */
.c1-book__card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border-radius: var(--c1-r-xl);
  background: rgba(8, 7, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), var(--c1-glass-shadow-lg);
}
/* travelling light beam along the top edge (the sign-in card's signature) */
.c1-book__beam {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), rgba(167, 139, 250, 0.9), transparent);
  filter: blur(1px);
  animation: c1Beam 3.2s var(--c1-ease-inout) infinite;
  pointer-events: none;
}
@keyframes c1Beam { 0% { transform: translateX(-110%); } 60%, 100% { transform: translateX(260%); } }

.c1-book__cardtitle {
  margin: 0 0 var(--c1-sp-2);
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-h3);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-book__cardsub {
  margin: 0 0 var(--c1-sp-6);
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv);
}

#c1-lead-form { display: grid; gap: 12px; }
.c1-book__hp { position: absolute; left: -9999px; opacity: 0; }
.c1-book__field {
  position: relative;
  display: flex;
  align-items: center;
}
.c1-book__ficon {
  position: absolute;
  left: 14px;
  display: grid;
  place-items: center;
  color: var(--c1-oninv-muted);
  pointer-events: none;
}
.c1-book__ficon svg { width: 16px; height: 16px; }
.c1-book__field input,
.c1-book__field select {
  width: 100%;
  padding: 13px 14px 13px 42px;
  font-family: var(--c1-font-body);
  font-size: var(--c1-t-sm);
  color: var(--c1-oninv-strong);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--c1-r-md);
  transition: border-color var(--c1-dur-fast) var(--c1-ease),
              background-color var(--c1-dur-fast) var(--c1-ease),
              box-shadow var(--c1-dur-fast) var(--c1-ease);
  appearance: none;
}
.c1-book__field input::placeholder { color: var(--c1-oninv-muted); opacity: 1; }
.c1-book__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8FB4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.c1-book__field select option { background: #0D1435; color: #fff; }
.c1-book__field input:focus-visible,
.c1-book__field select:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--c1-action);
  box-shadow: var(--c1-ring-focus);
}
.c1-book__field:focus-within .c1-book__ficon { color: var(--c1-oninv-strong); }

.c1-book__submit { width: 100%; margin-top: 4px; }
.c1-book__or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0;
}
.c1-book__or i { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.09); }
.c1-book__or span { font-size: var(--c1-t-xs); color: var(--c1-oninv-muted); }
.c1-book__wabtn { width: 100%; }
.c1-book__note {
  margin: var(--c1-sp-2) 0 0;
  text-align: center;
  font-size: var(--c1-t-xs);
  color: var(--c1-oninv-muted);
}
.c1-book__status {
  margin: 4px 0 0;
  min-height: 1.2em;
  text-align: center;
  font-size: var(--c1-t-xs);
  font-weight: var(--c1-w-medium);
  color: #F0917F;
}

.c1-book__done {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--c1-sp-3);
  padding: var(--c1-sp-8) var(--c1-sp-4);
}
.c1-book__doneicon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(93, 224, 175, 0.14);
  border: 1px solid rgba(93, 224, 175, 0.4);
  color: var(--c1-mint);
}
.c1-book__doneicon svg { width: 26px; height: 26px; }
.c1-book__done b {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-h4);
  color: var(--c1-oninv-strong);
}
.c1-book__done p { margin: 0; font-size: var(--c1-t-sm); color: var(--c1-oninv); max-width: 30ch; }
.c1-book__done a {
  font-family: var(--c1-font-head);
  font-weight: var(--c1-w-semibold);
  font-size: var(--c1-t-sm);
  color: var(--c1-mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(93, 224, 175, 0.4);
  padding-bottom: 2px;
}

/* --- right · the calendar --------------------------------------------------- */
.c1-book__calwrap {
  border-radius: var(--c1-r-xl);
  overflow: hidden;
  background: #0B0F26;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--c1-glass-shadow-lg);
}
.c1-book__calhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.c1-book__calhead b {
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-body);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-book__calhead span { font-size: var(--c1-t-xs); color: var(--c1-oninv-muted); }
.c1-book__cal {
  height: clamp(540px, 66vh, 660px);
  overflow: auto;
}
.c1-book__assure {
  margin: 0;
  padding: 12px 20px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: var(--c1-t-xs);
  color: var(--c1-oninv-muted);
}

/* --- floating quick-contact buttons ----------------------------------------- */
.c1-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: var(--c1-z-sticky);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c1-fab__btn {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.55);
  transition: transform var(--c1-dur-base) var(--c1-ease-out),
              box-shadow var(--c1-dur-base) var(--c1-ease);
}
.c1-fab__btn:hover { transform: translateY(-3px) scale(1.05); }
.c1-fab__btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.85), var(--c1-ring-focus); }
.c1-fab__btn svg { width: 26px; height: 26px; }
.c1-fab__btn--wa { background: var(--c1-whatsapp); color: #fff; }
.c1-fab__btn--wa:hover { background: var(--c1-whatsapp-dark); }

/* call button: dark glass body with the hero button's light travelling
   around the rim (same @property angle + keyframe as .c1-btn--shiny) */
.c1-fab__btn--call {
  --gradient-angle: 0deg;
  border: 2px solid transparent;
  /* ink glyph, not white: measured 7.95:1 → 4.70:1 across these orange stops,
     where white would only reach 2.4:1 → 4.0:1 */
  color: #0B1020;
  background:
    linear-gradient(150deg, #F0913C 0%, #E8721C 50%, #CC5F13 100%) padding-box,
    conic-gradient(from var(--gradient-angle),
      rgba(124, 77, 251, 0.15) 0%, #7C4DFB 10%, #FFFFFF 17%, #C77BFA 24%,
      rgba(124, 77, 251, 0.15) 40%, rgba(124, 77, 251, 0.15) 100%) border-box;
  box-shadow: 0 10px 28px -8px rgba(108, 63, 245, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: c1GradientAngle 3.6s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .c1-fab__btn--call { animation: none; }
}

@media (max-width: 1023px) {
  .c1-book__grid { grid-template-columns: minmax(0, 1fr); max-width: 36rem; }
}
@media (max-width: 767px) {
  .c1-book { padding-block: clamp(3rem, 9vw, 4rem); }
  .c1-book__head { margin-bottom: 1.75rem; }
  .c1-book__cal { height: min(72vh, 640px); }
  /* phones already have WhatsApp in the sticky bar — call only */
  .c1-fab__btn--wa { display: none; }
  .c1-fab { right: 14px; bottom: calc(84px + env(safe-area-inset-bottom)); }
  .c1-fab__btn { width: 52px; height: 52px; }
  .c1-fab__btn svg { width: 25px; height: 25px; }
}

/* ==========================================================================
   FOOTER — permanent
   Rounded card floating on the ink base. The infinity mark replaces the
   reference's big wordmark: a dim vector outline that lights up in brand
   gradient wherever the cursor passes (desktop), and draws itself in on
   scroll above the links (mobile).
   ========================================================================== */

.c1-footer {
  background: linear-gradient(180deg, #120C38 0%, var(--c1-ink-900) 40%);
  padding: clamp(1rem, 2vw, 2rem);
}
.c1-footer__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--c1-r-2xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #06091B;
}
.c1-footer__bgglow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(125% 125% at 50% 8%, rgba(4, 8, 28, 0.4) 48%, rgba(124, 77, 251, 0.22) 100%);
  pointer-events: none;
}
.c1-footer__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 3.5rem) 0;
}

.c1-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.25fr 1fr 1.6fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
}

/* brand */
.c1-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: var(--c1-sp-4);
  border-radius: var(--c1-r-sm);
}
.c1-footer__logo:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); }
.c1-footer__logo img { display: block; width: 40px; height: auto; }
.c1-footer__tagline {
  margin: 0;
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv-muted);
  max-width: 34ch;
}

/* link columns */
.c1-footer__col h4 {
  margin: 0 0 var(--c1-sp-5);
  font-family: var(--c1-font-head);
  font-size: var(--c1-t-body);
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
}
.c1-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--c1-sp-3);
}
.c1-footer__col a,
.c1-footer__col span {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-size: var(--c1-t-sm);
  line-height: var(--c1-lh-tight);
  color: var(--c1-oninv-muted);
  text-decoration: none;
  transition: color var(--c1-dur-fast) var(--c1-ease);
}
.c1-footer__col a:hover { color: var(--c1-orchid); }
.c1-footer__col a:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); border-radius: 4px; }
.c1-footer__col svg { width: 15px; height: 15px; flex: none; margin-top: 1px; color: var(--c1-orchid); }
.c1-footer__col a[href^="https://wa.me"] svg { color: var(--c1-whatsapp); }
.c1-footer__soon {
  font-family: var(--c1-font-head);
  font-style: normal;
  font-size: var(--c1-t-micro);
  font-weight: var(--c1-w-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c1-amber-bright);
  border: 1px solid rgba(224, 163, 60, 0.35);
  border-radius: var(--c1-r-pill);
  padding: 2px 7px;
  margin-left: 2px;
}

/* local SEO + long-form SEO copy */
.c1-footer__areas,
.c1-footer__seo,
.c1-footer__disclaim {
  margin: 0;
  font-size: var(--c1-t-xs);
  line-height: var(--c1-lh-body);
  color: var(--c1-oninv-faint);
}
.c1-footer__areas {
  padding-top: var(--c1-sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.c1-footer__seo { margin-top: var(--c1-sp-4); }

/* bottom row */
.c1-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--c1-sp-4);
  margin-top: var(--c1-sp-6);
  padding-top: var(--c1-sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.c1-footer__social { display: flex; gap: 14px; }
.c1-footer__social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c1-oninv);
  transition: color var(--c1-dur-fast) var(--c1-ease),
              border-color var(--c1-dur-fast) var(--c1-ease),
              transform var(--c1-dur-base) var(--c1-ease-out);
}
.c1-footer__social a:hover {
  color: var(--c1-orchid);
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-2px);
}
.c1-footer__social a:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,.85), var(--c1-ring-focus); }
.c1-footer__social svg { width: 18px; height: 18px; }
.c1-footer__copy {
  margin: 0;
  font-size: var(--c1-t-xs);
  color: var(--c1-oninv-muted);
}
.c1-footer__copy span { color: var(--c1-oninv-faint); }
.c1-footer__disclaim {
  padding: var(--c1-sp-5) 0 clamp(1rem, 2vw, 1.5rem);
  max-width: 78ch;
}

/* ---- the mark — opens the footer -------------------------------------------
   The real logo file drives the silhouette (as a CSS mask), so the shape is
   exact. Behind it a conic gradient of brand colour rotates, which reads as a
   light travelling around the mark and returning to its start. */
.c1-footer__marktop {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 4vw, 3.25rem) var(--c1-gutter) clamp(0.5rem, 1.5vw, 1rem);
}
.c1-fmark {
  --fmark-angle: 0deg;
  position: relative;
  display: block;
  width: clamp(140px, 17vw, 250px);
  aspect-ratio: 900 / 430;              /* the trimmed mark's true ratio */
  border-radius: var(--c1-r-sm);
}
.c1-fmark:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.85), var(--c1-ring-focus); }

.c1-fmark__shape,
.c1-fmark__halo {
  position: absolute;
  inset: 0;
  -webkit-mask: url(../img/logos/c1-logo-mark-mask.png) no-repeat center / contain;
          mask: url(../img/logos/c1-logo-mark-mask.png) no-repeat center / contain;
}
/* the mark itself */
.c1-fmark__shape {
  background:
    conic-gradient(from var(--fmark-angle),
      #2D2A98 0deg, #7C4DFB 70deg, #FFFFFF 105deg, #C77BFA 150deg,
      #7C4DFB 220deg, #2D2A98 300deg, #2D2A98 360deg);
  animation: c1FmarkOrbit 5.5s linear infinite;
}
/* a soft duplicate underneath doing the glowing */
.c1-fmark__halo {
  background: conic-gradient(from var(--fmark-angle), #7C4DFB, #C77BFA, #A78BFA, #7C4DFB);
  filter: blur(14px);
  opacity: 0.5;
  animation: c1FmarkOrbit 5.5s linear infinite;
  transition: opacity var(--c1-dur-slow) var(--c1-ease);
}
.c1-fmark:hover .c1-fmark__halo { opacity: 0.95; }
@keyframes c1FmarkOrbit { to { --fmark-angle: 360deg; } }

/* staged entry — armed by JS only, so no-JS/reduced-motion shows everything */
[data-footer].is-armed .c1-footer__marktop { opacity: 0; transform: translateY(14px) scale(0.96); }
[data-footer].is-in .c1-footer__marktop {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--c1-ease-out), transform 0.8s var(--c1-ease-out);
}

@media (max-width: 1099px) {
  .c1-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c1-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .c1-footer { padding: 10px; }
  .c1-footer__grid { grid-template-columns: minmax(0, 1fr); gap: var(--c1-sp-8); }
  .c1-footer__bottom { justify-content: center; text-align: center; }

  /* mobile: the mark leads, then the links settle in behind it */
  .c1-fmark { width: clamp(150px, 46vw, 200px); }
  [data-footer].is-armed .c1-footer__inner { opacity: 0; transform: translateY(20px); }
  [data-footer].is-in .c1-footer__inner {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--c1-ease-out) 0.5s, transform 0.7s var(--c1-ease-out) 0.5s;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-footer].is-armed .c1-footer__marktop,
  [data-footer].is-armed .c1-footer__inner { opacity: 1; transform: none; }
  .c1-fmark__shape, .c1-fmark__halo { animation: none; }
}

/* ==========================================================================
   12 · MOBILE STICKY ACTION BAR  (copy deck: GLOBAL · NAVIGATION BAR)
   ========================================================================== */

.c1-stickybar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--c1-z-sticky);
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(4, 8, 28, 0.92);
  -webkit-backdrop-filter: var(--c1-glass-blur);
  backdrop-filter: var(--c1-glass-blur);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.c1-stickybar__btn { flex: 1; font-size: var(--c1-t-xs); --_btn-py: 0.78rem; --_btn-px: 0.6rem; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .c1-nav { background: rgba(4, 8, 28, 0.96); }
  .c1-mnav { background: rgba(4, 8, 28, 0.99); }
  .c1-stickybar { background: rgba(4, 8, 28, 0.97); }
}

/* ==========================================================================
   13 · RESPONSIVE
   ========================================================================== */

/* --- desktop chrome guards ------------------------------------------------- */
@media (min-width: 1100px) {
  .c1-mnav { display: none; }              /* sheet can never survive into desktop */
  html.c1-menu-locked { overflow: auto; }  /* …and neither can its scroll lock */
}

/* --- 1100–1535 · re-anchor the right rail so nothing clips at the edge ----
   (keeps the client-locked tops; only the horizontal overhang tightens) */
@media (max-width: 1535px) and (min-width: 1100px) {
  .c1-hcard--gmb    { left: auto; right: -4%; }
  .c1-hcard--growth { left: auto; right: -5%; }
  .c1-hcard--wa     { left: auto; right: -2%; }
}

/* --- ≤1099 · tablet: burger nav, stacked hero, 5 cards --------------------- */
@media (max-width: 1099px) {
  .c1-nav__menu { display: none; }
  .c1-nav__burger { display: flex; }
  .c1-nav__inner { height: 64px; }
  .c1-nav__cta { margin-left: auto; }
  .c1-nav__mark { width: 34px; }
  .c1-nav__word { font-size: 1.1rem; }

  .c1-hero { padding-top: clamp(96px, 14vh, 120px); min-height: 0; }
  .c1-hero__inner { grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 6vh, 4rem); }
  .c1-hero__copy { justify-items: center; text-align: center; }
  .c1-hero__sub { max-width: 58ch; }
  .c1-hero__ctas { justify-content: center; }

  .c1-hero__stage { max-width: 660px; margin-inline: auto; width: 100%; padding-top: 152px; }
  .c1-hcard--ads { display: none; }
  .c1-hcard--site { left: -1%; top: 0; }
  .c1-hcard--cal { left: 40%; top: auto; bottom: -2%; }
  .c1-hcard--gmb { left: auto; right: -1%; top: 0; }
  .c1-hcard--growth { left: auto; right: -1%; top: 48%; }
  .c1-hcard--wa { left: auto; right: 0; top: auto; bottom: 2%; }
  .c1-hcard--live { left: 2%; top: 48%; }
}

/* --- ≤767 · mobile: 3 cards, tight stage, sticky bar ----------------------- */
@media (max-width: 767px) {
  .c1-nav__cta { display: none; }          /* CTA lives in menu + sticky bar */
  .c1-nav__inner { height: 60px; gap: var(--c1-sp-4); }

  .c1-hero { padding-top: 88px; padding-bottom: 1.25rem; }
  .c1-hero__eyebrow { font-size: 0.66rem; letter-spacing: 0.14em; flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .c1-hero__title { font-size: clamp(1.92rem, 8.2vw, 2.6rem); }
  .c1-hero__sub { font-size: 1.02rem; }
  .c1-hero__ctas { width: 100%; flex-direction: column; }
  .c1-hero__ctas .c1-btn { width: 100%; }
  .c1-hero__trust { font-size: var(--c1-t-xs); }

  /* image sits straight under the trust line; cards become a bento grid below */
  .c1-hero__stage { padding-top: 0.75rem; }
  .c1-hero__people { width: 100%; }

  .c1-hero__inner { gap: 1rem; }        /* image hugs the trust line */

  .c1-hero__cards {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 0.85rem;
  }
  .c1-hcard {
    position: static;
    width: auto;
    transform: none;
  }
  .c1-hcard__inner {
    height: 100%;
    padding: 10px 11px;
    animation: none;                    /* no float inside a grid */
  }
  .c1-hcard--ads { display: block; }    /* undo the tablet hide — 6 cards = 3 clean rows */
  .c1-hcard--ads .c1-ads__meta { white-space: normal; }

  /* the pill is the ONLY card floating on the photo */
  .c1-hcard--live {
    position: absolute;
    left: 4%;
    top: clamp(120px, 40vw, 200px);
    width: auto;
    z-index: 3;
  }
  .c1-hcard--live .c1-hcard__inner--pill {
    background: rgba(13, 20, 53, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .c1-hero__halo { width: 96%; top: 0; }
  .c1-hero__ground { display: none; }   /* stage bottom is now the grid, not the people */

  /* ads card: icons centred, title wraps below them, ad mock under the metric */
  .c1-hcard--ads .c1-hcard__head { justify-content: center; flex-wrap: wrap; row-gap: 3px; }
  .c1-hcard--ads .c1-hcard__title { flex-basis: 100%; text-align: center; white-space: normal; }
  .c1-hcard--ads .c1-ads__meta { text-align: center; }
  .c1-ads__ad {
    display: grid;
    justify-items: start;
    gap: 4px;
    margin-top: 8px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
  }

  /* website card: visitor + conversion metrics fill the tall cell */
  .c1-site__meta {
    display: block;
    margin: 8px 0 0;
    font-size: 0.66rem;
    color: var(--c1-oninv-strong);
  }
  .c1-site__meta b {
    font-family: var(--c1-font-head);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
  }
  .c1-site__meta em { font-style: normal; color: var(--c1-mint); }

  .c1-hero__aurora--c { display: none; }   /* one less blurred layer on phones */

  .c1-hero__niches { margin-top: 2rem; }
  .c1-niches { flex-wrap: wrap; gap: 14px 0; row-gap: 18px; padding-top: 1.2rem; }
  .c1-niche { flex: 1 1 30%; min-width: 96px; }
  .c1-niche + .c1-niche::before { display: none; }
  .c1-niche__icon { width: 38px; height: 30px; }
  .c1-niche span { font-size: var(--c1-t-xs); }

  .c1-stickybar { display: flex; }
  body.c1-home { padding-bottom: 74px; }
}

/* --- ≤380 · small phones --------------------------------------------------- */
@media (max-width: 380px) {
  .c1-nav__word { font-size: 1rem; }
}

/* ==========================================================================
   14 · LAYOUT MODE — dev-only card positioning aid
   Open the page as  …/index.html?layout  (desktop): cards become draggable,
   the panel shows live left/top percentages, "Copy positions" puts them on
   the clipboard to paste back so the final values can be hard-coded.
   Never active in production markup — it requires the ?layout query.
   ========================================================================== */

html.c1-layout-mode .c1-hcard {
  cursor: grab;
  outline: 1px dashed rgba(167, 139, 250, 0.65);
  outline-offset: 3px;
  transform: none !important;           /* parallax off while positioning */
}
html.c1-layout-mode .c1-hcard:active { cursor: grabbing; outline-style: solid; }
html.c1-layout-mode .c1-hcard__inner { animation: none !important; }
html.c1-layout-mode .c1-hcard__inner * { pointer-events: none; }

.c1-layout-panel {
  position: fixed;
  left: 14px; bottom: 14px;
  z-index: calc(var(--c1-z-modal) + 2);
  min-width: 240px;
  padding: 12px 14px;
  background: rgba(4, 8, 28, 0.96);
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: var(--c1-r-md);
  box-shadow: var(--c1-glass-shadow-lg);
  color: var(--c1-oninv);
  font-family: var(--c1-font-mono);
  font-size: 11px;
  line-height: 1.7;
}
.c1-layout-panel b {
  display: block;
  font-family: var(--c1-font-head);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--c1-orchid);
  margin-bottom: 6px;
}
.c1-layout-panel pre { margin: 0 0 10px; white-space: pre; }
.c1-layout-panel button {
  padding: 7px 14px;
  font-family: var(--c1-font-head);
  font-size: 0.72rem;
  font-weight: var(--c1-w-semibold);
  color: var(--c1-oninv-strong);
  background: var(--c1-action);
  border: 0;
  border-radius: var(--c1-r-pill);
  cursor: pointer;
}
.c1-layout-panel button:hover { background: var(--c1-action-hover); }

/* ==========================================================================
   ★ WIDE-CANVAS EXPERIMENT (client preview — DELETE THIS WHOLE BLOCK TO REVERT)
   Every section below the logo scroller drops its boxed container on desktop:
   full-bleed with 100px side padding, inner grids un-capped so the content
   actually stretches. Mobile/tablet (<1100px) completely untouched.
   ========================================================================== */
@media (min-width: 1100px) {
  .c1-diag__inner,
  .c1-proof__inner,
  .c1-serv__inner,
  .c1-how__inner,
  .c1-about__inner,
  .c1-book__inner {
    max-width: none;
    padding-inline: 150px;
  }
  .c1-how__grid { max-width: none; }
  .c1-book__grid { max-width: none; }
  .c1g-scope .c1g-wrap {
    max-width: none;
    padding-left: 150px;
    padding-right: 150px;
  }
  .c1-steps { max-width: none; }
  .c1-serv__grid { max-width: none; }
  .c1-diag__grid { max-width: none; }
}
/* ══════════════════════ end wide-canvas experiment ══════════════════════ */

/* ==========================================================================
   15 · REDUCED MOTION — belt & braces on top of the tokens kill-switch
   (tokens.css already zeroes every animation/transition duration)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .c1-hcard__inner, .c1-msite, .c1-hero__aurora,
  .c1-hero__halo, .c1-meta__heart { animation: none !important; }
}
