/* ═══════════════════════════════════════════════════════════
   DISAYANA — brand system
   cyan · gold · black · white  (primary look stays cyan + ink)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Core brand swatches (from brand colour palette) */
  --brand-cyan: #00b4fc;
  --brand-gold: #fcc03c;
  --brand-black: #000000;
  --brand-white: #ffffff;

  /* Mapped UI tokens */
  --bg: var(--brand-white);
  --card: #f4f4f6;
  --ink: #111113;              /* soft black for long-form UI */
  --ink-2: #1a1a1d;
  --signal: var(--brand-cyan); /* primary action / links */
  --signal-deep: #0090d0;
  --signal-bright: #4dc9ff;
  --gold: var(--brand-gold);   /* secondary accent (highlights) */
  --gold-deep: #e0a020;
  --gold-soft: rgba(252, 192, 60, 0.16);
  --tone: #a9a9b2;

  /* Ambient gradients — cyan primary, soft gold edge */
  --disayana-grad-top: radial-gradient(1200px 700px at 50% -120px, rgba(0, 180, 252, 0.2) 0%, rgba(252, 192, 60, 0.06) 42%, rgba(255, 255, 255, 0) 78%);
  --disayana-grad-bottom: radial-gradient(1200px 700px at 50% calc(100% + 120px), rgba(0, 180, 252, 0.16) 0%, rgba(252, 192, 60, 0.05) 48%, rgba(255, 255, 255, 0) 85%);

  /* text */
  --tx: #111113;
  --tx-mute: rgba(17, 17, 19, 0.58);
  --tx-light: #f7f7f5;
  --tx-light-mute: rgba(247, 247, 245, 0.55);

  /* hairlines */
  --line: rgba(17, 17, 19, 0.1);
  --line-strong: rgba(17, 17, 19, 0.22);
  --line-light: rgba(247, 247, 245, 0.14);

  /* type */
  --display: "Onest", system-ui, sans-serif;
  --sans: "Onest", system-ui, sans-serif;
  --mono: "Onest", system-ui, sans-serif;

  /* rhythm */
  --radius: 20px;
  --radius-lg: 28px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);
  --header-h: 88px;

  --ease: cubic-bezier(0.76, 0, 0.24, 1);

  /* Aave Glass Specification Tokens */
  --aave-glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(245, 247, 250, 0.4) 100%);
  --aave-glass-border: 1px solid rgba(255, 255, 255, 0.85);
  --aave-glass-blur: blur(20px) saturate(180%);
  --aave-glass-shadow: 
    0 16px 40px -8px rgba(0, 0, 0, 0.06),
    0 2px 6px -1px rgba(0, 0, 0, 0.03),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04);
  --aave-glass-shadow-hover: 
    0 24px 50px -10px rgba(0, 180, 252, 0.2),
    0 4px 12px -2px rgba(0, 0, 0, 0.05),
    inset 0 1.5px 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04);
}

/* Universal Aave Glass Utility Class */
.aave-glass {
  background: var(--aave-glass-bg);
  backdrop-filter: var(--aave-glass-blur);
  -webkit-backdrop-filter: var(--aave-glass-blur);
  border: var(--aave-glass-border);
  box-shadow: var(--aave-glass-shadow);
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.aave-glass:hover {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--aave-glass-shadow-hover);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background-color: #ffffff;
  color: var(--tx);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--signal); color: var(--brand-white); }
::-moz-selection { background: var(--signal); color: var(--brand-white); }

.container { width: min(1360px, 100% - 2 * var(--pad)); margin-inline: auto; }
section { scroll-margin-top: calc(var(--header-h) - 12px); }

/* grain overlay — film texture on everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Type helpers ──────────────────────────────────────── */
.mlabel {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.6rem;
}
.mlabel::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.mlabel--light { color: var(--tx-light-mute); }
.mlabel--gold::before { background: var(--gold); box-shadow: 0 0 0 3px rgba(0, 180, 252, 0.12); }

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

.section__head { max-width: 960px; margin-bottom: clamp(2.2rem, 5vw, 3.8rem); }
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 24ch;
}
/* Emphasized words: cyan primary; gold available via .section__title em.gold or data */
.section__title em { font-style: normal; color: var(--signal-deep); }
.section__title em.gold,
.section__title--gold em { color: var(--gold-deep); }
.section__title--sm { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.section__sub {
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: var(--tx-mute);
  max-width: 52ch;
}

.textlink {
  font-weight: 500;
  color: var(--tx);
  border-bottom: 1px solid var(--signal-deep);
  transition: color 0.25s;
}
.textlink:hover { color: var(--signal-deep); }

/* ── Roll-text hover (JS duplicates the label) ─────────── */
.rollc { display: block; overflow: hidden; }
.rollw { position: relative; display: flex; flex-direction: column; transition: transform 0.5s var(--ease); }
.rollw > span { display: block; white-space: nowrap; }
.rollw > span:last-child { position: absolute; top: 100%; left: 0; width: 100%; text-align: inherit; }
[data-roll]:hover .rollw, [data-roll]:focus-visible .rollw { transform: translateY(-100%); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
}
.btn--primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(17, 17, 19, 0.15);
}
.btn--primary:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 180, 252, 0.38);
  transform: translateY(-2px);
}
.btn--signal {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(0, 180, 252, 0.25);
}
.btn--signal:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(252, 192, 60, 0.4);
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(252, 192, 60, 0.28);
}
.btn--gold:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 180, 252, 0.35);
}
.btn--line {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.35) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--tx);
  box-shadow:
    0 8px 24px 0 rgba(0, 0, 0, 0.04),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04);
}
.btn--line:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(17, 17, 19, 0.25);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.btn--lg { padding: 1.2rem 2.4rem; }
.btn--sm { padding: 0.7rem 1.2rem; }

/* ── Preloader (ink intro → light reveal) ──────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--ink);
  color: var(--tx-light);
  display: grid;
  place-items: center;
  animation: preGone 0.55s ease 2.6s forwards; /* backstop if JS fails */
}
@keyframes preGone {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.preloader.is-done {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.45s, visibility 0.45s;
}
.preloader__logo { width: 150px; }
.preloader__meta {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 1.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.preloader__label { font-size: 0.68rem; color: var(--tx-light-mute); }
.preloader__count { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1; }

/* ── Header ────────────────────────────────────────────── */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  color: var(--tx);
  transition: background 0.4s, box-shadow 0.4s, transform 0.5s var(--ease), color 0.35s;
}
.header.is-hidden { transform: translateY(-100%); }
.header.is-scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 250, 252, 0.48) 100%);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.header.is-menu-open { background: transparent; box-shadow: none; color: var(--tx-light); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.header__logo { position: relative; display: block; z-index: 1100; line-height: 0; }
.header__logo .logo {
  height: 42px;
  width: auto;
  transition: opacity 0.3s, height 0.3s var(--ease);
}
.header__logo .logo--light { position: absolute; inset: 0; opacity: 0; }
.header.is-menu-open .logo--light { opacity: 1; }
.header.is-menu-open .logo--dark { opacity: 0; }

/* Light header over dark homepage heroes (Alloy, Aether, etc.) */
html[data-hero-theme="dark"] .header {
  color: #f4f7fb;
}
html[data-hero-theme="dark"] .header .logo--dark { opacity: 0; }
html[data-hero-theme="dark"] .header .logo--light { opacity: 1; }
html[data-hero-theme="dark"] .header .nav__link {
  opacity: 0.72;
  color: #f4f7fb;
}
html[data-hero-theme="dark"] .header .nav__link:hover,
html[data-hero-theme="dark"] .header .nav__link--active {
  opacity: 1;
  color: var(--signal);
}
html[data-hero-theme="dark"] .header .header__phone {
  opacity: 0.75;
  color: #f4f7fb;
}
html[data-hero-theme="dark"] .header .header__phone:hover { opacity: 1; }
html[data-hero-theme="dark"] .header .burger {
  color: #f4f7fb;
  border-color: rgba(244, 247, 251, 0.35);
}
html[data-hero-theme="dark"] .header:not(.is-scrolled) {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}
html[data-hero-theme="dark"] .header.is-scrolled {
  background: rgba(8, 10, 14, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.45);
  color: #f4f7fb;
}
html[data-hero-theme="dark"] .header.is-scrolled .logo--dark { opacity: 0; }
html[data-hero-theme="dark"] .header.is-scrolled .logo--light { opacity: 1; }
html[data-hero-theme="dark"] .header.is-menu-open {
  color: #f4f7fb;
  background: transparent;
}

.nav { height: 100%; display: flex; align-items: center; }
.nav__list { display: flex; align-items: stretch; height: 100%; gap: 2.1rem; }
.nav__item { display: flex; align-items: center; position: relative; }
.nav__item--has-mega { position: static; }

.nav__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-block: 0.5rem;
  opacity: 0.65;
  transition: opacity 0.25s, color 0.25s;
}
.nav__link:hover, .nav__link--active { opacity: 1; }
.nav__link--active { color: var(--signal-deep); }

/* Dropdown chevron indicator */
.nav__item--has-mega .nav__link::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  margin-left: 6px;
  opacity: 0.65;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav__item--has-mega:hover .nav__link::after,
.nav__item--has-mega:focus-within .nav__link::after,
.nav__item--has-mega.is-open .nav__link::after {
  transform: rotate(-135deg) translate(-1px, -1px);
  opacity: 1;
}

/* ── Mega Dropdown ───────────────────────── */
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  width: min(1320px, calc(100vw - 2rem));
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s;
  z-index: 1050;
  color: var(--tx);
}

/* Invisible bridge so mouse never loses hover between header and mega menu */
.mega::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 26px;
  pointer-events: auto;
}

.nav__item--has-mega:hover .mega,
.nav__item--has-mega:focus-within .mega,
.nav__item--has-mega.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega__inner {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 19, 0.09);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 24px 54px -14px rgba(10, 14, 22, 0.22),
              0 6px 18px -4px rgba(10, 14, 22, 0.08);
}

.mega__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
}

.mega__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-content: start;
  padding: 1.4rem 1.15rem 1.25rem;
  border-left: 1px solid rgba(17, 17, 19, 0.07);
  background: #ffffff;
  min-width: 0;
  position: relative;
}
.mega__col:first-child { border-left: 0; }
.mega__head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
}
.mega__head:hover .mega__title { color: var(--signal-deep); }
.mega__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}
.mega__links a {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--tx-mute);
  text-decoration: none;
}
.mega__links a:hover { color: var(--ink); }
.mega__explore {
  margin-top: auto;
  padding-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--signal-deep);
  text-decoration: none;
}
.mega__explore:hover { color: var(--ink); }

.mega__num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}

.mega__arrow {
  font-size: 0.85rem;
  color: var(--tx-mute);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s;
}
.mega__col:hover .mega__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--signal-deep);
}

.mega__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.mega__col:hover .mega__title {
  color: var(--signal-deep);
}

.mega__sub {
  font-size: 0.76rem;
  color: var(--tx-mute);
  line-height: 1.45;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mega__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  background: #f5f7fa;
  border-top: 1px solid rgba(17, 17, 19, 0.07);
  font-size: 0.76rem;
}

.mega__foot-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tx-mute);
}

.mega__foot-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-deep);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.2);
}

.mega__foot-link {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--signal-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s, color 0.2s;
}
.mega__foot-link:hover {
  gap: 0.55rem;
  color: var(--ink);
}

@media (max-width: 1240px) {
  .mega {
    max-width: 100%;
  }
  .mega__col {
    padding: 1.15rem 0.95rem 1.25rem;
  }
  .mega__title {
    font-size: 0.92rem;
  }
  .mega__sub {
    font-size: 0.72rem;
  }
}

.header__actions { display: flex; align-items: center; gap: 1.4rem; }
.header__phone {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  opacity: 0.65;
  transition: opacity 0.25s;
}
.header__phone:hover { opacity: 1; }

/* burger */
.burger {
  display: none;
  position: relative;
  z-index: 1100;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}
.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 24px; }
.burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* ── Mobile menu ───────────────────────────────────────── */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--ink);
  color: var(--tx-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad) 3rem;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease), visibility 0.6s;
  visibility: hidden;
}
.mmenu.is-open { transform: translateY(0); visibility: visible; }
.mmenu__nav { display: grid; gap: 0.3rem; }
.mmenu__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 8.5vw, 3.4rem);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mmenu.is-open .mmenu__link { opacity: 1; transform: none; }
.mmenu__link:hover { color: var(--signal); }
.mmenu__link em {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--signal);
}
.mmenu__group { display: grid; gap: 0.3rem; }
.mmenu__link--static { cursor: default; }
.mmenu__subs {
  display: grid;
  gap: 0.35rem;
  padding-left: 2.4rem;
  margin-block: 0.2rem 0.9rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mmenu.is-open .mmenu__subs { opacity: 1; transform: none; transition-delay: 0.28s; }
.mmenu__subs a {
  font-size: 0.95rem;
  color: var(--tx-light-mute);
  transition: color 0.25s;
  width: fit-content;
}
.mmenu__subs a:hover { color: var(--signal); }
.mmenu__foot {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mmenu__contact { color: var(--tx-light-mute); }
.mmenu__contact:hover { color: var(--tx-light); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  padding-bottom: 2.5rem;
  overflow: visible;
  background: #ffffff;
}
.hero__three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1.0;
}
.hero__inner { position: relative; z-index: 1; padding-block: 0.5rem 1rem; }

/* Hero variant shells */
.hero-variant {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-variant[hidden] { display: none !important; }

/* Line reveal primitives (variant 1) */
.hline {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hline__in {
  display: block;
  will-change: transform, opacity, filter;
}
.hline__mute { color: var(--tx-mute); }
.hline__mute em {
  color: inherit;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.2rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem);
}
.hero__meta span:first-child { color: var(--signal-deep); }

.hero__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
}
.hero__main--centered {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.hero__visual--center {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto -3.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.hero__visual-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: contrast(1.06) brightness(1.01);
  animation: heroSpeedster 8s ease-in-out infinite alternate;
}
.hero__visual--center .hero__visual-img {
  width: 100%;
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  opacity: 1;
  filter: contrast(1.06) brightness(1.01);
}
.hero__copy--center {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.hero__title--center {
  text-align: center;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 1040px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1rem;
}
.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(53, 195, 243, 0.18);
}
.hero__lead {
  margin-top: 1rem;
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.55;
  color: var(--tx-mute);
  text-align: center;
}

.hero__sub {
  margin-top: 0.8rem;
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  color: var(--tx-mute);
}
.hero__sub--center {
  display: none;
}
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: 1rem; }
.hero__cta--center { justify-content: center; margin-top: 1.8rem; }
.hero__trust {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--tx-mute);
}
.hero__trust span {
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-deep);
  margin-right: 0.9rem;
}

.btnpill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1.5rem 0.55rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: border-color 0.3s, background 0.3s;
}
.btnpill:hover { border-color: var(--ink); background: #fff; }
.btnpill__thumb { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

@keyframes heroSpeedster {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════
   HERO VARIANT 2 — Kinetic type (Skiper 27 / 28 / 72 inspired)
   horizontal word reveal + rolling service word
   ═══════════════════════════════════════════════════════════ */
.hero2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
  padding-block: clamp(1.5rem, 4vw, 3rem) 1rem;
}
.hero2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.hero2__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(53, 195, 243, 0.18);
}
.hero2__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  perspective: 900px;
}
.hero2__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.18em 0.28em;
  overflow: hidden;
  padding-bottom: 0.04em;
  transform-style: preserve-3d;
}
.hero2__line--cycle {
  min-height: 1.1em;
  margin: 0.02em 0;
}
.hero2__word {
  display: inline-block;
  will-change: transform, opacity, filter;
}
.hero2__word--em {
  background: linear-gradient(135deg, var(--signal-deep) 0%, #00e5ff 50%, var(--signal-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGrad 6s linear infinite;
}
.hero2__cycle {
  display: inline-block;
  overflow: hidden;
  height: 1.05em;
  vertical-align: bottom;
  position: relative;
  min-width: 7.5ch;
}
.hero2__cycle-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.hero2__cycle-item {
  display: block;
  height: 1.05em;
  line-height: 1.05em;
  white-space: nowrap;
  color: var(--signal-deep);
  font-style: normal;
}
.hero2__sub {
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
  max-width: 42ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--tx-mute);
  line-height: 1.55;
}
.hero2__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.hero2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(2rem, 4vw, 2.8rem);
}
.hero2__chips li {
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--tx);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  list-style: none;
  overflow: hidden;
}
.hero2__chips li a {
  display: block;
  padding: 0.45rem 0.9rem;
  color: inherit;
  text-decoration: none;
}
.hero2__chips li:hover {
  border-color: var(--signal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(53, 195, 243, 0.45);
}

/* ═══════════════════════════════════════════════════════════
   HERO VARIANT 3 — Image mask reveal + split (Skiper 66/71)
   ═══════════════════════════════════════════════════════════ */
.hero3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1rem, 3vw, 2rem) 0.5rem;
}
.hero3__copy {
  max-width: 34rem;
}
.hero3__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.4rem;
}
.hero3__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}
.hero3__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero3__hline {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero3__hin {
  display: block;
  will-change: transform, opacity, filter, clip-path;
}
.hero3__hin--em {
  background: linear-gradient(135deg, var(--signal-deep) 0%, #00e5ff 50%, var(--signal-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGrad 6s linear infinite;
}
.hero3__sub {
  margin-top: 1.2rem;
  max-width: 40ch;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  color: var(--tx-mute);
  line-height: 1.55;
}
.hero3__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.hero3__visual {
  position: relative;
  min-height: min(52vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero3__mask {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1.05;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f4f8 0%, #e8eef5 100%);
  clip-path: inset(100% 0 0 0 round 28px);
  will-change: clip-path, transform;
  box-shadow:
    0 40px 80px -30px rgba(17, 17, 19, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.hero3__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: contrast(1.05) brightness(1.02);
  transform: scale(1.12);
  will-change: transform;
}
.hero3__float {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px -18px rgba(17, 17, 19, 0.25);
  opacity: 0;
  will-change: transform, opacity;
}
.hero3__float strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.hero3__float span {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-mute);
}
.hero3__float--a {
  top: 12%;
  left: -4%;
}
.hero3__float--b {
  bottom: 14%;
  right: -2%;
}
.hero3__float--c {
  top: 48%;
  right: -6%;
}

@media (max-width: 900px) {
  .hero3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero3__visual {
    order: -1;
    min-height: 280px;
  }
  .hero3__mask {
    max-width: 360px;
    margin-inline: auto;
  }
  .hero3__float--a { left: 4%; }
  .hero3__float--b { right: 4%; }
  .hero3__float--c { right: 8%; top: 42%; }
  .hero2__title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
}

/* ═══════════════════════════════════════════════════════════
   HERO VARIANT 4 — 3D layer stage (pointer-reactive depth)
   Skiper Interactive3d / mouse-follow inspired
   ═══════════════════════════════════════════════════════════ */
.hero4 {
  perspective: 1400px;
  perspective-origin: 50% 40%;
  min-height: min(78svh, 720px);
  display: flex;
  align-items: center;
  width: 100%;
}
.hero4__scene {
  position: relative;
  width: 100%;
  min-height: min(72svh, 680px);
  transform-style: preserve-3d;
  will-change: transform;
}
.hero4__layer {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}
.hero4__layer--near { pointer-events: auto; z-index: 5; }
.hero4__layer--mid { z-index: 3; }
.hero4__layer--far { z-index: 1; }

.hero4__grid {
  position: absolute;
  inset: 8% 5% 12%;
  border-radius: 32px;
  background:
    linear-gradient(rgba(53, 195, 243, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 195, 243, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 55% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 55% 45%, #000 20%, transparent 75%);
  transform: rotateX(58deg) translateZ(-120px) scale(1.35);
  opacity: 0.9;
}
.hero4__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  will-change: transform;
}
.hero4__orb--a {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 12%;
  background: radial-gradient(circle, rgba(53, 195, 243, 0.55), transparent 70%);
}
.hero4__orb--b {
  width: 220px;
  height: 220px;
  bottom: 18%;
  left: 8%;
  background: radial-gradient(circle, rgba(10, 134, 180, 0.35), transparent 70%);
}

.hero4__card {
  position: absolute;
  width: min(180px, 28vw);
  padding: 1rem 1.1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 50px -20px rgba(17, 17, 19, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.hero4__card:hover {
  box-shadow:
    0 28px 60px -16px rgba(53, 195, 243, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(53, 195, 243, 0.45);
}
.hero4__card-k {
  display: block;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--signal-deep);
  margin-bottom: 0.45rem;
}
.hero4__card strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.hero4__card p {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--tx-mute);
  line-height: 1.3;
}
.hero4__card--a { top: 12%; left: 4%; transform: translateZ(40px) rotateY(12deg); }
.hero4__card--b { top: 18%; right: 6%; transform: translateZ(80px) rotateY(-10deg); }
.hero4__card--c { bottom: 16%; left: 10%; transform: translateZ(60px) rotateY(8deg); }
.hero4__card--d { bottom: 22%; right: 10%; transform: translateZ(100px) rotateY(-14deg); }

.hero4__copy {
  position: relative;
  z-index: 6;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding-top: clamp(2rem, 8vh, 5rem);
  transform: translateZ(140px);
}
.hero4__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.3rem;
}
.hero4__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(53, 195, 243, 0.2);
  animation: hero4Pulse 2s ease-in-out infinite;
}
@keyframes hero4Pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(53, 195, 243, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(53, 195, 243, 0.08); }
}
.hero4__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero4__hline {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.hero4__hline > span {
  display: block;
  will-change: transform, opacity, filter;
}
.hero4__title-em {
  background: linear-gradient(135deg, var(--signal-deep) 0%, #00e5ff 50%, var(--signal-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGrad 6s linear infinite;
}
.hero4__sub {
  margin: 1.2rem auto 0;
  max-width: 42ch;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: var(--tx-mute);
  line-height: 1.55;
}
.hero4__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

@media (max-width: 720px) {
  .hero4__card { width: min(140px, 38vw); padding: 0.75rem 0.85rem; }
  .hero4__card strong { font-size: 0.9rem; }
  .hero4__card--a { top: 4%; left: 0; }
  .hero4__card--b { top: 6%; right: 0; }
  .hero4__card--c { bottom: 8%; left: 2%; }
  .hero4__card--d { bottom: 10%; right: 2%; }
  .hero4__copy { padding-top: 3.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   HERO VARIANT 5 — 3D tilt card + glare (pointer-reactive)
   ═══════════════════════════════════════════════════════════ */
.hero5 {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1rem, 3vw, 2rem);
  min-height: min(70svh, 640px);
}
.hero5__copy { max-width: 34rem; }
.hero5__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.4rem;
}
.hero5__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}
.hero5__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero5__hline {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero5__hin {
  display: block;
  will-change: transform, opacity, filter;
}
.hero5__hin--em {
  background: linear-gradient(135deg, var(--signal-deep) 0%, #00e5ff 50%, var(--signal-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGrad 6s linear infinite;
}
.hero5__sub {
  margin-top: 1.15rem;
  max-width: 38ch;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  color: var(--tx-mute);
  line-height: 1.55;
}
.hero5__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.hero5__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.hero5__meta li {
  font-size: 0.82rem;
  color: var(--tx-mute);
}
.hero5__meta strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.hero5__stage {
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(52vh, 460px);
  touch-action: none;
}
.hero5__tilt {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  will-change: transform;
  border-radius: 28px;
}
.hero5__face {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 252, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 40px 80px -28px rgba(17, 17, 19, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 1);
  transform-style: preserve-3d;
  transform: translateZ(40px);
}
.hero5__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 60%;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
  transform: translateZ(20px) scale(1.02);
  pointer-events: none;
  user-select: none;
}
.hero5__shine {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--glare-x, 50%) var(--glare-y, 30%),
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.08) 28%,
    transparent 55%
  );
  mix-blend-mode: soft-light;
  opacity: 0.85;
  transform: translateZ(50px);
}
.hero5__badge {
  position: absolute;
  z-index: 3;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(17, 17, 19, 0.78);
  color: #fff;
  backdrop-filter: blur(10px);
  transform: translateZ(60px);
}
.hero5__badge--tl { top: 1rem; left: 1rem; }
.hero5__badge--br {
  bottom: 1rem;
  right: 1rem;
  background: rgba(53, 195, 243, 0.92);
  color: var(--ink);
}
.hero5__shadow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -18%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(17, 17, 19, 0.28), transparent 70%);
  filter: blur(18px);
  transform: translateZ(-40px);
  pointer-events: none;
}
.hero5__ring {
  position: absolute;
  width: min(92%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(53, 195, 243, 0.35);
  pointer-events: none;
  z-index: 0;
  animation: hero5Spin 28s linear infinite;
}
@keyframes hero5Spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero5 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero5__stage {
    order: -1;
    min-height: 320px;
  }
  .hero5__tilt {
    width: min(100%, 320px);
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO VARIANT 6 — Orbital emblem (3D reactive sculpture)
   ═══════════════════════════════════════════════════════════ */
.hero:has(#heroV6.is-active),
.hero[data-hero-active="6"] {
  background:
    radial-gradient(900px 520px at 78% 42%, rgba(53, 195, 243, 0.12), transparent 60%),
    radial-gradient(700px 480px at 12% 80%, rgba(10, 134, 180, 0.06), transparent 55%),
    #ffffff;
  min-height: calc(100svh - 40px);
  overflow: hidden;
  padding-bottom: 1rem;
}

.hero-variant--orbit {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  width: 100%;
  display: flex;
  align-items: center;
}

.hero6 {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: 100%;
  padding-block: clamp(1rem, 3vh, 2rem);
}

.hero6__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}
.hero6__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.3rem;
}
.hero6__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(53, 195, 243, 0.5);
  animation: hero6Live 1.6s ease-out infinite;
}
@keyframes hero6Live {
  0% { box-shadow: 0 0 0 0 rgba(53, 195, 243, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(53, 195, 243, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 195, 243, 0); }
}
.hero6__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero6__hline {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero6__hin {
  display: block;
  will-change: transform, opacity, filter;
}
.hero6__hin--em {
  background: linear-gradient(120deg, var(--signal-deep) 0%, #35c3f3 45%, var(--signal-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGrad 5s linear infinite;
}
.hero6__sub {
  margin-top: 1.15rem;
  max-width: 38ch;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--tx-mute);
  line-height: 1.55;
}
.hero6__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

/* 3D stage */
.hero6__stage {
  position: relative;
  height: min(62vh, 520px);
  min-height: 360px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  cursor: grab;
}
.hero6__stage:active { cursor: grabbing; }

.hero6__space {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero6__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 195, 243, 0.28) 0%, rgba(112, 225, 255, 0.08) 42%, transparent 70%);
  filter: blur(8px);
  transform: translateZ(-40px);
  pointer-events: none;
}

.hero6__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  aspect-ratio: 1;
  margin: -21% 0 0 -21%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95) 0%, transparent 28%),
    radial-gradient(circle at 50% 50%, #70e1ff 0%, #35c3f3 38%, #0a86b4 78%, #0a5f82 100%);
  box-shadow:
    0 30px 60px -20px rgba(10, 134, 180, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 0 80px rgba(53, 195, 243, 0.35);
  transform-style: preserve-3d;
  transform: translateZ(60px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero6__core-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, transparent 42%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}
.hero6__core-mark {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4rem);
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 8px 24px rgba(0, 40, 60, 0.25);
  user-select: none;
}

.hero6__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 134, 180, 0.28);
  transform-style: preserve-3d;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}
.hero6__ring--1 {
  width: 72%;
  height: 72%;
  margin: -36% 0 0 -36%;
  border-color: rgba(53, 195, 243, 0.45);
  transform: translateZ(20px) rotateX(68deg) rotateZ(0deg);
}
.hero6__ring--2 {
  width: 88%;
  height: 88%;
  margin: -44% 0 0 -44%;
  border-color: rgba(10, 134, 180, 0.28);
  border-style: dashed;
  transform: translateZ(0px) rotateX(72deg) rotateZ(40deg);
}
.hero6__ring--3 {
  width: 100%;
  height: 100%;
  margin: -50% 0 0 -50%;
  border-color: rgba(17, 17, 19, 0.12);
  transform: translateZ(-20px) rotateX(76deg) rotateZ(-25deg);
}

.hero6__sat {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px -14px rgba(17, 17, 19, 0.28);
  transform-style: preserve-3d;
  white-space: nowrap;
  user-select: none;
  will-change: transform;
}
/* base positions — JS animates around these orbits */
.hero6__sat--1 { --a: 0; --r: 42%; }
.hero6__sat--2 { --a: 60; --r: 46%; }
.hero6__sat--3 { --a: 120; --r: 40%; }
.hero6__sat--4 { --a: 180; --r: 44%; }
.hero6__sat--5 { --a: 240; --r: 48%; }
.hero6__sat--6 { --a: 300; --r: 42%; }

@media (max-width: 900px) {
  .hero6 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .hero6__copy {
    text-align: center;
    max-width: 100%;
    margin-inline: auto;
  }
  .hero6__sub { margin-inline: auto; }
  .hero6__cta { justify-content: center; }
  .hero6__stage {
    order: -1;
    height: min(48vh, 380px);
    min-height: 280px;
  }
  .hero6__space { width: min(100%, 340px); }
}

/* ═══════════════════════════════════════════════════════════
   HERO 7 — Growth path (Attract → Amplify → Convert → Scale)
   ═══════════════════════════════════════════════════════════ */
.hero[data-hero-active="7"] {
  background:
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(53, 195, 243, 0.1), transparent 55%),
    #ffffff;
}
.hero7 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.2rem, 3vw, 2.5rem) 1rem;
  min-height: calc(100svh - var(--header-h) - 4rem);
}
.hero7__copy { max-width: 34rem; }
.hero7__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.2rem;
}
.hero7__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(53, 195, 243, 0.18);
}
.hero7__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero7__hline { display: block; overflow: hidden; }
.hero7__hin { display: block; }
.hero7__hin--em { color: var(--signal-deep); }
.hero7__sub {
  margin-top: 1.1rem;
  max-width: 40ch;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.55;
  color: var(--tx-mute);
}
.hero7__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.hero7__path {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  position: relative;
}
.hero7__path::before {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(53, 195, 243, 0.08), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(10, 134, 180, 0.08), transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.hero7__step { position: relative; z-index: 1; }
.hero7__step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 148px;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -24px rgba(17, 17, 19, 0.25);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.hero7__step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 195, 243, 0.5);
  box-shadow: 0 22px 48px -20px rgba(53, 195, 243, 0.35);
}
.hero7__num {
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--signal-deep);
  margin-bottom: 0.55rem;
}
.hero7__step-card strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero7__step-card p {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--tx-mute);
  flex: 1;
}
.hero7__tag {
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-deep);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   HERO 8 — Partner board (local studio + service tiles)
   ═══════════════════════════════════════════════════════════ */
.hero[data-hero-active="8"] {
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(53, 195, 243, 0.12), transparent 55%),
    #fafbfc;
}
.hero8 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.2rem, 3vw, 2.5rem) 1rem;
  min-height: calc(100svh - var(--header-h) - 4rem);
}
.hero8__copy { max-width: 34rem; }
.hero8__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.2rem;
}
.hero8__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(53, 195, 243, 0.18);
}
.hero8__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero8__hline { display: block; overflow: hidden; }
.hero8__hin { display: block; }
.hero8__hin--em { color: var(--signal-deep); }
.hero8__sub {
  margin-top: 1.1rem;
  max-width: 40ch;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.55;
  color: var(--tx-mute);
}
.hero8__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 1.8rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.hero8__proof div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero8__proof strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.hero8__proof span {
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-mute);
}
.hero8__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.hero8__board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero8__tile {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 32px -22px rgba(17, 17, 19, 0.3);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.hero8__tile:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 195, 243, 0.45);
  box-shadow: 0 18px 40px -18px rgba(53, 195, 243, 0.35);
}
.hero8__tile--m { grid-column: 1 / -1; background: linear-gradient(135deg, #0b1218 0%, #123044 100%); color: #f4f7fb; border-color: transparent; }
.hero8__tile--m strong { color: #fff; }
.hero8__tile--m p { color: rgba(244, 247, 251, 0.62); }
.hero8__tile--m .hero8__tile-k { color: #70e1ff; }
.hero8__tile-k {
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  color: var(--signal-deep);
  margin-bottom: 0.45rem;
}
.hero8__tile strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero8__tile p {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--tx-mute);
}

@media (max-width: 900px) {
  .hero7,
  .hero8 {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
  }
  .hero7__copy,
  .hero8__copy {
    text-align: center;
    max-width: 100%;
  }
  .hero7__sub,
  .hero8__sub { margin-inline: auto; }
  .hero7__cta,
  .hero8__cta { justify-content: center; }
  .hero8__proof { justify-content: center; }
  .hero7__path { grid-template-columns: 1fr 1fr; }
  .hero7__path::before { display: none; }
  .hero8__board { order: -1; }
}

@media (max-width: 520px) {
  .hero7__path { grid-template-columns: 1fr; }
  .hero8__board { grid-template-columns: 1fr; }
  .hero8__tile--m { grid-column: auto; }
}

/* Legacy webgl shells (unused in production set) */
.hero-variant--webgl {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-webgl {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-webgl canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-webgl__ui {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  padding-block: clamp(2rem, 6vh, 4rem);
  pointer-events: none;
}
.hero-webgl__ui a,
.hero-webgl__ui .btn { pointer-events: auto; }

.hero-webgl__ui--split {
  max-width: none;
}
.hero-webgl__copy {
  max-width: 480px;
}

.hero-webgl__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 1.3rem;
}
.hero-webgl__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.8vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero-webgl__sub {
  margin-top: 1.15rem;
  max-width: 38ch;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--tx-mute);
  line-height: 1.55;
}
.hero-webgl__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-webgl__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 50% at 28% 45%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.2) 45%, transparent 70%);
}
/* Hero 11 sky: lighter scrim so atmosphere + clouds read clearly */
#heroV11 .hero-webgl__scrim {
  background: radial-gradient(ellipse 48% 42% at 26% 42%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 72%);
}
.hero-variant--adv .hero-webgl__ui {
  max-width: 560px;
}
.hero-variant--dark .hero-webgl__title,
.hero-variant--dark .hero-webgl__eyebrow,
.hero-variant--dark .hero-webgl__sub {
  color: #f4f7fb;
}
.hero-variant--dark .hero-webgl__sub,
.hero-variant--dark .hero-webgl__eyebrow {
  color: rgba(244, 247, 251, 0.62);
}
.hero-variant--dark .hero-webgl__scrim {
  background: radial-gradient(ellipse 50% 48% at 30% 45%, rgba(11, 18, 24, 0.75) 0%, transparent 70%);
}
.hero-variant--dark .btn--line {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

@media (max-width: 820px) {
  .hero-webgl__ui {
    text-align: center;
    max-width: 100%;
    margin-inline: auto;
    padding-bottom: 2rem;
  }
  .hero-webgl__copy {
    max-width: 100%;
    margin-inline: auto;
  }
  .hero-webgl__sub { margin-inline: auto; }
  .hero-webgl__cta { justify-content: center; }
  .hero-webgl__scrim {
    background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.35) 40%, transparent 70%);
  }
}

/* composed work artifacts */
.heromock {
  position: absolute;
  left: -2.2rem;
  top: 20%;
  width: min(290px, 58%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px -25px rgba(17, 17, 19, 0.35);
  overflow: hidden;
  animation: floatyTilt 7s ease-in-out infinite;
}
@keyframes floatyTilt {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-9px); }
}
.heromock__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--line);
}
.heromock__bar i { width: 7px; height: 7px; border-radius: 50%; background: #dcdce0; }
.heromock__bar i:first-child { background: var(--signal); }
.heromock__url {
  margin-left: 0.4rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: var(--card);
  font-size: 0.62rem;
  color: var(--tx-mute);
}
.heromock__page { padding: 0.9rem 0.9rem 1.1rem; display: grid; gap: 0.55rem; }
.heromock__hero {
  position: relative;
  height: 56px;
  border-radius: 9px;
  background: linear-gradient(120deg, var(--ink), #2d2d33);
}
.heromock__hero::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 55%;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%);
  box-shadow: 0 14px 0 -2px rgba(255, 255, 255, 0.4);
}
.heromock__line { height: 7px; border-radius: 99px; background: #e4e4e8; }
.heromock__line--w80 { width: 80%; }
.heromock__line--w60 { width: 60%; }
.heromock__btn { height: 20px; width: 74px; border-radius: 999px; background: var(--signal); margin-top: 0.2rem; }

.herochip {
  position: absolute;
  right: -1rem;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem 0.75rem 0.85rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 45px -20px rgba(17, 17, 19, 0.3);
  animation: floaty 7s ease-in-out 1.2s infinite;
  transition: transform 0.35s var(--ease);
}
.herochip:hover { transform: translateY(-3px); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.herochip__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(53, 195, 243, 0.16);
  color: var(--signal-deep);
  flex: none;
}
.herochip__icon svg { width: 14px; height: 14px; }
.herochip__text { display: grid; gap: 0.05rem; }
.herochip__text strong { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.01em; }
.herochip__text small { font-size: 0.72rem; color: var(--tx-mute); }

.hero-stats-bar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(240, 244, 250, 0.45) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  padding-block: 2.2rem;
  position: relative;
  z-index: 2;
  box-shadow:
    0 12px 36px -10px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.03);
}
.hero-stats-bar .hero__stats {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.hero__stat { border-left: 1px solid var(--line); padding-left: 1.2rem; }
.hero__stat:first-child { border-left: 0; padding-left: 0; }
.hero__stat dt {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.hero__stat dd {
  margin-top: 0.45rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-mute);
}

/* ── Marquee (ink strip) ───────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--tx-light);
  overflow: hidden;
  padding-block: 1.15rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1;
}
.marquee__item em { font-style: normal; }
.marquee__item::after {
  content: "✳";
  font-size: 0.8em;
  color: var(--signal);
  margin-inline: 2.2rem;
}

/* ── Trusted brands (Emote-style) ──────────────────────── */
.brands {
  background: var(--bg);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--line);
}
.brands__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.brands__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.brands__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--signal-deep) 0%, var(--signal) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brands__copy {
  display: grid;
  gap: 0.9rem;
  color: var(--tx-mute);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  max-width: 42rem;
}
.brands__lead {
  color: var(--tx);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.45;
  font-weight: 500;
}
.brands__rails {
  display: grid;
  gap: 1.35rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brands__rail {
  overflow: hidden;
}
.brands__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
/* Slow, premium crawl */
.brands__track--a {
  animation: brandsMarquee 90s linear infinite;
}
.brands__track--b {
  animation: brandsMarqueeRev 105s linear infinite;
}
.brands__rail:hover .brands__track {
  animation-play-state: paused;
}
@keyframes brandsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes brandsMarqueeRev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.brands__set {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-inline: 0.55rem;
}
.brands__logo {
  flex: 0 0 auto;
  width: clamp(160px, 17vw, 200px);
  height: clamp(100px, 11vw, 112px);
  display: grid;
  place-items: center;
  /* Generous inner padding — logo sits in breathing room */
  padding: 1.15rem 1.45rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px -14px rgba(17, 17, 19, 0.2);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.brands__logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(0.12);
  opacity: 0.92;
  transition: opacity 0.3s, filter 0.3s, transform 0.3s var(--ease);
}
.brands__logo:hover {
  border-color: rgba(0, 180, 252, 0.35);
  box-shadow: 0 14px 32px -18px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.brands__logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}

@media (max-width: 880px) {
  .brands__top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .brands__set {
    gap: 0.9rem;
  }
  .brands__logo {
    width: 148px;
    height: 92px;
    padding: 1rem 1.15rem;
    border-radius: 14px;
  }
  .brands__track--a {
    animation-duration: 75s;
  }
  .brands__track--b {
    animation-duration: 88s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands__track--a,
  .brands__track--b {
    animation: none;
  }
  .brands__track {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 0.75rem;
  }
  .brands__set:last-child {
    display: none;
  }
}

/* ── Intro statement ───────────────────────────────────── */
.intro { padding-block: clamp(5rem, 11vw, 9rem); text-align: center; }
.intro__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: 2.2rem;
}
.intro__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); }
.intro__title {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  max-width: 1080px;
  margin-inline: auto;
}
.intro__mute { color: var(--tone); }
.intro__sub { margin-top: 2.2rem; font-size: 0.95rem; color: var(--tx-mute); }
.ipill {
  display: inline-block;
  width: 1.9em;
  height: 0.95em;
  border-radius: 999px;
  overflow: hidden;
  vertical-align: -0.1em;
  margin-inline: 0.14em;
}
.ipill img { width: 100%; height: 100%; object-fit: cover; }

/* ── Services bento ────────────────────────────────────── */
.svcgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}
.svctile {
  position: relative;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.5) 100%);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  min-height: 340px;
  overflow: hidden;
  box-shadow:
    0 16px 40px -8px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.35s var(--ease);
}
.svctile:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 25px 55px -10px rgba(53, 195, 243, 0.15),
    inset 0 1.5px 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04);
}
.svctile--grey, .svctile--white, .svctile--img2 { grid-column: span 2; }
.svctile--ink { background: var(--ink); border-color: var(--ink); color: var(--tx-light); }
.svctile--ink:hover { border-color: var(--ink); }
.svctile--grey {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(244, 244, 246, 0.45) 100%);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 16px 40px -10px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04);
}
.svctile--grey:hover {
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 25px 50px -10px rgba(53, 195, 243, 0.18),
    inset 0 1.5px 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04);
}
.svctile--img, .svctile--img2 { color: #fff; border-color: transparent; }

.svctile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svctile:hover .svctile__img { transform: scale(1.06); }
.svctile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 19, 0.08) 15%, rgba(17, 17, 19, 0.78) 100%);
}

.svctile__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svctile__num {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(17, 17, 19, 0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.svctile--ink .svctile__num { background: rgba(255, 255, 255, 0.08); color: var(--signal); }
.svctile--grey .svctile__num,
.svctile--white .svctile__num {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--tx);
  backdrop-filter: none;
}
.svctile__arrow {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease);
}
.svctile--ink .svctile__arrow,
.svctile--img .svctile__arrow,
.svctile--img2 .svctile__arrow { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.svctile:hover .svctile__arrow { background: var(--signal); border-color: var(--signal); color: var(--ink); transform: translate(2px, -2px); }
.svctile__arrow svg { width: 13px; height: 13px; }

.svctile__bottom { position: relative; z-index: 2; display: grid; gap: 0.45rem; }
.svctile__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.svctile__tag { font-size: 0.88rem; color: var(--tx-mute); max-width: 36ch; }
.svctile--ink .svctile__tag { color: var(--tx-light-mute); }
.svctile--img .svctile__tag, .svctile--img2 .svctile__tag { color: rgba(255, 255, 255, 0.95); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4); }
.svctile__subs { font-size: 0.76rem; color: var(--tx-mute); line-height: 1.55; }
.svctile--ink .svctile__subs { color: rgba(237, 235, 228, 0.45); }
.svctile--img .svctile__subs, .svctile--img2 .svctile__subs { color: rgba(255, 255, 255, 0.85); text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35); }

/* ── About teaser / story ──────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.about__grid--copy { grid-template-columns: minmax(0, 760px); }
.about__points { margin-block: 2.2rem 2.6rem; border-bottom: 1px solid var(--line); }
.about__points li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding-block: 0.95rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 500;
}
.about__points li::before {
  content: "+";
  font-family: var(--sans);
  font-weight: 600;
  color: var(--signal-deep);
}

.datapanel {
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: var(--tx-light);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.datapanel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line-light);
}
.datapanel__logo { height: 26px; width: auto; }
.datapanel__tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--tx-light-mute);
}
.datapanel__rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-light);
}
.datapanel__rows li:last-child { border-bottom: 0; padding-bottom: 0; }
.datapanel__k {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-light-mute);
}
.datapanel__v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ── Process ───────────────────────────────────────────── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.35s;
}
.step:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.step__num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--signal-deep);
  margin-bottom: auto;
}
.step__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  margin-block: 2.2rem 0.6rem;
}
.step__text { color: var(--tx-mute); font-size: 0.95rem; max-width: 36ch; }

/* ── Work / industries ─────────────────────────────────── */
.work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.work__cell {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.3s, color 0.3s;
}
.work__cell:nth-child(4n) { border-right: 0; }
.work__cell:nth-child(n+9) { border-bottom: 0; }
.work__cell:hover { background: var(--ink); color: #fff; }
.work__cell--cta { background: var(--signal); color: var(--ink); }
.work__cell--cta:hover { background: var(--ink); color: #fff; }
.work__cell--cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Testimonials (Emote layout, Disayana tokens) ──────── */
.quotes {
  padding: var(--section-y) 0;
  background: var(--card);
  color: var(--ink);
}
.quotes__wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6.25rem;
  align-items: stretch;
}
.quotes__left {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
}
.quotes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quotes__eyebrow::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--signal);
}
.quotes__heading {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.quotes__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2.5rem;
}
.quotes__count {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.quotes__count strong { font-weight: 700; }
.quotes__nav { display: flex; gap: 0.75rem; }
.quotes__arrow {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.quotes__arrow:hover {
  background: var(--ink);
  color: #fff;
}
.quotes__right { position: relative; min-height: 20rem; }
.quotes__slides { position: relative; min-height: 16rem; }
.quotes__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quotes__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}
.quotes__logo {
  height: 2.5rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  object-position: left;
}
.quotes__words {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.quotes__who {
  margin: 0;
  font-size: 1rem;
  color: var(--tx-mute);
}
.quotes__who strong { font-weight: 700; color: var(--ink); }
.quotes__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.quotes__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.2;
  border: none;
  padding: 0;
  cursor: pointer;
}
.quotes__dot.is-active { opacity: 1; }
@media (max-width: 900px) {
  .quotes__wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .quotes__left { min-height: 0; }
  .quotes__controls { padding-top: 1.5rem; }
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.faq__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
.faq__list { display: grid; gap: 0.7rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: var(--line-strong); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  list-style: none;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--signal-deep); }
.faq__icon {
  position: relative;
  flex: none;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { transform: rotate(135deg); background: var(--ink); border-color: var(--ink); color: #fff; }
.faq__answer { padding: 0 1.4rem 1.5rem; color: var(--tx-mute); max-width: 60ch; font-size: 0.95rem; }

/* ── CTA (ink panel) ───────────────────────────────────── */
.cta { padding-block: clamp(2rem, 5vw, 4rem); }
.cta__panel {
  background: var(--ink);
  color: var(--tx-light);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.cta__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.cta__title em {
  font-style: normal;
  color: var(--gold);
}
.cta__actions {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2.4rem;
}
.cta__phone {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-light-mute);
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.cta__phone:hover { color: var(--tx-light); border-color: var(--tx-light); }

/* ── Page hero (sub-pages) ─────────────────────────────── */
.pagehero {
  padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.pagehero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.pagehero__grid--copy { grid-template-columns: minmax(0, 1fr); max-width: 52rem; }
.pagehero__copy { min-width: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-mute);
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}
.breadcrumb a { transition: color 0.25s; }
.breadcrumb a:hover { color: var(--signal-deep); }
.breadcrumb span:last-child { color: var(--tx); }

.pagehero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.pagehero__title em {
  font-style: normal;
  color: var(--signal-deep);
  background: linear-gradient(120deg, var(--signal-deep) 0%, var(--signal) 55%, var(--gold-deep) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  .pagehero__title em { color: var(--signal-deep); -webkit-text-fill-color: currentColor; }
}
.pagehero__sub {
  margin-top: 1.6rem;
  max-width: 54ch;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  color: var(--tx-mute);
}
.pagehero__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.2rem; }

.pagehero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 2.2rem;
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-strong);
}
.pagehero__chips li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-mute);
}
.plus { color: var(--gold-deep); }

/* ── Phone video mockup (Emote-style) ──────────────────── */
.phone-mockup {
  position: relative;
  width: min(280px, 38vw);
  max-width: 320px;
  flex-shrink: 0;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  /* Shadow on wrapper so mix-blend on video can knock out black matte */
  filter: drop-shadow(0 24px 48px rgba(17, 17, 19, 0.22));
}
.phone-mockup__video {
  display: block;
  width: 100%;
  height: auto;
  background: transparent !important;
  border: 0;
  outline: none;
  /*
   * Source WebM is VP9-with-alpha, but many browsers (esp. Safari) ignore alpha
   * and paint the transparent matte as solid black. lighten knocks pure black out
   * against any page background while keeping the bright phone UI.
   */
  mix-blend-mode: lighten;
}
.phone-mockup__video::-webkit-media-controls-panel,
.phone-mockup__video::-webkit-media-controls {
  display: none !important;
  opacity: 0 !important;
}

/* Homepage hero: float on the right across all hero variants */
.phone-mockup--hero {
  position: absolute;
  right: max(1.25rem, calc((100vw - min(1360px, 100% - 2 * var(--pad))) / 2));
  top: 50%;
  width: min(300px, 24vw);
  max-width: 320px;
  transform: translateY(-50%);
  z-index: 3;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.35));
  animation: phoneFloatHero 6.5s ease-in-out infinite;
  isolation: isolate; /* keep blend local to hero stack */
}
@keyframes phoneFloatHero {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 14px)); }
}

/* Design 4 · Alloy uses its own grid phone — hide shared float */
.hero[data-hero-active="4"] .phone-mockup--hero,
.hero--edge:has([data-hero="4"].is-active) .phone-mockup--hero {
  display: none !important;
}

/* Sub-page heroes: sits in the right column */
.phone-mockup--page {
  width: min(260px, 28vw);
  animation: phoneFloatPage 6.5s ease-in-out infinite;
}
@keyframes phoneFloatPage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Service page hero art — classy 4:5 panel */
.pagehero__art {
  position: relative;
  width: min(340px, 34vw);
  max-width: 380px;
  margin: 0;
  flex-shrink: 0;
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  background: var(--card);
  box-shadow:
    0 28px 60px -18px rgba(17, 17, 19, 0.28),
    0 8px 20px -8px rgba(0, 180, 252, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  isolation: isolate;
}
.pagehero__art::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 19, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%, rgba(0, 180, 252, 0.06) 100%);
  z-index: 1;
}
.pagehero__art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.01);
}

/* Leave copy room for the floating phone on desktop */
.hero--edge .hx__ui {
  max-width: min(920px, calc(100% - min(300px, 24vw) - 2.5rem));
}
.hero--edge .hx-panel {
  max-width: min(100%, calc(100% - min(280px, 22vw) - 1.5rem));
}

@media (max-width: 1024px) {
  .phone-mockup--hero {
    width: min(220px, 28vw);
    right: 1rem;
  }
  .hero--edge .hx__ui,
  .hero--edge .hx-panel {
    max-width: min(100%, calc(100% - min(220px, 28vw) - 1.25rem));
  }
  .phone-mockup--page { width: min(210px, 32vw); }
  .pagehero__art { width: min(280px, 36vw); }
}

@media (max-width: 880px) {
  .pagehero__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .phone-mockup--page {
    order: -1;
    width: min(170px, 46vw);
    margin: 0 auto;
  }
  .pagehero__art {
    order: -1;
    width: min(240px, 58vw);
    margin: 0 auto;
  }
  .pagehero__title { max-width: none; }

  /* Stack mockup under copy on home so canvas heroes stay readable */
  .phone-mockup--hero {
    position: absolute;
    right: 1rem;
    bottom: 1.25rem;
    top: auto;
    width: min(130px, 34vw);
    transform: none;
    animation: phoneFloatPage 6.5s ease-in-out infinite;
    opacity: 0.95;
  }
  .hero--edge .hx__ui,
  .hero--edge .hx-panel {
    max-width: 100%;
    padding-bottom: clamp(5.5rem, 22vw, 8rem);
  }

}

@media (max-width: 480px) {
  .phone-mockup--hero {
    width: min(110px, 32vw);
    right: 0.75rem;
    bottom: 1rem;
  }
  .phone-mockup--page { width: min(150px, 48vw); }
  .pagehero__art { width: min(200px, 64vw); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-mockup--hero,
  .phone-mockup--page { animation: none; }
}

/* ── Service detail groups ─────────────────────────────── */
.svclist { padding-bottom: clamp(3rem, 7vw, 5rem); }
.svcgroup + .svcgroup { margin-top: clamp(2.8rem, 6vw, 4.2rem); }
.svcgroup__title {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 1.8rem;
}
.svcgroup__title .mlabel { margin-bottom: 0; }
.svcgroup__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  align-self: center;
}
.svcgroup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.svccard-wrap {
  list-style: none;
  display: flex;
}
.svccard-wrap .svccard,
a.svccard,
.svccard {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 1.5rem 1.4rem 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 0.3s, color 0.3s, transform 0.45s var(--ease), border-color 0.35s;
}
.svccard--deliverable {
  cursor: default;
}
.svccard--deliverable:hover {
  border-color: var(--signal);
  transform: translateY(-2px);
  background: #fff;
  color: inherit;
}
.svccard--deliverable:hover .svccard__desc {
  color: var(--tx-mute);
}
.svccard:hover { background: var(--ink); color: var(--tx-light); border-color: var(--ink); transform: translateY(-4px); }
.svccard__name {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-right: 2.2rem;
}
.svccard__desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--tx-mute);
  line-height: 1.55;
  transition: color 0.3s;
}
.svccard:hover .svccard__desc { color: var(--tx-light-mute); }
.svccard__arrow {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--tx-mute);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s, transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.svccard:hover .svccard__arrow {
  opacity: 1;
  transform: none;
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
}
.svccard__arrow svg { width: 11px; height: 11px; }

/* ── Other-services pill nav ───────────────────────────── */
.pillsec .section__title--sm { margin-bottom: 2.4rem; }
.pillnav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.pillnav__pill {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease);
}
.pillnav__pill:hover { background: var(--ink); color: var(--tx-light); border-color: var(--ink); transform: translateY(-3px); }
.pillnav__num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--signal-deep);
  transition: color 0.3s;
}
.pillnav__pill:hover .pillnav__num { color: var(--signal); }
.pillnav__name { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.2rem; flex: 1; line-height: 1.15; }
.pillnav__arrow { display: grid; place-items: center; opacity: 0.4; transition: opacity 0.3s, transform 0.35s var(--ease); }
.pillnav__pill:hover .pillnav__arrow { opacity: 1; transform: translate(2px, -2px); }

/* ── Pillars list (about page) ─────────────────────────── */
.pillars { display: grid; gap: 0.7rem; }
.pillar {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 1.5rem 1.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease);
}
.pillar:hover { background: var(--ink); color: var(--tx-light); border-color: var(--ink); transform: translateY(-3px); }
.pillar__num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: var(--signal-deep);
  transition: color 0.3s;
}
.pillar:hover .pillar__num { color: var(--signal); }
.pillar__body { flex: 1; display: grid; gap: 0.2rem; }
.pillar__body strong { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.1; }
.pillar__body small { color: var(--tx-mute); font-size: 0.85rem; transition: color 0.3s; }
.pillar:hover .pillar__body small { color: var(--tx-light-mute); }
.pillar__arrow { opacity: 0.4; transition: opacity 0.3s, transform 0.35s var(--ease); }
.pillar:hover .pillar__arrow { opacity: 1; transform: translate(2px, -2px); }

/* ── Stats band (about page) ───────────────────────────── */
.statsband {
  background: var(--ink);
  color: var(--tx-light);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.statsband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.statsband__stat {
  display: grid;
  gap: 0.5rem;
  border-left: 1px solid var(--line-light);
  padding-left: 1.4rem;
}
.statsband__stat:first-child { border-left: 0; padding-left: 0; }
.statsband__stat strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.statsband__stat strong span,
.statsband__stat strong span.count {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}
.statsband__stat > span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-light-mute);
}

/* ── Metric / Trust cards (Subservices & Light Sections) ──── */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}
.metric-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}
.metric-card__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.metric-card__num em {
  font-style: normal;
  color: var(--signal-deep, #0090cc);
  font-weight: 600;
}
.metric-card__label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.metric-card__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--tx-mute);
}

@media (max-width: 900px) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Prose (about story) ───────────────────────────────── */
.prose { margin-top: 1.6rem; display: grid; gap: 1.1rem; max-width: 56ch; }
.prose p { color: var(--tx-mute); font-size: 1rem; line-height: 1.75; }
.prose p:first-child { color: var(--tx); font-size: 1.1rem; }
.legal .prose { max-width: 72ch; }
.legal .prose h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
  color: var(--tx);
}
.article-body h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-top: 1.5rem; }
.article-body h3 {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--tx);
  margin-top: 0.8rem;
}
.article-body ul,
.article-body ol {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.4rem;
  color: var(--tx-mute);
  line-height: 1.7;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { padding-left: 0.25rem; }
.article-body a {
  color: var(--signal-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.article-body strong { color: var(--tx); }
.article-body blockquote {
  border-left: 3px solid var(--signal);
  padding: 0.25rem 0 0.25rem 1.2rem;
  color: var(--tx);
}
.metric-card__num {
  overflow-wrap: anywhere;
}

/* ── Contact ───────────────────────────────────────────── */
.contactpage { padding-top: clamp(2.5rem, 6vw, 4rem); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.contact__details { margin-top: 0.4rem; border-bottom: 1px solid var(--line-strong); }
.contact__details li {
  display: grid;
  gap: 0.25rem;
  padding-block: 1.15rem;
  border-top: 1px solid var(--line);
}
.contact__dlabel {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-deep);
}
.contact__details a { font-size: 1.05rem; font-weight: 500; width: fit-content; transition: color 0.25s; }
.contact__details a:hover { color: var(--signal-deep); }
.contact__details li > span:not(.contact__dlabel) { color: var(--tx-mute); font-size: 0.95rem; }

/* form — soft pill fields */
.cform {
  display: grid;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.cform__field { display: grid; gap: 0.45rem; }
.cform__field label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-mute);
}
.cform__field input,
.cform__field select,
.cform__field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: var(--tx);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.3s, background 0.3s;
}
.cform__field textarea { resize: vertical; min-height: 100px; }
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: rgba(17, 17, 19, 0.35); }
.cform__field input:focus,
.cform__field select:focus,
.cform__field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.cform__select { position: relative; }
.cform__select::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--tx-mute);
  border-bottom: 1.5px solid var(--tx-mute);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.cform__select select { appearance: none; cursor: pointer; }
.cform__submit { width: 100%; margin-top: 0.4rem; }
.cform__note { font-size: 0.85rem; color: var(--tx-mute); }
.cform__note a { color: var(--signal-deep); font-weight: 500; }
.cform.is-sent .cform__submit { background: var(--signal); border-color: var(--signal); color: var(--ink); pointer-events: none; }
.cform__honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

/* ── Footer (ink) ──────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--tx-light);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.footer__tag { color: var(--tx-light-mute); max-width: 30ch; font-size: 0.95rem; }
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-top: 1.8rem;
}
.footer__socials a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-light-mute);
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.footer__socials a:hover { color: var(--signal); border-color: var(--signal); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__col { display: grid; gap: 0.6rem; align-content: start; }
.footer__col h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.5rem;
}
.footer__col a {
  color: var(--tx-light-mute);
  font-size: 0.9rem;
  width: fit-content;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--tx-light); }
.footer__addr { color: var(--tx-light-mute); font-size: 0.9rem; line-height: 1.55; }

.footer__word {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.5rem, 13.5vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-align: center;
  color: #1f1f24;
  transform: translateY(0.08em);
  user-select: none;
  white-space: nowrap;
}
.footer__word sup {
  font-size: 0.12em;
  font-family: var(--sans);
  font-weight: 600;
  font-stretch: 100%;
  font-weight: 400;
  vertical-align: super;
  color: var(--signal);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-block: 1.4rem 1.6rem;
  border-top: 1px solid var(--line-light);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-light-mute);
}

/* ── WhatsApp float ────────────────────────────────────── */
.wafloat {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.wafloat svg {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}
.wafloat:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

/* ── Reveal animations (Motion.dev handles the animation) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  filter: blur(12px);
}
[data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }

/* will-change hints for Motion.dev animated elements */
.svctile, .wcard, .statcard, .step { will-change: transform, opacity; }
.shd__title, .intro__title, .svcgroup__title { will-change: transform, opacity; }
.footer__col { will-change: transform, opacity; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header__phone { display: none; }
  .mega { display: none; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work__cell:nth-child(2n) { border-right: 0; }
  .work__cell:nth-child(n+9) { border-bottom: 1px solid var(--line); }
  .work__cell:nth-child(n+11) { border-bottom: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .svcgroup__grid { grid-template-columns: repeat(2, 1fr); }
  .svcgrid { grid-template-columns: repeat(2, 1fr); }
  .svctile, .svctile--feature { grid-column: span 1; }
  .svctile--feature { grid-column: span 2; }
  .hero__main { grid-template-columns: 1fr; align-items: start; }
  .hero__visual { max-width: 560px; }
  .heromock { left: 0.8rem; }
  .herochip { right: 0.8rem; }
}

@media (max-width: 880px) {
  :root { --header-h: 76px; }
  .header__logo .logo { height: 36px; }
  .about__grid,
  .contact__grid,
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .process__steps { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .step__title { margin-top: 2.6rem; }
  .testi__grid { grid-template-columns: 1fr; max-width: 580px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .hero__stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .statsband__grid { grid-template-columns: repeat(2, 1fr); }
  .statsband__stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .cform__row { grid-template-columns: 1fr; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .statement__line--indent { padding-left: clamp(1.5rem, 8vw, 4rem); }
}

@media (max-width: 640px) {
  .svcgrid { grid-template-columns: 1fr; }
  .svctile, .svctile--feature { grid-column: span 1; min-height: 0; }
  .svcgroup__grid { grid-template-columns: 1fr; }
  .pillnav { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 100%; }
  .heromock { display: none; }
  .herochip { right: 0.6rem; bottom: 0.6rem; }
  .pagehero__chips { gap: 0.6rem 1.4rem; }
  .hero__ghost { font-size: 24vw; }
}

/* ══════════════════════════════════════════════════════════
   AWWARDS INTERACTIVE ANIMATION & EFFECTS SYSTEM
   ══════════════════════════════════════════════════════════ */

/* 1. Custom Glow Cursor — OFF for now (re-enable styles + main.js block later) */
.cursor-dot,
.cursor-ring {
  display: none !important;
}
body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: auto !important;
}

/* 2. Ambient Glowing Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: ambientFloat 18s ease-in-out infinite alternate;
}
.ambient-orb--1 {
  top: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, rgba(0, 136, 255, 0.1) 60%, transparent 80%);
}
.ambient-orb--2 {
  bottom: 10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, rgba(255, 100, 0, 0.08) 60%, transparent 80%);
  animation-delay: -9s;
}

@keyframes ambientFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* 3. Interactive Spotlight Glow on Bento & Cards */
.svctile, .wcard, .statcard, .step, .svcgroup__card, .faq__item {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.svctile::before, .wcard::before, .svcgroup__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(0, 136, 255, 0.09), transparent 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.svctile:hover::before, .wcard:hover::before, .svcgroup__card:hover::before {
  opacity: 1;
}

.svctile:hover, .wcard:hover, .svcgroup__card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 136, 255, 0.3);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.06);
}

/* 4. Magnetic Physics Buttons */
[data-magnetic] {
  display: inline-block;
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 5. Shimmer Gradient Accent Headings */
.hero__title em, .intro__title em {
  background: linear-gradient(135deg, var(--signal-deep, #0088ff) 0%, #00e5ff 50%, var(--signal-deep, #0088ff) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGrad 6s linear infinite;
}

@keyframes shimmerGrad {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ── Snapshot mode (testing/screenshots via ?snap=1) ───── */
.snap [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
.snap .preloader { display: none !important; }
.snap .hero { min-height: 0; }

/* ═══════════════════════════════════════════════════════════
   HERO EDGE — cutting-edge systems 1–8
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   WORLD-CLASS HERO EDGE (1–8)
   Aether · Tensile · Aperture · Alloy · Veil · Meridian · Nexus · Obsidian
   ═══════════════════════════════════════════════════════════ */
.hero--edge {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  padding-bottom: 0;
  overflow: hidden;
  background: #05070b;
}
.hero--edge .hero-variant.hx {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  width: 100%;
  display: flex;
  align-items: center;
}
.hx__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.hx__ui {
  position: relative;
  z-index: 2;
  padding-block: clamp(2rem, 8vh, 5rem);
  max-width: 920px;
}
.hx__eye {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.hx__eye--dark { color: var(--tx-mute); }
.hx__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(0, 180, 252, 0.5);
  animation: hxPulse 2s ease infinite;
}
@keyframes hxPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 180, 252, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(0, 180, 252, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 252, 0); }
}
.hx__display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7.2vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #f4f7fb;
}
.hx__line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hx__word { display: inline-block; will-change: transform, filter, opacity; }
.hx__word--glow {
  background: linear-gradient(120deg, #70e1ff 0%, #35c3f3 40%, #fff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hx__word--em { color: var(--signal); }
.hx__sub {
  margin-top: 1.35rem;
  max-width: 42ch;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: rgba(244,247,251,0.62);
}
.hx__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }
.hx__btn--ghost {
  border-color: rgba(255,255,255,0.28) !important;
  color: #fff !important;
}
.hx__ticker {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-top: 2.2rem; list-style: none; padding: 0;
}
.hx__ticker li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* section backgrounds */
.hero--edge:has([data-hero="1"].is-active), .hero[data-hero-active="1"] { background: #061820; }
.hero--edge:has([data-hero="2"].is-active), .hero[data-hero-active="2"] { background: #f7fafc; }
.hero--edge:has([data-hero="3"].is-active), .hero[data-hero-active="3"] { background: #05070b; }
.hero--edge:has([data-hero="4"].is-active), .hero[data-hero-active="4"] { background: #0a0b0d; }
.hero--edge:has([data-hero="5"].is-active), .hero[data-hero-active="5"] { background: #eef4f8; }
.hero--edge:has([data-hero="6"].is-active), .hero[data-hero-active="6"] { background: #f4f7fa; }
.hero--edge:has([data-hero="7"].is-active), .hero[data-hero-active="7"] { background: #07090e; }
.hero--edge:has([data-hero="8"].is-active), .hero[data-hero-active="8"] { background: #eef4f8; }

/* shared panel UI */
.hx-panel {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
  padding-block: clamp(2rem, 6vh, 4rem);
  pointer-events: none;
}
.hx-panel a, .hx-panel .btn, .hx-panel button { pointer-events: auto; }
.hx-panel--bottom { justify-content: flex-end; }
.hx-panel--split {
  justify-content: space-between;
  max-width: none;
  width: 100%;
}
.hx-panel__top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: 100%;
}
.hx-panel__bottom { max-width: 34rem; }
.hx-panel__kicker {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tx-mute); margin-bottom: 0.55rem;
}
.hx-panel__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  letter-spacing: -0.045em; line-height: 1.0; color: #f4f7fb;
}
.hx-panel__title em {
  font-style: normal;
  background: linear-gradient(120deg, #70e1ff, #35c3f3 55%, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hx-panel__title--ink { color: var(--ink); }
.hx-panel__title--ink em {
  background: none; color: var(--signal-deep);
  -webkit-background-clip: border-box; background-clip: border-box;
}
.hx-panel__sub {
  margin-top: 1.1rem; max-width: 40ch;
  color: rgba(244,247,251,0.58); line-height: 1.55; font-size: 1.05rem;
}
.hx-panel__sub--mute { color: var(--tx-mute); }

/* ── Design 4 · Alloy — cutting-edge phone + type hero ──── */
.hx--alloy {
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* Keep parallax layers from stacking on buttons / each other */
.hx--alloy .hx__canvas {
  z-index: 0;
}
.hx-alloy__fx {
  z-index: 1;
}
.hx-alloy {
  z-index: 2;
}
.hx-alloy__phone {
  z-index: 2;
  isolation: isolate;
}
.hx-alloy__copy {
  position: relative;
  z-index: 3; /* title + CTAs always above phone on scroll */
  isolation: isolate;
  min-width: 0; /* allow grid shrink so text wraps instead of overflowing */
  box-sizing: border-box;
}
.hx-alloy__cta {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  /* hard stop: no transform stacking from child parallax leftovers */
  transform: none !important;
}
.hx-alloy__cta .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}
.hx--alloy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 18% 55%, rgba(53, 195, 243, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 45% 40% at 78% 40%, rgba(112, 225, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.15) 0%, transparent 28%, transparent 72%, rgba(10, 11, 13, 0.35) 100%);
}
.hx--alloy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(112, 225, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 225, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, #000 20%, transparent 75%);
  opacity: 0.7;
}

/* Ambient FX layer */
.hx-alloy__fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hx-alloy__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: hxAlloyOrb 10s ease-in-out infinite;
}
.hx-alloy__orb--a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  left: 4%;
  top: 28%;
  background: radial-gradient(circle, rgba(53, 195, 243, 0.45) 0%, rgba(10, 134, 180, 0.12) 45%, transparent 70%);
}
.hx-alloy__orb--b {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  right: 12%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(112, 225, 255, 0.22) 0%, transparent 70%);
  animation-delay: -4s;
  animation-duration: 12s;
}
.hx-alloy__beam {
  position: absolute;
  left: 8%;
  top: -10%;
  width: 1px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(112, 225, 255, 0.35), transparent);
  transform: rotate(18deg);
  opacity: 0.35;
}
.hx-alloy__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}
@keyframes hxAlloyOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(12px, -18px) scale(1.06); opacity: 0.72; }
}

.hx-alloy {
  position: relative;
  z-index: 2;
  display: grid;
  /* Full-width band: phone ~38% | copy ~62% — use the whole container */
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  align-items: center;
  column-gap: clamp(2rem, 5vw, 5.5rem);
  row-gap: 1.75rem;
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(1.25rem, 3vh, 2.5rem) clamp(1.5rem, 4vh, 3rem);
  /* Keep clear gutters so copy never kisses the viewport edge */
  padding-inline: var(--pad);
  width: min(1360px, 100%);
  max-width: 100%;
  margin-inline: auto;
  flex: 1 1 auto;
  align-self: stretch;
  box-sizing: border-box;
  pointer-events: none;
}
.hx-alloy a,
.hx-alloy .btn,
.hx-alloy .phone-frame,
.hx-alloy .phone-frame__sound {
  pointer-events: auto;
}

/* Phone column — fill its grid track */
.hx-alloy__phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: min(400px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.5));
  will-change: transform;
}
.hx-alloy__phone-ring {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(112, 225, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(53, 195, 243, 0.06) inset,
    0 0 60px rgba(53, 195, 243, 0.12);
  pointer-events: none;
  will-change: transform;
  animation: hxAlloyRing 8s ease-in-out infinite;
}
.hx-alloy__phone-ring::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(112, 225, 255, 0.14);
  animation: hxAlloySpin 28s linear infinite;
}
@keyframes hxAlloyRing {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes hxAlloySpin {
  to { transform: rotate(360deg); }
}

/* ── Premium Phone Frame for Teaser Video ── */
.phone-frame {
  position: relative;
  width: min(290px, 30vw);
  max-width: 310px;
  aspect-ratio: 9 / 16;
  border-radius: clamp(34px, 4vw, 44px);
  padding: 8px;
  background: linear-gradient(155deg, #2a2f3d 0%, #12151b 50%, #0a0d13 100%);
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.9),
    0 28px 65px -14px rgba(0, 0, 0, 0.8),
    0 0 50px -10px rgba(0, 242, 254, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  pointer-events: auto;
  user-select: none;
  isolation: isolate;
  will-change: transform;
}
.hx-alloy__phone {
  perspective: 1400px;
  perspective-origin: 0% 50%;
}
.hx-alloy .phone-frame {
  transform: rotateY(14deg) rotateX(6deg);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 32%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
  z-index: 5;
}

.phone-frame__notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 15px;
  background: #000000;
  border-radius: 12px;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.phone-frame__notch::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d1f30;
  box-shadow: 0 0 1px #00f2fe;
}

.phone-frame__video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: clamp(28px, 3.2vw, 36px) !important;
  display: block !important;
  mix-blend-mode: normal !important;
  background: #000000 !important;
  max-width: none !important;
  max-height: none !important;
}

.phone-frame__sound {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 20;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.phone-frame__sound:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.06);
}
.phone-frame__ico {
  width: 16px;
  height: 16px;
  display: block;
  color: #fff;
  pointer-events: none;
}
.phone-frame__ico--on { display: none; }
.phone-frame__sound.is-on .phone-frame__ico--off { display: none; }
.phone-frame__sound.is-on .phone-frame__ico--on { display: block; }

.phone-mockup--teaser {
  filter: none !important;
}
.phone-mockup--teaser .phone-frame {
  width: min(280px, 24vw);
  max-width: 300px;
}

@media (max-width: 960px) {
  .phone-frame {
    width: min(240px, 26vw);
  }
}

@media (max-width: 720px) {
  .phone-frame {
    width: min(200px, 50vw);
    border-radius: 32px;
    padding: 6px;
  }
  .phone-frame__notch {
    width: 52px;
    height: 12px;
    top: 9px;
  }
  .phone-frame__sound {
    bottom: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 0.64rem;
  }
}

.hx-alloy__video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: min(400px, 100%);
  height: auto;
  max-height: min(78vh, 640px);
  margin-inline: auto;
  object-fit: contain;
  background: transparent !important;
  will-change: transform;
}
.hx-alloy__video::-webkit-media-controls-panel,
.hx-alloy__video::-webkit-media-controls {
  display: none !important;
  opacity: 0 !important;
}
.hx-alloy__copy {
  will-change: transform;
}
.hx--alloy .hx__canvas,
.hx-alloy__fx,
.hx-alloy__phone {
  will-change: transform;
}

/* Copy column — span remaining width, stay clear of right edge */
.hx-alloy__copy {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(0.5rem, 3vw, 2.5rem);
  padding-right: clamp(0.25rem, 1.5vw, 1rem);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.hx-alloy__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin-bottom: 1.25rem;
}
.hx-alloy__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(252, 192, 60, 0.1);
  border: 1px solid rgba(252, 192, 60, 0.35);
  box-shadow: 0 0 24px rgba(252, 192, 60, 0.12);
}
.hx--alloy .hx-alloy__eye,
.hx--alloy .hx__eye {
  color: rgba(244, 247, 251, 0.62);
  margin-bottom: 1.15rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}
.hx-alloy__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 3.75rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  color: #f7fafc;
  max-width: min(18em, 100%);
  width: 100%;
  margin: 0;
  padding-right: 0.15em; /* optical room for tight letter-spacing */
  box-sizing: border-box;
}
.hx-alloy__line {
  display: block;
  max-width: 100%;
}
.hx-alloy__line--accent {
  background: linear-gradient(
    105deg,
    #f7fafc 0%,
    var(--signal-bright) 28%,
    var(--signal) 48%,
    var(--gold) 72%,
    #f7fafc 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hxAlloyShine 7s ease-in-out infinite;
}
.hx-alloy__title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 28px rgba(252, 192, 60, 0.35);
}
@keyframes hxAlloyShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hx-alloy__rule {
  width: min(8rem, 34%);
  height: 2px;
  margin-top: 1.35rem;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--signal) 0%, var(--gold) 55%, transparent 100%);
  box-shadow: 0 0 16px rgba(0, 180, 252, 0.35);
}
.hx--alloy .hx-alloy__cta,
.hx--alloy .hx__cta {
  margin-top: 1.55rem;
  gap: 0.75rem;
}
.hx--alloy .hx-alloy__btn.btn--primary {
  background: var(--signal);
  border-color: var(--signal);
  color: #061018;
  box-shadow:
    0 8px 28px rgba(53, 195, 243, 0.32),
    0 0 0 1px rgba(112, 225, 255, 0.2) inset;
}
.hx--alloy .hx-alloy__btn.btn--primary:hover {
  background: var(--signal-bright);
  border-color: var(--signal-bright);
  color: #061018;
  box-shadow: 0 12px 36px rgba(53, 195, 243, 0.45);
}
.hx--alloy .hx__btn--ghost {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.hx--alloy .hx__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(112, 225, 255, 0.45) !important;
  color: #fff !important;
  box-shadow: 0 0 28px rgba(53, 195, 243, 0.18);
}

@media (max-width: 1100px) {
  .hx-alloy {
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.25fr);
    column-gap: clamp(1.5rem, 3.5vw, 3rem);
  }
  .hx-alloy__video {
    max-width: min(340px, 100%);
    max-height: min(70vh, 560px);
  }
  .hx-alloy__title {
    font-size: clamp(1.85rem, 3.8vw, 3rem);
    line-height: 0.94;
    letter-spacing: -0.052em;
  }
}

@media (max-width: 960px) {
  .hx-alloy {
    grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.2fr);
    column-gap: 1.5rem;
    width: min(1360px, 100% - 2 * var(--pad));
  }
  .hx-alloy__video {
    max-width: min(280px, 100%);
    max-height: min(58vh, 480px);
  }
  .hx-alloy__title {
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    max-width: 100%;
    line-height: 0.95;
    letter-spacing: -0.05em;
  }
  .hx-alloy__phone-ring {
    width: min(100%, 320px);
  }
}

@media (max-width: 720px) {
  .hx-alloy {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
    gap: 1.25rem;
    padding-block: 1rem 2rem;
    width: min(1360px, 100% - 2 * var(--pad));
    min-height: calc(100svh - var(--header-h));
  }
  .hx-alloy__phone { order: -1; }
  .hx-alloy__phone { perspective: 1000px; perspective-origin: 50% 50%; }
  .hx-alloy .phone-frame { transform: rotateY(8deg) rotateX(4deg); }
  .hx-alloy__video {
    width: min(200px, 48vw);
    max-width: 220px;
    max-height: 44vh;
  }
  .hx-alloy__phone-ring {
    width: min(260px, 62vw);
  }
  .hx-alloy__copy {
    max-width: 100%;
    width: 100%;
    align-items: center;
    padding-inline: 0.15rem;
    padding-right: 0.35rem;
  }
  .hx-alloy__meta {
    justify-content: center;
    flex-direction: column;
    gap: 0.55rem;
  }
  .hx-alloy__title {
    font-size: clamp(1.55rem, 6.2vw, 2.15rem);
    max-width: 20em;
    line-height: 0.96;
    letter-spacing: -0.048em;
  }
  .hx-alloy__phone-ring {
    will-change: transform;
  }
  .hx-alloy__rule {
    margin-inline: auto;
  }
  .hx--alloy .hx-alloy__cta,
  .hx--alloy .hx__cta {
    justify-content: center;
    margin-top: 1.25rem;
  }
  .hx-alloy__beam { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hx-alloy__orb,
  .hx-alloy__orb--a,
  .hx-alloy__orb--b,
  .hx-alloy__phone-ring,
  .hx-alloy__phone-ring::before,
  .hx-alloy__line--accent {
    animation: none !important;
  }
  .hx--alloy .hx__canvas,
  .hx-alloy__fx,
  .hx-alloy__phone,
  .hx-alloy__copy,
  .hx-alloy__line,
  .hx-alloy__cta {
    transform: none !important;
  }
}

/* Header CTA readable on dark heroes */
html[data-hero-theme="dark"] .header .header__cta.btn--primary {
  background: var(--signal);
  border-color: var(--signal);
  color: #061018;
  box-shadow: 0 6px 20px rgba(53, 195, 243, 0.28);
}
html[data-hero-theme="dark"] .header .header__cta.btn--primary:hover {
  background: #fff;
  border-color: #fff;
  color: #061018;
}

.hx-switch { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.hx-switch button {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-weight: 600; font-size: 0.72rem;
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.hx-switch button.is-on,
.hx-switch button:hover {
  background: var(--signal); color: #061018; border-color: transparent;
}

.hx-meta {
  display: flex; gap: 1.5rem;
  list-style: none; padding: 0; margin: 1.15rem 0 0;
}
.hx-meta strong {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: 1.3rem; color: #70e1ff; letter-spacing: -0.03em;
}
.hx-meta span {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hx--aether, .hx--morph, .hx--alloy, .hx--nexus { color: #fff; }
.hx--tensile, .hx--spring, .hx--stage, .hx--drift { color: var(--ink); }

/* Stage choreography */
.hx--stage { overflow: hidden; }
.hx-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hx-stage__orb {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #70e1ff, #0a86b4 55%, #0a4a66);
  box-shadow: 0 0 60px rgba(53,195,243,0.35);
  will-change: transform;
}
.hx-stage__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(52vw, 380px);
  height: min(52vw, 380px);
  margin: calc(min(52vw, 380px) / -2) 0 0 calc(min(52vw, 380px) / -2);
  border: 1px dashed rgba(10,134,180,0.2);
  border-radius: 50%;
  will-change: transform;
}
.hx-stage__card {
  position: absolute;
  left: 0;
  top: 0;
  width: 112px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(17,17,19,0.08);
  box-shadow: 0 16px 40px -20px rgba(17,17,19,0.28);
  will-change: transform, opacity;
}
.hx-stage__card span {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--signal-deep);
  margin-bottom: 0.2rem;
}
.hx-stage__card strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hx--stage .hx-panel { z-index: 2; }
.hx--spring .hx-panel,
.hx--drift .hx-panel,
.hx--tensile .hx-panel { z-index: 2; }

/* switcher */
.hero-switcher {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  max-width: min(96vw, 920px);
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(10,12,18,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.55);
}
.hero-switcher__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 0.4rem;
}
.hero-switcher__btn {
  flex: none;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  transition: 0.25s var(--ease);
}
.hero-switcher__btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.hero-switcher__btn.is-active {
  color: #061018;
  background: var(--signal);
}
.snap .hero-switcher { display: none !important; }
/* Hidden for now — remove .is-hidden + hidden attr on #heroSwitcher to restore */
.hero-switcher.is-hidden,
.hero-switcher[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .hx__display { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .hx-panel__title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-switcher {
    bottom: 0.65rem;
    border-radius: 18px;
    max-height: 22vh;
    overflow: auto;
  }
  .hx-panel__top { flex-direction: column; align-items: flex-start; }
}

/* Three.js mounts (9–13) */
.hx-three {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hx-three canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.hx--wave, .hx--galaxy, .hx--crystal, .hx--knot, .hx--globe { color: #fff; }
.hx--wave .hx-panel,
.hx--galaxy .hx-panel,
.hx--crystal .hx-panel,
.hx--knot .hx-panel,
.hx--globe .hx-panel { z-index: 2; position: relative; }

.hero--edge:has([data-hero="9"].is-active), .hero[data-hero-active="9"] { background: #061820; }
.hero--edge:has([data-hero="10"].is-active), .hero[data-hero-active="10"] { background: #03050a; }
.hero--edge:has([data-hero="11"].is-active), .hero[data-hero-active="11"] { background: #070b12; }
.hero--edge:has([data-hero="12"].is-active), .hero[data-hero-active="12"] { background: #080a10; }
.hero--edge:has([data-hero="13"].is-active), .hero[data-hero-active="13"] { background: #050910; }

/* ── About Studio Visual Enhancement ──────────────────── */
.about__visual-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 180, 252, 0.25);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.about__photo:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 252, 0.5);
}

/* ── 404 Page ──────────────────────────────────────────── */
.notfound {
  padding-block: clamp(6rem, 12vw, 10rem);
  min-height: 75vh;
  display: flex;
  align-items: center;
}
.notfound__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.notfound__code {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--signal);
  margin-bottom: 0.8rem;
}
.notfound__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.notfound__sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--tx-mute);
  margin-bottom: 2rem;
  max-width: 480px;
}
.notfound__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.notfound__visual img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 180, 252, 0.3);
  border: 1px solid rgba(0, 180, 252, 0.35);
}
.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.brief-card {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
}
.brief-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.brief-card p, .brief-wrap .section__sub {
  color: var(--tx-mute);
}
.brief-list {
  display: grid;
  gap: 0.65rem;
  max-width: 62ch;
  padding-left: 1.1rem;
}
.brief-list li { color: var(--tx-mute); }
.visit__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 800px) {
  .brief-grid, .visit__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hx-alloy__video, .phone-mockup--teaser video { display: none; }
}
.blog-list {
  display: grid;
  gap: 1.2rem;
  max-width: 72ch;
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.3rem 1.5rem;
}
.blog-card__date { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tx-mute); }
.blog-card__title { font-size: 1.2rem; margin: 0.4rem 0 0.5rem; }
.blog-card__title a { color: inherit; }
.article__date { margin-bottom: 1rem; color: var(--tx-mute); font-size: 0.9rem; }
@media (max-width: 900px) {
  .notfound__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .notfound__sub { margin-inline: auto; }
  .notfound__actions { justify-content: center; }
  .notfound__visual { order: -1; margin-inline: auto; }
}

.feat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.feat__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feat__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.feat__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
}
.feat__meta {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tx-mute);
}
.feat__meta span { color: var(--signal-deep); }
.feat__logo {
  height: 2rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
  object-position: left;
  margin: 0.35rem 0 0.15rem;
}
.feat__client {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.feat__title {
  margin: 0;
  font-weight: 600;
}
.feat__sum {
  margin: 0;
  color: var(--tx-mute);
  flex: 1;
}
.feat__visit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.feat__visit:hover { color: var(--signal-deep); }

.wrail { overflow: hidden; }
.wrail__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.wrail__head .section__title { margin: 0.35rem 0 0; }
.wrail__nav { display: flex; gap: 0.75rem; flex-shrink: 0; }
.wrail__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 var(--pad) 0.5rem;
  scrollbar-width: none;
}
.wrail__track::-webkit-scrollbar { display: none; }
.wrail__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0;
}
.creative { width: min(260px, 72vw); }
.creative img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  background: var(--card);
}
.wrail__item figcaption {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: var(--tx-mute);
}
.wrail__item figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}
.reel { width: 220px; }
.reel__phone {
  width: 220px;
  max-width: 220px;
  will-change: auto;
}
.hvid { width: min(680px, 86vw); }
.hvid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: #111;
  display: block;
}
@media (max-width: 900px) {
  .feat__grid { grid-template-columns: 1fr; }
  .wrail__head { align-items: flex-start; flex-direction: column; }
}
