/* ==========================================================================
   The Key of Connection — design system
   1. Tokens   2. Base   3. Layout   4. Buttons & links   5. Top bar & header
   6. Hero & page hero   7. Sections   8. Cards & components   9. Forms
   10. Footer & fixed UI   11. Popup & lightbox   12. Motion   13. Responsive
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  /* Palette sampled from the butterfly logo: teal #2e8faa, magenta #a8188f, violet #300060 */
  --night: #120a26;
  --night-2: #1b1036;
  --night-3: #261749;
  --violet: #300060;
  --violet-2: #5b2a8c;
  --teal: #2e8faa;
  --teal-2: #6cc6db;
  --magenta: #a8188f;
  --magenta-2: #e77bd0;
  --gold: #e8cf9a;
  --gold-2: #b98f45;
  --pearl: #fbf8fc;
  --pearl-2: #f3edf7;
  --pearl-3: #e8def0;
  --ink: #1c1330;
  --ink-2: #3a3052;
  --muted: #5e5673;
  --on-dark: #f5f1fb;
  --on-dark-2: #cfc5e0;
  --on-dark-3: #a79cbd;
  --line-light: rgba(48, 0, 96, .12);
  --line-dark: rgba(255, 255, 255, .12);

  --grad-brand: linear-gradient(120deg, #2e8faa 0%, #6a3aa6 50%, #a8188f 100%);
  --grad-brand-soft: linear-gradient(120deg, #7fd3e6 0%, #c29cf0 50%, #f08ad9 100%);
  --grad-night: radial-gradient(120% 90% at 85% 0%, #2c1759 0%, #120a26 58%);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-hero: clamp(2.55rem, 1.1rem + 5.2vw, 5.5rem);
  --fs-h1: clamp(2.3rem, 1.3rem + 3.6vw, 4.4rem);
  --fs-h2: clamp(1.95rem, 1.2rem + 2.6vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 1.05rem + .7vw, 1.6rem);
  --fs-lead: clamp(1.06rem, 1rem + .35vw, 1.24rem);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(18, 10, 38, .06), 0 8px 24px rgba(18, 10, 38, .07), 0 30px 60px -18px rgba(18, 10, 38, .16);
  --shadow-2: 0 2px 4px rgba(18, 10, 38, .08), 0 16px 40px rgba(18, 10, 38, .12), 0 50px 100px -24px rgba(48, 0, 96, .34);
  --shadow-dark: 0 20px 50px -18px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .12);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --container: 1240px;
  --gutter: clamp(1rem, .55rem + 2vw, 2rem);
  --topbar-h: 42px;
  --header-h: 82px;
  --section-y: clamp(4.5rem, 3rem + 6vw, 8.5rem);

  --z-header: 50;
  --z-totop: 55;
  --z-mobilebar: 60;
  --z-menu: 70;
  --z-lightbox: 80;
  --z-popup: 90;
  --z-skip: 100;
}

/* 2. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
p { margin: 0 0 1.1em; text-wrap: pretty; }
ul, ol { padding-left: 1.2em; }
::selection { background: var(--magenta); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 8px; }
.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: var(--z-skip);
  padding: .8rem 1.2rem; border-radius: 12px; background: #fff; color: var(--ink); font-weight: 700;
  transform: translateY(-160%); transition: transform .3s var(--ease);
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }

/* 3. Layout ---------------------------------------------------------------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 880px); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-y); }
.section--pearl { background: var(--pearl); }
.section--mist { background: var(--pearl-2); }
.section--dark { background: var(--night); color: var(--on-dark); isolation: isolate; overflow: hidden; }
.section--dark .muted, .section--dark p { color: var(--on-dark-2); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font: 700 .76rem/1 var(--font-body); letter-spacing: .22em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 1.4rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }
.eyebrow__num { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.05rem; letter-spacing: 0; text-transform: none; }
.section--dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow, .cta-band .eyebrow { color: var(--teal-2); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }
.section-head--split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.section-head--split > div { max-width: 700px; }
.section-title { font-size: var(--fs-h2); font-weight: 350; }
.section-title em, .page-hero__title em, .cta-band__title em, .grad-em {
  font-style: italic; font-weight: 300;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .05em;
}
.section--dark .section-title em, .page-hero__title em, .cta-band__title em, .section--dark .grad-em { background-image: var(--grad-brand-soft); }
.lead { font-size: var(--fs-lead); color: var(--muted); }
.section--dark .lead { color: var(--on-dark-2); }
.muted { color: var(--muted); }
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); margin-top: 2.2em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.8em; }
.prose a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }

/* Grain + stars + aurora (shared by dark surfaces) */
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.stars, .stars::before, .stars::after { position: absolute; inset: 0; pointer-events: none; }
.stars {
  z-index: -2;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 18%, #fff 50%, transparent 55%),
    radial-gradient(1px 1px at 67% 42%, #fff 50%, transparent 55%),
    radial-gradient(1.4px 1.4px at 38% 76%, rgba(255,255,255,.85) 50%, transparent 55%),
    radial-gradient(1px 1px at 88% 12%, #fff 50%, transparent 55%),
    radial-gradient(1px 1px at 6% 88%, rgba(255,255,255,.7) 50%, transparent 55%);
  background-size: 290px 290px;
  opacity: .55;
}
.stars::before, .stars::after { content: ""; }
.stars::before {
  background-image:
    radial-gradient(1.6px 1.6px at 22% 58%, #bfe9f3 50%, transparent 55%),
    radial-gradient(1px 1px at 74% 82%, #fff 50%, transparent 55%),
    radial-gradient(1.2px 1.2px at 52% 8%, #f5c7ec 50%, transparent 55%);
  background-size: 430px 430px;
  animation: twinkle 7s ease-in-out infinite alternate;
}
.stars::after {
  background-image:
    radial-gradient(2px 2px at 33% 33%, rgba(255,255,255,.9) 50%, transparent 55%),
    radial-gradient(1.3px 1.3px at 81% 61%, #fff 50%, transparent 55%);
  background-size: 610px 610px;
  animation: twinkle 11s ease-in-out infinite alternate-reverse;
}
.aurora { position: absolute; z-index: -1; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; }
.aurora--teal { width: min(46vw, 680px); aspect-ratio: 1; background: var(--teal); top: -22%; right: -10%; animation: drift 20s var(--ease-io) infinite alternate; }
.aurora--magenta { width: min(36vw, 560px); aspect-ratio: 1; background: var(--magenta); bottom: -26%; right: 16%; opacity: .42; animation: drift 24s var(--ease-io) infinite alternate-reverse; }
.aurora--violet { width: min(40vw, 620px); aspect-ratio: 1; background: var(--violet-2); top: 12%; left: -18%; opacity: .45; animation: drift 28s var(--ease-io) infinite alternate; }

/* 4. Buttons & links ------------------------------------------------------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .95rem 1.65rem; border-radius: var(--radius-pill); border: 1px solid transparent;
  font: 700 .97rem/1.1 var(--font-body); letter-spacing: .01em; white-space: nowrap; cursor: pointer;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn .icon { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn--primary {
  color: #fff; background: var(--grad-brand); background-size: 150% 100%;
  box-shadow: 0 12px 30px -10px rgba(168, 24, 143, .6), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .42) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 1s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 18px 40px -12px rgba(168, 24, 143, .7), 0 0 0 4px rgba(168, 24, 143, .12), inset 0 1px 0 rgba(255, 255, 255, .28); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--ghost { color: #fff; background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .28); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn--ghost:hover { background: #fff; color: var(--night); border-color: #fff; transform: translateY(-2px); }
.btn--outline { color: var(--ink); background: transparent; border-color: rgba(28, 19, 48, .22); }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn--light { color: var(--night); background: #fff; box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .45); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .55), 0 0 0 4px rgba(255, 255, 255, .15); }
.btn--sm { min-height: 44px; padding: .7rem 1.2rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .75; cursor: progress; }
.btn__spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .8s linear infinite; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading .icon { display: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--magenta);
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; padding-bottom: 2px;
  transition: background-size .45s var(--ease), color .2s;
}
.link-arrow .icon { width: 17px; height: 17px; transition: transform .45s var(--ease); }
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow:hover .icon { transform: translate(3px, -3px); }
.section--dark .link-arrow { color: var(--teal-2); }

/* 5. Top bar & header ------------------------------------------------------ */
.topbar {
  position: absolute; inset: 0 0 auto; height: var(--topbar-h); z-index: calc(var(--z-header) + 1);
  color: var(--on-dark-2); font-size: .83rem; background: rgba(8, 4, 20, .5);
  border-bottom: 1px solid var(--line-dark); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.topbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar__list { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; transition: color .2s; }
.topbar__item .icon { width: 15px; height: 15px; color: var(--teal-2); }
a.topbar__item:hover { color: #fff; }
.social { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.social a {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; border: 1px solid transparent;
  transition: background .25s, border-color .25s, color .25s, transform .35s var(--ease);
}
.social a .icon { width: 15px; height: 15px; }
.social a:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); color: #fff; transform: translateY(-2px); }
.social--lg a { width: 44px; height: 44px; border-color: rgba(255, 255, 255, .16); }
.social--lg a .icon { width: 18px; height: 18px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: var(--z-header); color: #fff;
  transform: translate3d(0, var(--topbar-h), 0);
  transition: transform .55s var(--ease), background-color .4s, box-shadow .4s, backdrop-filter .4s;
}
.site-header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; transition: height .45s var(--ease); }
.site-header.is-scrolled {
  transform: none; background: rgba(18, 10, 38, .74);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08), 0 24px 40px -24px rgba(0, 0, 0, .6);
}
.site-header.is-scrolled .site-header__inner { height: 70px; }
.site-header.is-hidden { transform: translate3d(0, -110%, 0); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; border-radius: 50%; }
.brand__badge {
  width: 64px; height: 64px; border-radius: 50%; background: #fff; display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .14), 0 0 0 8px rgba(168, 24, 143, .16), 0 12px 30px -6px rgba(46, 143, 170, .6);
  transition: width .45s var(--ease), height .45s var(--ease), box-shadow .45s, transform .6s var(--ease);
}
.brand__badge img { width: 100%; height: 100%; object-fit: contain; }
.brand:hover .brand__badge { transform: rotate(-8deg) scale(1.04); }
.site-header.is-scrolled .brand__badge { width: 52px; height: 52px; }

.nav { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: .3rem; padding: .65rem .85rem; border-radius: 999px;
  background: none; border: 0; color: var(--on-dark-2); font-weight: 600; font-size: .94rem; cursor: pointer; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .38rem; height: 1.5px; border-radius: 2px;
  background: var(--grad-brand-soft); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"], .nav__item--mega.is-current > .nav__link { color: #fff; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after, .nav__item--mega.is-current > .nav__link::after { transform: scaleX(1); transform-origin: left; }
.nav__link .icon { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.nav__item--mega { position: relative; }
.nav__item--mega.is-open > .nav__link .icon, .nav__item--mega:hover > .nav__link .icon { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; width: min(780px, 92vw);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .3rem; padding: .9rem;
  border-radius: 26px; background: rgba(20, 11, 42, .94); border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .65);
  opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity .3s, transform .45s var(--ease), visibility .3s;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav__item--mega:hover .mega, .nav__item--mega:focus-within .mega, .nav__item--mega.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega__link { display: flex; gap: .95rem; align-items: flex-start; padding: .9rem; border-radius: 18px; transition: background .25s; }
.mega__link:hover, .mega__link:focus-visible { background: rgba(255, 255, 255, .06); }
.mega__icon {
  flex: 0 0 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, rgba(46, 143, 170, .35), rgba(168, 24, 143, .35)); border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .45s var(--ease);
}
.mega__link:hover .mega__icon { transform: rotate(-8deg) scale(1.06); }
.mega__title { display: block; color: #fff; font-weight: 700; font-size: .95rem; line-height: 1.3; }
.mega__desc { display: block; color: var(--on-dark-3); font-size: .84rem; line-height: 1.45; margin-top: .2rem; }
.mega__foot { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: .3rem; padding: 1rem 1.1rem; border-radius: 18px; background: linear-gradient(120deg, rgba(46, 143, 170, .18), rgba(168, 24, 143, .18)); color: var(--on-dark-2); font-size: .9rem; }
.mega__foot .link-arrow { color: #fff; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06); color: #fff; place-items: center; cursor: pointer; transition: background .25s;
}
.menu-toggle:hover { background: rgba(255, 255, 255, .14); }
.menu-toggle__bars { position: relative; width: 20px; height: 14px; }
.menu-toggle__bars span { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .45s var(--ease), opacity .3s, top .45s var(--ease); }
.menu-toggle__bars span:nth-child(1) { top: 0; }
.menu-toggle__bars span:nth-child(2) { top: 6px; width: 70%; }
.menu-toggle__bars span:nth-child(3) { top: 12px; }
.nav-open .menu-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-open .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu); display: flex; flex-direction: column; overflow-y: auto;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2.5rem;
  background: rgba(14, 7, 30, .9); backdrop-filter: blur(26px) saturate(150%); -webkit-backdrop-filter: blur(26px) saturate(150%);
  color: #fff; opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.nav-open .mobile-menu { opacity: 1; visibility: visible; }
.nav-open .site-header { z-index: calc(var(--z-menu) + 1); transform: none; background: transparent; box-shadow: none; backdrop-filter: none; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__link {
  display: flex; align-items: baseline; gap: .8rem; padding: .45rem 0; font-family: var(--font-display); font-size: clamp(1.75rem, 6.5vw, 2.4rem); line-height: 1.2;
  opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .7s var(--ease), color .2s;
  transition-delay: calc(var(--i, 0) * 55ms + 100ms);
}
.mobile-menu__link small { font-family: var(--font-body); font-size: .75rem; letter-spacing: .15em; color: var(--teal-2); }
.mobile-menu__link[aria-current="page"] { color: var(--magenta-2); font-style: italic; }
.nav-open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu__sub { list-style: none; margin: .2rem 0 .8rem; padding: 0 0 0 2.1rem; display: grid; gap: .3rem; }
.mobile-menu__sub a { color: var(--on-dark-2); font-size: 1rem; }
.mobile-menu__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; border-top: 1px solid var(--line-dark); }
.mobile-menu__foot a.topbar__item { font-size: 1rem; }

/* 6. Hero & page hero ------------------------------------------------------ */
.hero {
  position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center;
  min-height: max(760px, 100svh); background: var(--night); color: var(--on-dark);
  padding: calc(var(--topbar-h) + var(--header-h) + clamp(2rem, 4vw, 3.5rem)) 0 clamp(4.5rem, 7vw, 6.5rem);
}
.hero__bg { position: absolute; inset: 0; z-index: -3; background: var(--grad-night); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.hero__pill {
  display: inline-flex; align-items: center; gap: .7rem; padding: .4rem 1rem .4rem .4rem; border-radius: 999px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: .84rem; font-weight: 600; color: var(--on-dark-2);
}
.hero__pill-dot { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.hero__pill-dot .icon { width: 15px; height: 15px; }
.hero__title { font-size: var(--fs-hero); font-weight: 340; line-height: 1.02; letter-spacing: -.032em; margin: 1.4rem 0 1.5rem; }
.hero__title em { font-style: italic; font-weight: 300; background: var(--grad-brand-soft); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .06em; }
.hero__lead { font-size: var(--fs-lead); color: var(--on-dark-2); max-width: 35rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: clamp(1.25rem, 3vw, 2.5rem); margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--line-dark); }
.proof__num { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem); line-height: 1; color: #fff; font-weight: 400; }
.proof__label { display: block; font-size: .82rem; color: var(--on-dark-3); margin-top: .45rem; max-width: 15ch; line-height: 1.4; }
.hero__visual { position: relative; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); display: grid; justify-items: center; gap: .6rem; color: var(--on-dark-3); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; }
.scroll-cue__mouse { width: 24px; height: 38px; border-radius: 14px; border: 1.5px solid rgba(255, 255, 255, .35); position: relative; }
.scroll-cue__mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 3px; background: var(--teal-2); animation: wheel 2s var(--ease) infinite; }

/* Orbit system: Self → Community → World */
.orbit { position: relative; width: min(590px, 100%); aspect-ratio: 1; margin-inline: auto; container-type: inline-size; }
.orbit__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit__svg circle { fill: none; stroke: rgba(255, 255, 255, .16); stroke-width: 1; vector-effect: non-scaling-stroke; }
.orbit__svg .ring-dash { stroke-dasharray: 2 8; stroke: rgba(255, 255, 255, .28); }
.orbit__svg .ring-glow { stroke: url(#ringGrad); stroke-width: 1.5; }
.orbit__svg text { fill: var(--on-dark-3); font: 700 9px var(--font-body); letter-spacing: .38em; text-transform: uppercase; }
.orbit__track { position: absolute; inset: 0; animation: spin var(--dur, 80s) linear infinite; --inner-dir: reverse; }
.orbit__track--1 { --dur: 46s; }
.orbit__track--2 { --dur: 72s; animation-direction: reverse; --inner-dir: normal; }
.orbit__track--3 { --dur: 110s; }
.orbit__planet {
  --s: 76px; position: absolute; top: 50%; left: 50%; width: var(--s); height: var(--s); margin: calc(var(--s) / -2) 0 0 calc(var(--s) / -2);
  transform: rotate(var(--a)) translateX(calc(var(--r) * 1cqi)) rotate(calc(var(--a) * -1));
}
.orbit__planet-inner {
  width: 100%; height: 100%; border-radius: 50%; padding: 3px; background: var(--grad-brand);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, .65), 0 0 26px rgba(168, 24, 143, .35);
  animation: spin var(--dur) linear infinite var(--inner-dir);
}
.orbit__planet-inner img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--night); }
.orbit__dot { position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px 3px rgba(232, 207, 154, .7); transform: rotate(var(--a)) translateX(calc(var(--r) * 1cqi)); }
.orbit__core {
  position: absolute; inset: 0; margin: auto; width: 27%; aspect-ratio: 1; border-radius: 50%; background: #fff; display: grid; place-items: center;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .05), 0 0 0 22px rgba(255, 255, 255, .025), 0 0 90px 12px rgba(168, 24, 143, .5), 0 0 150px 40px rgba(46, 143, 170, .28);
}
.orbit__core img { width: 100%; height: 100%; border-radius: 50%; }
.orbit__core::before, .orbit__core::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(231, 123, 208, .55); animation: pulse-ring 3.6s var(--ease) infinite; }
.orbit__core::after { animation-delay: 1.8s; border-color: rgba(108, 198, 219, .55); }
.float-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: .8rem; padding: .8rem 1.1rem .8rem .8rem; border-radius: 20px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 24px 44px -14px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .2);
  animation: float 7s var(--ease-io) infinite; color: #fff; max-width: 250px;
}
.float-card__icon { flex: 0 0 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-brand); }
.float-card__icon .icon { width: 20px; height: 20px; }
.float-card strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; line-height: 1; }
.float-card span { display: block; font-size: .76rem; color: var(--on-dark-2); line-height: 1.35; margin-top: .25rem; }
.float-card--1 { top: 4%; left: -7%; }
.float-card--2 { top: 44%; right: -9%; animation-delay: -2.3s; }
.float-card--3 { bottom: 1%; left: 6%; animation-delay: -4.6s; }

.page-hero {
  position: relative; isolation: isolate; overflow: hidden; background: var(--night); color: var(--on-dark);
  padding: calc(var(--topbar-h) + var(--header-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(3.5rem, 6vw, 6rem);
}
.page-hero .hero__bg { background: radial-gradient(90% 120% at 90% 0%, #2c1759 0%, #120a26 60%); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.page-hero__grid--single { grid-template-columns: minmax(0, 1fr); max-width: 900px; }
.page-hero__title { font-size: var(--fs-h1); font-weight: 340; letter-spacing: -.03em; margin-bottom: 1.2rem; }
.page-hero__lead { font-size: var(--fs-lead); color: var(--on-dark-2); max-width: 40rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.page-hero__media { position: relative; justify-self: end; width: min(440px, 100%); }
.arch {
  position: relative; border-radius: 240px 240px 30px 30px; overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .75), 0 0 0 1px rgba(255, 255, 255, .1);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch-frame { position: absolute; inset: -14px; border-radius: 254px 254px 40px 40px; border: 1px solid rgba(232, 207, 154, .45); pointer-events: none; }
.arch-orb { position: absolute; width: 110px; aspect-ratio: 1; border-radius: 50%; background: var(--grad-brand); filter: blur(2px); opacity: .9; right: -26px; top: 18%; animation: float 8s var(--ease-io) infinite; box-shadow: 0 0 60px rgba(168, 24, 143, .6); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0 0 1.5rem; padding: 0; font-size: .85rem; color: var(--on-dark-3); }
.breadcrumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .5; }
.breadcrumbs a { color: var(--on-dark-2); transition: color .2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs [aria-current] { color: var(--teal-2); }

/* 7. Sections -------------------------------------------------------------- */
/* Marquee */
.marquee {
  position: relative; overflow: hidden; padding-block: 1.5rem; background: var(--night-2); color: #fff;
  border-block: 1px solid var(--line-dark);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list { display: flex; list-style: none; margin: 0; padding: 0; }
.marquee__item { display: inline-flex; align-items: center; gap: 2.2rem; padding-right: 2.2rem; font-family: var(--font-display); font-size: clamp(1.35rem, 1rem + 1.5vw, 2.3rem); font-style: italic; font-weight: 300; white-space: nowrap; }
.marquee__item:nth-child(even) .marquee__text { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .6); }
.marquee__sep { width: 26px; height: 26px; color: var(--magenta-2); }

/* Scroll-scrubbed statement */
.scrub-text { font-family: var(--font-display); font-size: clamp(1.65rem, 1.05rem + 2.2vw, 2.95rem); line-height: 1.22; letter-spacing: -.015em; font-weight: 350; margin: 0 0 2rem; }
.js .scrub-text .w { color: rgba(28, 19, 48, .15); transition: color .6s var(--ease); }
.js .scrub-text .w.is-lit { color: var(--ink); }
.scrub-text em { font-style: italic; }
.js .scrub-text em .w.is-lit { color: var(--magenta); }

/* Image stack */
.stack { position: relative; width: min(520px, 100%); aspect-ratio: 4 / 4.6; margin-left: auto; }
.stack__main { position: absolute; inset: 0 13% 12% 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.stack__main img, .stack__sub img { width: 100%; height: 100%; object-fit: cover; }
.stack__frame { position: absolute; inset: 7% 5% 5% 7%; border: 1px solid var(--gold-2); border-radius: var(--radius-lg); z-index: -1; opacity: .7; }
.stack__sub { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 8px solid var(--pearl); box-shadow: var(--shadow-2); }
.section--mist .stack__sub { border-color: var(--pearl-2); }
.stack__badge {
  position: absolute; left: -5%; bottom: 20%; display: flex; align-items: center; gap: .8rem; padding: .85rem 1.1rem;
  border-radius: 18px; background: rgba(255, 255, 255, .82); border: 1px solid rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--shadow-2); animation: float 8s var(--ease-io) infinite;
}
.stack__badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--magenta); }
.stack__badge span { display: block; font-size: .78rem; color: var(--muted); line-height: 1.35; }

/* Connection circles */
.circles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; margin-top: clamp(3rem, 5vw, 5rem); }
.circle-card {
  position: relative; overflow: hidden; padding: 2rem 2rem 2.2rem; border-radius: 24px; background: #fff;
  border: 1px solid var(--line-light); box-shadow: var(--shadow-1); transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.circle-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.circle-card__rings { width: 74px; height: 74px; margin-bottom: 1.5rem; }
.circle-card__rings circle { fill: none; stroke: var(--pearl-3); stroke-width: 1.5; }
.circle-card__rings .is-active { stroke: url(#ccGrad); stroke-width: 2.5; }
.circle-card__rings .core { fill: var(--magenta); stroke: none; }
.circle-card__num { position: absolute; top: 1.6rem; right: 1.8rem; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--magenta); }
.circle-card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.circle-card p { color: var(--muted); margin: 0; font-size: .98rem; }
.circle-card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 140px; aspect-ratio: 1; border-radius: 50%; background: var(--grad-brand); opacity: .07; transition: transform .8s var(--ease), opacity .6s; }
.circle-card:hover::after { transform: scale(1.6); opacity: .12; }

/* Services bento */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: minmax(270px, auto); gap: 1.25rem; }
.bento > :nth-child(1) { grid-column: span 5; grid-row: span 2; }
.bento > :nth-child(2) { grid-column: span 7; }
.bento > :nth-child(3) { grid-column: span 4; }
.bento > :nth-child(4) { grid-column: span 3; }
.bento > :nth-child(5) { grid-column: span 4; }
.bento > :nth-child(6) { grid-column: span 8; }
.svc-card {
  position: relative; isolation: isolate; overflow: hidden; height: 100%; min-height: 270px;
  display: flex; flex-direction: column; padding: clamp(1.5rem, 2vw, 2.1rem); border-radius: 28px; color: #fff;
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02)); border: 1px solid rgba(255, 255, 255, .1);
  transition: border-color .4s, box-shadow .6s var(--ease), transform .6s var(--ease); transform-style: preserve-3d; will-change: transform;
}
.svc-card__media { position: absolute; inset: 0; z-index: -2; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.04); transition: transform 1.4s var(--ease), opacity .6s; }
.svc-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18, 10, 38, .15) 0%, rgba(18, 10, 38, .78) 58%, rgba(18, 10, 38, .96) 100%); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s; background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 50%), rgba(231, 123, 208, .2), transparent 45%); }
.svc-card:hover::after { opacity: 1; }
.svc-card:hover { border-color: rgba(231, 123, 208, .45); box-shadow: 0 34px 70px -24px rgba(0, 0, 0, .7), 0 0 0 1px rgba(231, 123, 208, .18); }
.svc-card:hover .svc-card__media img { transform: scale(1.12); opacity: .68; }
.svc-card__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transform: translateZ(40px);
  transition: background .4s, transform .6s var(--ease);
}
.svc-card__icon .icon { width: 25px; height: 25px; }
.svc-card:hover .svc-card__icon { background: var(--grad-brand); transform: translateZ(40px) rotate(-8deg); }
.svc-card__num { position: absolute; top: 1.6rem; right: 1.8rem; font-family: var(--font-display); font-style: italic; color: rgba(255, 255, 255, .45); font-size: 1.05rem; }
.svc-card__body { margin-top: auto; transform: translateZ(26px); }
.svc-card__title { font-size: var(--fs-h3); margin: 1.6rem 0 .55rem; color: #fff; }
.svc-card__text { color: var(--on-dark-2); font-size: .96rem; margin: 0 0 1.1rem; max-width: 40ch; }
.svc-card__more { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .9rem; color: var(--teal-2); }
.svc-card__more .icon { width: 17px; height: 17px; transition: transform .45s var(--ease); }
.svc-card:hover .svc-card__more .icon { transform: translate(4px, -4px); }
.svc-card--feature .svc-card__title { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); }

/* Process */
.process { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process__line { position: absolute; left: 0; right: 0; top: 0; height: 64px; width: 100%; overflow: visible; pointer-events: none; }
.process__line path { fill: none; stroke: url(#procGrad); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.6s var(--ease-io) .2s; }
.process.is-in .process__line path { stroke-dashoffset: 0; }
.process__line .ghost { stroke: var(--pearl-3); stroke-dashoffset: 0; transition: none; }
.step { position: relative; padding: 0 1.4rem; text-align: center; }
.step__node {
  position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto 1.6rem; border-radius: 50%; display: grid; place-items: center;
  background: #fff; box-shadow: var(--shadow-1), 0 0 0 8px var(--pearl-2); font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--magenta);
  transition: transform .6s var(--ease), background .4s, color .4s;
}
.section--pearl .step__node { box-shadow: var(--shadow-1), 0 0 0 8px var(--pearl); }
.step:hover .step__node { transform: scale(1.1); background: var(--grad-brand); color: #fff; }
.step__title { font-size: 1.35rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }

/* Founder */
.founder__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 6vw, 6.5rem); align-items: start; }
.founder__media { position: sticky; top: 110px; }
.founder__award { position: absolute; right: -9%; bottom: 7%; width: 44%; filter: drop-shadow(0 20px 30px rgba(18, 10, 38, .35)); animation: float 9s var(--ease-io) infinite; }
.founder__media .arch { box-shadow: var(--shadow-2); }
.founder__media .arch-frame { border-color: var(--gold-2); }
.cred-list { display: grid; gap: 1rem; margin-top: 2rem; }
.cred {
  display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.25rem 1.4rem; border-radius: 20px; background: #fff;
  border: 1px solid var(--line-light); box-shadow: var(--shadow-1); transition: transform .5s var(--ease), box-shadow .5s;
}
.cred:hover { transform: translateX(6px); box-shadow: var(--shadow-2); }
.cred__icon { flex: 0 0 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--grad-brand); }
.cred__icon .icon { width: 22px; height: 22px; }
.cred h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: 0; margin: 0 0 .2rem; line-height: 1.4; }
.cred p { margin: 0; color: var(--muted); font-size: .94rem; }
.quote-block { position: relative; margin: 2.5rem 0 0; padding: 2rem 2rem 2rem 2.2rem; border-radius: 24px; background: var(--night); color: var(--on-dark); overflow: hidden; isolation: isolate; }
.quote-block p { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.3rem, 1rem + 1vw, 1.75rem); line-height: 1.35; color: #fff; margin: 0 0 1rem; }
.quote-block cite { font-style: normal; font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal-2); }
.quote-block::before { content: "\201C"; position: absolute; right: 1.4rem; top: .6rem; font-family: var(--font-display); font-size: 8rem; line-height: .8; color: rgba(231, 123, 208, .18); z-index: -1; }

/* Reviews */
.reviews__layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.6fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.rating-card {
  position: relative; padding: 2rem; border-radius: 28px; background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-dark);
}
.rating-card__big { font-family: var(--font-display); font-size: 4.2rem; line-height: 1; color: #fff; font-weight: 300; margin-bottom: 1.1rem; }
.rating-card__big small { font-size: 1.3rem; color: var(--on-dark-3); }
.rating-card__stars, .stars-row { display: flex; gap: .2rem; color: var(--gold); margin: .6rem 0 .3rem; }
.rating-card__stars .icon, .stars-row .icon { width: 18px; height: 18px; }
.rating-card p { color: var(--on-dark-2); font-size: .95rem; }
.rating-card .btn { width: 100%; margin-top: .6rem; }
.g-icon { width: 20px; height: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem; min-height: 42px; padding: .5rem 1.05rem; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .04); color: var(--on-dark-2); font-weight: 600; font-size: .88rem;
  transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease);
}
.chip:hover { border-color: rgba(255, 255, 255, .4); color: #fff; transform: translateY(-2px); }
.chip[aria-pressed="true"] { background: #fff; color: var(--night); border-color: #fff; }
.chip__count { font-size: .75rem; opacity: .7; }
.chips--light .chip { border-color: var(--line-light); background: #fff; color: var(--ink-2); }
.chips--light .chip:hover { border-color: var(--magenta); color: var(--magenta); }
.chips--light .chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: 26px; }
.carousel__track { display: flex; gap: 1.25rem; transition: transform .9s var(--ease); will-change: transform; }
.review-card {
  flex: 0 0 calc(50% - .625rem); display: flex; flex-direction: column; gap: 1.2rem; min-height: 320px; padding: 2rem; border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03)); border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: var(--on-dark);
  transition: opacity .45s var(--ease), transform .6s var(--ease), border-color .3s;
}
.review-card:hover { border-color: rgba(231, 123, 208, .4); }
.review-card[hidden] { display: none; }
.review-card.is-entering { opacity: 0; transform: translateY(18px) scale(.98); }
.review-card__top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.review-card__quote { width: 40px; height: 40px; color: var(--magenta-2); opacity: .9; }
.review-card__source { display: inline-flex; align-items: center; gap: .4rem; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-3); }
.review-card__text { position: relative; font-size: 1.02rem; line-height: 1.72; color: var(--on-dark); margin: 0; }
.review-card__text.is-clamped { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-card__more { align-self: flex-start; background: none; border: 0; padding: 0; color: var(--teal-2); font-weight: 700; font-size: .88rem; cursor: pointer; }
.review-card__author { display: flex; align-items: center; gap: .9rem; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line-dark); }
.avatar { flex: 0 0 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--grad-brand); box-shadow: 0 0 0 3px rgba(255, 255, 255, .1); }
.review-card__name { display: block; font-weight: 700; color: #fff; line-height: 1.3; }
.review-card__role { display: block; font-size: .82rem; color: var(--on-dark-3); line-height: 1.35; }
.review-card__tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.review-card__tag { font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .25rem .6rem; border-radius: 999px; background: rgba(108, 198, 219, .12); color: var(--teal-2); }
.carousel__controls { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; }
.round-btn {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: #fff;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .2); transition: background .3s, color .3s, transform .35s var(--ease);
}
.round-btn:hover { background: #fff; color: var(--night); transform: translateY(-2px); }
.round-btn .icon { width: 20px; height: 20px; }
.carousel__dots { display: flex; gap: .4rem; margin-left: auto; }
.carousel__dot { width: 8px; height: 8px; border-radius: 99px; border: 0; padding: 0; background: rgba(255, 255, 255, .25); cursor: pointer; transition: width .45s var(--ease), background .3s; }
.carousel__dot[aria-current="true"] { width: 28px; background: var(--grad-brand-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 1.25rem; }
.reviews-grid .review-card { flex: none; }

/* Books & recognition */
.books { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); align-items: end; }
.book { perspective: 1200px; text-align: center; }
.book__cover {
  position: relative; display: block; width: min(230px, 80%); margin: 0 auto 1.6rem; border-radius: 4px 12px 12px 4px; overflow: hidden; aspect-ratio: 2 / 3;
  transform: rotateY(-20deg) rotateX(4deg); transform-style: preserve-3d; transition: transform .9s var(--ease), box-shadow .9s var(--ease);
  box-shadow: -22px 28px 44px -12px rgba(28, 19, 48, .45), -3px 3px 0 #d9d0e3, -6px 6px 0 #cfc3dc;
}
.book__cover img { width: 100%; height: 100%; object-fit: cover; }
.book__cover::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0, 0, 0, .35), rgba(255, 255, 255, .25) 3%, transparent 9%, transparent 85%, rgba(255, 255, 255, .15)); }
.book:hover .book__cover { transform: rotateY(-4deg) rotateX(0) translateY(-10px); box-shadow: -12px 36px 50px -14px rgba(28, 19, 48, .5), -2px 2px 0 #d9d0e3, -4px 4px 0 #cfc3dc; }
.book__cover--square { aspect-ratio: 1; }
.book h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.book p { color: var(--muted); font-size: .93rem; margin: 0 auto .8rem; max-width: 30ch; }
.award-strip {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; margin-top: clamp(3rem, 5vw, 5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: 30px; background: var(--night); color: var(--on-dark); position: relative; overflow: hidden; isolation: isolate;
}
.award-strip img { width: clamp(120px, 16vw, 190px); filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .5)); }
.award-strip h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); color: #fff; }
.award-strip p { color: var(--on-dark-2); margin: 0; }

/* Video facades & gallery */
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.video-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.yt { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0; border-radius: 24px; overflow: hidden; background: #000; cursor: pointer; box-shadow: var(--shadow-2); color: #fff; text-align: left; }
.yt img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform 1.1s var(--ease), opacity .4s; }
.yt::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(12, 6, 27, .88)); }
.yt:hover img { transform: scale(1.06); opacity: 1; }
.yt__play {
  position: absolute; z-index: 1; inset: 0; margin: auto; width: 80px; height: 80px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .5s var(--ease), background .3s;
}
.yt__play::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); animation: pulse-ring 2.8s var(--ease) infinite; }
.yt__play .icon { width: 26px; height: 26px; margin-left: 4px; }
.yt:hover .yt__play { transform: scale(1.1); background: var(--grad-brand); }
.yt__meta { position: absolute; z-index: 1; left: 1.4rem; right: 1.4rem; bottom: 1.2rem; }
.yt__title { display: block; font-weight: 700; font-size: 1.05rem; line-height: 1.35; }
.yt__channel { display: block; font-size: .8rem; color: var(--on-dark-2); margin-top: .2rem; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.masonry { columns: 3 280px; column-gap: 1.1rem; }
.masonry__item { position: relative; display: block; break-inside: avoid; margin-bottom: 1.1rem; border-radius: 20px; overflow: hidden; background: var(--pearl-3); cursor: zoom-in; box-shadow: var(--shadow-1); }
.masonry__item img { width: 100%; transition: transform 1.1s var(--ease), filter .6s; }
.masonry__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(18, 10, 38, .75)); opacity: 0; transition: opacity .5s; }
.masonry__zoom { position: absolute; z-index: 1; top: 1rem; right: 1rem; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(255, 255, 255, .18); backdrop-filter: blur(10px); opacity: 0; transform: scale(.8); transition: opacity .4s, transform .5s var(--ease); }
.masonry__cap { position: absolute; z-index: 1; left: 1rem; right: 1rem; bottom: .9rem; color: #fff; font-size: .86rem; font-weight: 600; line-height: 1.4; opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .5s var(--ease); }
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item:hover::after, .masonry__item:hover .masonry__zoom, .masonry__item:hover .masonry__cap, .masonry__item:focus-visible .masonry__cap { opacity: 1; transform: none; }
.masonry__item[hidden] { display: none; }

/* CTA band */
.cta-band { position: relative; isolation: isolate; overflow: hidden; background: var(--night); color: #fff; text-align: center; padding-block: clamp(5rem, 9vw, 9.5rem); }
.cta-band__title { font-size: clamp(2.3rem, 1.3rem + 4.2vw, 5.1rem); font-weight: 330; letter-spacing: -.03em; max-width: 17ch; margin: 0 auto 1.4rem; }
.cta-band p { color: var(--on-dark-2); max-width: 44rem; margin-inline: auto; font-size: var(--fs-lead); }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.4rem; }
.outline-fill {
  color: transparent; -webkit-text-stroke: 1.2px rgba(255, 255, 255, .75);
  background: var(--grad-brand-soft) no-repeat 0 0 / 0% 100%; -webkit-background-clip: text; background-clip: text;
  transition: background-size 1.8s var(--ease) .35s;
}
.is-in .outline-fill, .outline-fill.is-in { background-size: 100% 100%; }
.orb { position: absolute; z-index: -1; border-radius: 50%; background: var(--grad-brand); box-shadow: 0 0 60px rgba(168, 24, 143, .55); animation: float 9s var(--ease-io) infinite; }
.orb--1 { width: 90px; height: 90px; left: 8%; top: 18%; }
.orb--2 { width: 46px; height: 46px; right: 12%; top: 26%; animation-delay: -3s; background: linear-gradient(135deg, var(--teal-2), var(--teal)); box-shadow: 0 0 40px rgba(46, 143, 170, .6); }
.orb--3 { width: 26px; height: 26px; left: 20%; bottom: 18%; animation-delay: -5s; background: var(--gold); box-shadow: 0 0 30px rgba(232, 207, 154, .7); }
.orb--4 { width: 140px; height: 140px; right: 6%; bottom: -30px; animation-delay: -2s; opacity: .8; }
.butterfly-line { position: absolute; z-index: -1; left: 50%; top: 50%; width: min(760px, 110vw); transform: translate(-50%, -50%); opacity: .14; }
.butterfly-line path { fill: none; stroke: #fff; stroke-width: 1; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 3.2s var(--ease-io); }
.is-in .butterfly-line path, .butterfly-line.is-in path { stroke-dashoffset: 0; }

/* Contact panel */
.inquiry__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.contact-panel { position: relative; isolation: isolate; overflow: hidden; padding: clamp(1.75rem, 3vw, 2.6rem); border-radius: 30px; background: var(--night); color: var(--on-dark); box-shadow: var(--shadow-2); }
.contact-panel h3 { color: #fff; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.contact-panel p { color: var(--on-dark-2); }
.contact-list { list-style: none; margin: 1.8rem 0; padding: 0; display: grid; gap: .6rem; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 1rem; padding: .8rem; border-radius: 18px; transition: background .3s; }
.contact-list a:hover { background: rgba(255, 255, 255, .06); }
.contact-list__icon { flex: 0 0 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); color: var(--teal-2); transition: background .3s, color .3s; }
.contact-list a:hover .contact-list__icon { background: var(--grad-brand); color: #fff; }
.contact-list small { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-3); }
.contact-list strong { display: block; color: #fff; font-weight: 600; line-height: 1.35; word-break: break-word; }
.info-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
.info-card { display: flex; flex-direction: column; gap: .8rem; padding: 1.6rem; border-radius: 24px; background: #fff; border: 1px solid var(--line-light); box-shadow: var(--shadow-1); transition: transform .5s var(--ease), box-shadow .5s; }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.info-card__icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.info-card small { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.info-card strong { font-size: 1.02rem; line-height: 1.4; word-break: break-word; }
.map-facade { position: relative; display: grid; place-items: center; min-height: 380px; border-radius: 30px; overflow: hidden; background: var(--night-2); color: #fff; text-align: center; box-shadow: var(--shadow-2); isolation: isolate; }
.map-facade__grid { position: absolute; inset: 0; z-index: -1; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 42px 42px; }
.map-facade__pin { width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); box-shadow: 0 0 0 12px rgba(168, 24, 143, .18), 0 0 0 26px rgba(168, 24, 143, .08); animation: float 5s var(--ease-io) infinite; }
.map-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* 8. Cards & components ---------------------------------------------------- */
.benefit-card { position: relative; padding: 2rem; border-radius: 24px; background: #fff; border: 1px solid var(--line-light); box-shadow: var(--shadow-1); transition: transform .5s var(--ease), box-shadow .5s; overflow: hidden; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.benefit-card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.3rem; color: var(--magenta); background: linear-gradient(135deg, rgba(46, 143, 170, .12), rgba(168, 24, 143, .14)); transition: background .4s, color .4s, transform .5s var(--ease); }
.benefit-card:hover .benefit-card__icon { background: var(--grad-brand); color: #fff; transform: rotate(-8deg); }
.benefit-card__icon .icon { width: 25px; height: 25px; }
.benefit-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.benefit-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.section--dark .benefit-card { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.section--dark .benefit-card h3 { color: #fff; }
.section--dark .benefit-card__icon { color: #fff; background: rgba(255, 255, 255, .1); }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem 2rem; }
.checklist li { display: flex; gap: .85rem; align-items: flex-start; font-size: 1rem; }
.checklist__icon { flex: 0 0 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; margin-top: .1rem; }
.checklist__icon .icon { width: 15px; height: 15px; stroke-width: 2.4; }
.section--dark .checklist li { color: var(--on-dark); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.1rem; border-radius: 999px; background: #fff; border: 1px solid var(--line-light); font-weight: 600; font-size: .92rem; box-shadow: 0 1px 2px rgba(0, 0, 0, .03); }
.tag .icon { width: 16px; height: 16px; color: var(--magenta); }
.section--dark .tag { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: var(--on-dark); }
.section--dark .tag .icon { color: var(--teal-2); }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.pillar { position: relative; overflow: hidden; isolation: isolate; min-height: 380px; border-radius: 28px; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; box-shadow: var(--shadow-2); }
.pillar img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pillar::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(18, 10, 38, .05) 20%, rgba(18, 10, 38, .92)); }
.pillar:hover img { transform: scale(1.08); }
.pillar__word { font-family: var(--font-display); font-style: italic; font-size: clamp(2.2rem, 1.6rem + 2vw, 3.4rem); line-height: 1; margin-bottom: .6rem; }
.pillar p { color: var(--on-dark-2); margin: 0; font-size: .96rem; }
.timeline { position: relative; display: grid; gap: 1.2rem; padding-left: 2.2rem; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; border-radius: 2px; background: linear-gradient(180deg, var(--teal), var(--violet-2), var(--magenta)); transform-origin: top; transform: scaleY(0); transition: transform 2.2s var(--ease-io); }
.timeline.is-in::before { transform: none; }
.timeline__item { position: relative; padding: 1.4rem 1.6rem; border-radius: 22px; background: #fff; border: 1px solid var(--line-light); box-shadow: var(--shadow-1); }
.timeline__item::before { content: ""; position: absolute; left: -2.2rem; top: 1.7rem; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 5px solid var(--magenta); box-shadow: 0 0 0 5px var(--pearl-2); }
.timeline__place { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--magenta); }
.timeline__item h3 { font-size: 1.3rem; margin: .35rem 0 .4rem; }
.timeline__item p { margin: 0; color: var(--muted); font-size: .96rem; }
.value-card { padding: 2.2rem; border-radius: 26px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: transform .5s var(--ease), border-color .4s; }
.value-card:hover { transform: translateY(-6px); border-color: rgba(231, 123, 208, .4); }
.value-card__label { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-2); font-weight: 700; }
.value-card h3 { color: #fff; font-size: 1.55rem; margin: .6rem 0 .8rem; }
.value-card p { margin: 0; }
.article-card { display: flex; flex-direction: column; border-radius: 26px; overflow: hidden; background: #fff; border: 1px solid var(--line-light); box-shadow: var(--shadow-1); transition: transform .5s var(--ease), box-shadow .5s; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.article-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--night); }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.article-card:hover .article-card__media img { transform: scale(1.06); }
.article-card__body { display: flex; flex-direction: column; gap: .7rem; padding: 1.6rem 1.7rem 1.8rem; flex: 1; }
.article-card__kicker { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--magenta); }
.article-card h3 { font-size: 1.35rem; margin: 0; }
.article-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.article-card details { margin-top: auto; }
.article-card summary { cursor: pointer; font-weight: 700; color: var(--magenta); list-style: none; display: inline-flex; gap: .4rem; align-items: center; }
.article-card summary::-webkit-details-marker { display: none; }
.article-card details[open] summary .icon { transform: rotate(180deg); }
.article-card details .icon { transition: transform .35s var(--ease); width: 16px; height: 16px; }
.article-card details div { margin-top: .9rem; color: var(--ink-2); font-size: .95rem; animation: rise .5s var(--ease); }
.quote-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.quote-card { position: relative; padding: 2.2rem 2rem; border-radius: 26px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); }
.quote-card p { font-family: var(--font-display); font-style: italic; font-size: 1.28rem; line-height: 1.45; color: #fff; }
.quote-card cite { font-style: normal; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-2); }
.community-card { display: flex; flex-direction: column; gap: .8rem; padding: 2rem; border-radius: 26px; background: #fff; border: 1px solid var(--line-light); box-shadow: var(--shadow-1); transition: transform .5s var(--ease), box-shadow .5s; }
.community-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.community-card h3 { font-size: 1.35rem; margin: .4rem 0 0; }
.community-card p { color: var(--muted); margin: 0; font-size: .96rem; }
.community-card .link-arrow { margin-top: auto; }
.faq__list { display: grid; gap: .9rem; }
.faq__item { border-radius: 20px; background: #fff; border: 1px solid var(--line-light); overflow: hidden; transition: box-shadow .4s, border-color .4s; }
.faq__item[open] { box-shadow: var(--shadow-1); border-color: rgba(168, 24, 143, .25); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; cursor: pointer; list-style: none; font-weight: 700; font-size: 1.04rem; line-height: 1.45; }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { flex: 0 0 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-light); transition: transform .45s var(--ease), background .3s, color .3s, border-color .3s; }
.faq__icon .icon { width: 18px; height: 18px; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--grad-brand); color: #fff; border-color: transparent; }
.faq__a { padding: 0 1.5rem 1.4rem; color: var(--muted); animation: rise .5s var(--ease); }
.faq__a p:last-child { margin: 0; }
.legal { background: var(--pearl); }
.legal .prose { margin-inline: auto; }
.error-code { font-family: var(--font-display); font-size: clamp(7rem, 4rem + 18vw, 16rem); line-height: .85; font-weight: 300; letter-spacing: -.05em; margin: 0 0 1rem; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); aspect-ratio: 5 / 4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.note { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.2rem; border-radius: 16px; background: rgba(46, 143, 170, .08); border: 1px solid rgba(46, 143, 170, .2); font-size: .92rem; color: var(--ink-2); }
.note .icon { color: var(--teal); margin-top: .2rem; }

/* 9. Forms ----------------------------------------------------------------- */
.form { position: relative; padding: clamp(1.5rem, 3vw, 2.75rem); border-radius: 30px; background: #fff; border: 1px solid var(--line-light); box-shadow: var(--shadow-2); }
.form__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); margin-bottom: .4rem; }
.form__intro { color: var(--muted); margin-bottom: 1.8rem; }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 60px; padding: 1.55rem 1rem .55rem; border-radius: 15px; border: 1px solid #d8cfe3; background: var(--pearl);
  font-size: 1rem; line-height: 1.4; appearance: none; -webkit-appearance: none; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 150px; resize: vertical; padding-top: 1.8rem; }
.field select { padding-right: 2.8rem; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235e5673' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field label { position: absolute; left: 1rem; top: 1.15rem; color: var(--muted); font-size: 1rem; pointer-events: none; transform-origin: left top; transition: transform .3s var(--ease), color .25s; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select + label { transform: translateY(-.62rem) scale(.76); color: var(--magenta); font-weight: 700; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #bfb2cf; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--magenta); background: #fff; box-shadow: 0 0 0 4px rgba(168, 24, 143, .12); }
.field__error { display: none; margin-top: .4rem; color: #b0103f; font-size: .84rem; font-weight: 600; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c01848; background: #fff7f9; }
.field.is-invalid .field__error { display: block; }
.fieldset { border: 0; margin: 0; padding: 0; }
.fieldset legend { font-size: .84rem; font-weight: 700; color: var(--ink-2); margin-bottom: .6rem; }
.pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill-option { position: relative; }
.pill-option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill-option span { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; padding: .55rem 1.05rem; border-radius: 999px; border: 1px solid #d8cfe3; font-weight: 600; font-size: .92rem; transition: background .25s, color .25s, border-color .25s; }
.pill-option input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill-option input:focus-visible + span { outline: 2px solid var(--magenta); outline-offset: 2px; }
.check { display: flex; gap: .8rem; align-items: flex-start; font-size: .9rem; color: var(--muted); cursor: pointer; line-height: 1.5; }
.field .check { position: static; transform: none; pointer-events: auto; font-size: .9rem; font-weight: 400; color: var(--muted); }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box { flex: 0 0 24px; height: 24px; margin-top: .05rem; border-radius: 8px; border: 1.5px solid #bfb2cf; display: grid; place-items: center; background: #fff; transition: background .25s, border-color .25s; }
.check__box svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset .4s var(--ease) .05s; }
.check input:checked + .check__box { background: var(--grad-brand); border-color: transparent; }
.check input:checked + .check__box svg { stroke-dashoffset: 0; }
.check input:focus-visible + .check__box { outline: 2px solid var(--magenta); outline-offset: 2px; }
.field.is-invalid .check__box { border-color: #c01848; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; }
.form__secure { display: inline-flex; align-items: center; gap: .45rem; font-size: .84rem; color: var(--muted); }
.form__secure .icon { width: 16px; height: 16px; color: var(--teal); }
.form__status { margin-top: 1rem; font-weight: 600; color: #b0103f; }
.form__success { display: none; text-align: center; padding: 2rem 1rem; animation: rise .6s var(--ease); }
.form.is-sent .form__body { display: none; }
.form.is-sent .form__success { display: block; }
.success-mark { width: 84px; height: 84px; margin: 0 auto 1.4rem; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); box-shadow: 0 0 0 12px rgba(168, 24, 143, .1); }
.success-mark svg { width: 38px; height: 38px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.form.is-sent .success-mark svg { animation: draw .8s var(--ease) .2s forwards; }

/* 10. Footer & fixed UI ---------------------------------------------------- */
.footer { position: relative; isolation: isolate; overflow: hidden; background: #0c061b; color: var(--on-dark-2); padding-top: clamp(4rem, 6vw, 6.5rem); }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--grad-brand-soft); opacity: .6; }
.footer__glow { position: absolute; z-index: -1; width: 620px; aspect-ratio: 1; border-radius: 50%; left: -200px; top: -300px; background: var(--violet-2); filter: blur(120px); opacity: .35; }
.footer__top { display: grid; grid-template-columns: 1.35fr 1fr 1.2fr 1.35fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer__brand .brand__badge { width: 92px; height: 92px; margin-bottom: 1.5rem; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer__title { font: 800 .76rem/1 var(--font-body); letter-spacing: .22em; text-transform: uppercase; color: #fff; margin: .6rem 0 1.4rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; font-size: .95rem; }
.footer__links a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: color .25s, background-size .45s var(--ease); }
.footer__links a:hover { color: #fff; background-size: 100% 1px; }
.footer__contact { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .9rem; font-size: .95rem; }
.footer__contact a, .footer__contact span { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact .icon { width: 18px; height: 18px; color: var(--teal-2); margin-top: .2rem; }
.footer__contact a:hover { color: #fff; }
.footer__watermark { margin: clamp(2.5rem, 5vw, 4rem) 0 0; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(3rem, 12.5vw, 12rem); line-height: .9; letter-spacing: -.04em; white-space: nowrap; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .09); user-select: none; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .8rem 2rem; padding-block: 1.6rem; border-top: 1px solid var(--line-dark); font-size: .88rem; }
.footer__bottom nav { display: flex; gap: 1.4rem; }
.footer__bottom a:hover { color: #fff; }
.footer__credit a { color: #fff; font-weight: 700; background: linear-gradient(90deg, var(--teal-2), var(--magenta-2)) 0 100% / 0 1.5px no-repeat; transition: background-size .45s var(--ease); }
.footer__credit a:hover { background-size: 100% 1.5px; }

.mobile-cta {
  position: fixed; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom)); z-index: var(--z-mobilebar);
  display: none; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem; border-radius: 22px;
  background: rgba(18, 10, 38, .8); border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 20px 44px -12px rgba(0, 0, 0, .6); transition: transform .5s var(--ease);
}
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .55rem; min-height: 52px; border-radius: 16px; color: #fff; font-weight: 800; font-size: .98rem; }
.mobile-cta .icon { width: 20px; height: 20px; }
.mobile-cta__call { background: var(--grad-brand); }
.mobile-cta__wa { background: #0e7a42; }
.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: var(--z-totop); width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  border: 0; cursor: pointer; color: #fff; background: rgba(18, 10, 38, .82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .55); opacity: 0; visibility: hidden; transform: translateY(18px); transition: opacity .4s, visibility .4s, transform .5s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top .icon { width: 20px; height: 20px; }
.to-top__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top__ring circle { fill: none; stroke-width: 2.5; }
.to-top__ring .track { stroke: rgba(255, 255, 255, .15); }
.to-top__ring .bar { stroke: url(#topGrad); stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }

/* 11. Popup & lightbox ----------------------------------------------------- */
.popup { position: fixed; inset: 0; z-index: var(--z-popup); display: grid; place-items: center; padding: 1.25rem; opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; }
.popup.is-open { opacity: 1; visibility: visible; }
.popup__backdrop { position: absolute; inset: 0; background: rgba(8, 4, 20, .66); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.popup__dialog {
  position: relative; isolation: isolate; width: min(560px, 100%); max-height: calc(100svh - 2.5rem); overflow: auto; text-align: center; color: #fff;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem); border-radius: 32px;
  background: radial-gradient(120% 90% at 100% 0%, rgba(46, 143, 170, .28), transparent 55%), radial-gradient(90% 90% at 0% 100%, rgba(168, 24, 143, .3), transparent 55%), #150b2c;
  box-shadow: 0 50px 110px -20px rgba(0, 0, 0, .75);
  transform: translateY(26px) scale(.94); transition: transform .7s var(--ease);
}
.popup.is-open .popup__dialog { transform: none; }
.popup__dialog::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none; z-index: -1;
  background: conic-gradient(from var(--ang), #2e8faa, #a8188f, #e8cf9a, #6cc6db, #2e8faa);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: border-spin 6s linear infinite;
}
.popup__close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: #fff; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); transition: background .3s, transform .45s var(--ease); }
.popup__close:hover { background: rgba(255, 255, 255, .18); transform: rotate(90deg); }
.popup__close .icon { width: 20px; height: 20px; }
.popup__badge { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem 1rem; border-radius: 999px; background: rgba(232, 207, 154, .14); border: 1px solid rgba(232, 207, 154, .4); color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.popup__badge .icon { width: 16px; height: 16px; }
.popup__logo { width: 84px; height: 84px; margin: 1.4rem auto 1.2rem; border-radius: 50%; background: #fff; box-shadow: 0 0 0 8px rgba(255, 255, 255, .06), 0 0 50px rgba(168, 24, 143, .55); animation: float 6s var(--ease-io) infinite; }
.popup__logo img { width: 100%; height: 100%; border-radius: 50%; }
.popup__title { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.35rem); font-weight: 350; margin-bottom: .8rem; }
.popup__text { color: var(--on-dark-2); font-size: 1.02rem; margin-bottom: 1.2rem; }
.popup__list { list-style: none; padding: 0; margin: 0 0 1.8rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.popup__list li { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 600; padding: .35rem .75rem; border-radius: 999px; background: rgba(255, 255, 255, .07); color: var(--on-dark); }
.popup__list .icon { width: 14px; height: 14px; color: var(--teal-2); stroke-width: 2.4; }
.popup__actions { display: grid; gap: .6rem; }
.popup__later { background: none; border: 0; color: var(--on-dark-3); font-weight: 600; cursor: pointer; padding: .6rem; min-height: 44px; transition: color .2s; }
.popup__later:hover { color: #fff; }

.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); display: grid; place-items: center; padding: 4.5rem 1rem 5rem; background: rgba(8, 4, 18, .95); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { margin: 0; display: grid; justify-items: center; gap: 1rem; }
.lightbox__img { max-width: min(92vw, 1200px); max-height: 76vh; width: auto; height: auto; border-radius: 16px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); transform: scale(.96); transition: transform .6s var(--ease), opacity .3s; }
.lightbox.is-open .lightbox__img { transform: none; }
.lightbox__caption { color: var(--on-dark-2); text-align: center; max-width: 70ch; font-size: .95rem; }
.lightbox__btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: #fff; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); transition: background .3s; }
.lightbox__btn:hover { background: rgba(255, 255, 255, .22); }
.lightbox__btn .icon { width: 22px; height: 22px; }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.2rem; top: 50%; margin-top: -26px; }
.lightbox__next { right: 1.2rem; top: 50%; margin-top: -26px; }
.lightbox__count { position: absolute; top: 1.6rem; left: 1.5rem; color: var(--on-dark-3); font-size: .85rem; letter-spacing: .12em; }
html.popup-open, html.lightbox-open, html.nav-open { overflow: hidden; }

/* 12. Motion ---------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .95s var(--ease), transform 1.15s var(--ease), clip-path 1.3s var(--ease); transition-delay: calc(var(--d, 0) * 1ms); }
.js [data-reveal="left"] { transform: translateX(-46px); }
.js [data-reveal="right"] { transform: translateX(46px); }
.js [data-reveal="zoom"] { transform: scale(.93); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="clip"] { transform: none; clip-path: inset(0 0 100% 0 round 30px); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0 round 30px); }
.js [data-reveal-img] img { filter: grayscale(1) contrast(.92); transform: scale(1.1); transition: filter 1.8s var(--ease), transform 2s var(--ease); }
.js [data-reveal-img].is-in img { filter: none; transform: none; }
.js [data-split]:not(.is-split) { opacity: 0; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .02em .12em; margin-bottom: -.12em; }
.split-word > span { display: inline-block; transform: translateY(108%); opacity: 0; filter: blur(8px); transition: transform 1.1s var(--ease), opacity 1s var(--ease), filter 1s var(--ease); transition-delay: calc(var(--i) * 75ms + 120ms); }
.split-word > .is-em { font-style: italic; font-weight: 300; background: var(--grad-brand-soft); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .06em; }
.is-split em { background: none; }
.is-split-in .split-word > span { transform: none; opacity: 1; filter: none; }
.js [data-fade-seq] > * { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--i, 0) * 110ms + 700ms); }
.js .is-split-in ~ [data-fade-seq] > *, .js [data-fade-seq].is-in > * { opacity: 1; transform: none; }
[data-depth], [data-parallax] { will-change: translate; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -14px, 0); } }
@keyframes drift { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(-6%, 8%, 0) scale(1.12); } }
@keyframes twinkle { 0% { opacity: .25; } 100% { opacity: .95; } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes border-spin { to { --ang: 360deg; } }

/* 13. Responsive ------------------------------------------------------------ */
@media (max-width: 1180px) {
  .topbar__list .hide-md { display: none; }
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .float-card--1 { left: -2%; }
  .float-card--2 { right: -2%; }
}
@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  .hero__grid, .page-hero__grid, .grid-2, .founder__grid, .reviews__layout, .inquiry__grid { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: auto; }
  .hero__visual { max-width: 560px; margin: 1rem auto 0; width: 100%; }
  .page-hero__media { justify-self: center; width: min(380px, 100%); margin-top: 1rem; }
  .founder__media { position: relative; top: 0; max-width: 460px; }
  .bento > :nth-child(n) { grid-column: span 6; grid-row: auto; }
  .bento > :nth-child(1) { grid-column: span 12; }
  .grid-4, .info-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .circles, .pillars, .quote-wall, .video-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2.5rem; }
  .process__line { display: none; }
  .stack { margin: 0 auto; }
  .scroll-cue { display: none; }
  .award-strip { grid-template-columns: auto 1fr; }
  .award-strip .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 767px) {
  :root { --topbar-h: 40px; --header-h: 68px; }
  body { font-size: 1rem; padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .topbar__list .hide-sm { display: none; }
  .topbar__list { gap: 1rem; }
  .brand__badge { width: 54px; height: 54px; }
  .mobile-cta { display: grid; }
  .to-top { bottom: calc(96px + env(safe-area-inset-bottom)); right: 1rem; width: 50px; height: 50px; }
  .grid-3, .circles, .pillars, .quote-wall, .video-grid, .video-grid--3, .books, .checklist, .form__grid { grid-template-columns: minmax(0, 1fr); }
  .bento > :nth-child(n) { grid-column: span 12; }
  .grid-4, .info-cards { grid-template-columns: minmax(0, 1fr); }
  .process { grid-template-columns: minmax(0, 1fr); }
  .step { text-align: left; display: grid; grid-template-columns: 64px 1fr; gap: 0 1.2rem; padding: 0; }
  .step__node { margin: 0; grid-row: span 2; }
  .review-card { flex-basis: 100%; }
  .float-card { padding: .6rem .8rem .6rem .6rem; max-width: 200px; }
  .float-card__icon { flex-basis: 34px; height: 34px; border-radius: 10px; }
  .float-card strong { font-size: 1.15rem; }
  .float-card span { font-size: .7rem; }
  .float-card--1 { top: -2%; left: 0; }
  .float-card--2 { top: 46%; right: 0; }
  .float-card--3 { display: none; }
  .orbit__planet { --s: 58px; }
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .section-head--split { align-items: flex-start; }
  .award-strip { grid-template-columns: minmax(0, 1fr); text-align: center; justify-items: center; }
  .award-strip .btn { justify-self: center; }
  .stack__badge { left: 0; }
  .arch-orb { right: -8px; width: 80px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 1.2rem; margin: 0; }
  .lightbox__prev { left: calc(50% - 64px); }
  .lightbox__next { right: calc(50% - 64px); }
  .hero__proof { gap: 1.25rem 1.75rem; }
}
@media (max-width: 420px) {
  .hero__actions .btn, .page-hero__actions .btn, .cta-band__actions .btn { width: 100%; }
  .topbar__list .hide-xs { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0ms !important; }
  .js [data-reveal], .js [data-reveal-img] img, .js [data-fade-seq] > *, .split-word > span { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .marquee__track { animation: none; }
  .orbit__track, .orbit__planet-inner { animation: none !important; }
  .outline-fill { background-size: 100% 100%; }
  .process__line path, .butterfly-line path { stroke-dashoffset: 0; }
  .timeline::before { transform: none; }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled, .mobile-menu, .mega, .mobile-cta, .popup__backdrop { background-color: rgba(18, 10, 38, .97); }
  .float-card, .rating-card, .review-card { background: rgba(38, 23, 73, .92); }
  .stack__badge { background: #fff; }
}

/* Grid/flex children must be allowed to shrink below intrinsic width (long <select> options) */
.inquiry__grid > *, .form, .form__grid > *, .field select { min-width: 0; max-width: 100%; }
@media (max-width: 767px) {
  .float-card--2 { display: none; }
  .float-card--1 { top: -4%; left: -2%; }
}
html { overflow-x: hidden; overflow-x: clip; }
@media (max-width: 1024px) {
  .js [data-reveal="left"], .js [data-reveal="right"] { transform: translateY(36px); }
}
