@font-face {
  font-family: "Hutton";
  src: url("../website/fonts/Fontspring-DEMO-hutton-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0041-005A, U+0061-007A, U+00C0-00D6, U+00D8-00F6, U+00F8-00FF, U+0100-017F, U+0027, U+2019, U+002C, U+002E, U+003A, U+003B, U+003F, U+0021, U+2026, U+00A0;
}

@font-face {
  font-family: "Hutton";
  src: url("../website/fonts/Fontspring-DEMO-hutton-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0041-005A, U+0061-007A, U+00C0-00D6, U+00D8-00F6, U+00F8-00FF, U+0100-017F, U+0027, U+2019, U+002C, U+002E, U+003A, U+003B, U+003F, U+0021, U+2026, U+00A0;
}

:root {
  --ink: #0b0b0a;
  --ink-soft: #1a1a18;
  --paper: #f1f0e9;
  --paper-2: #e7e6de;
  --white: #fbfbf7;
  --blue: #0b4fe8;
  --blue-dark: #073cae;
  --acid: #9cdaf7;
  --muted: #73736d;
  --line: rgba(11, 11, 10, .18);
  --line-light: rgba(255, 255, 255, .18);
  --serif: "Roboto", "Outfit", "Manrope", Arial, sans-serif;
  --sans: "Roboto", "Outfit", "Manrope", Arial, sans-serif;
  --mono: "Roboto", "Outfit", "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --pad: clamp(18px, 2.2vw, 34px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) var(--paper);
}

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

html.lenis,
html.lenis.lenis-smooth {
  scroll-behavior: auto;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

.scroll-rail {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: clamp(14px, 2vw, 32px);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .56);
  transform: translateY(-50%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.scroll-rail-label,
.scroll-rail-count {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.scroll-rail-track {
  position: relative;
  width: 1px;
  height: clamp(92px, 14vh, 138px);
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.scroll-rail-fill {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background: var(--acid);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .18s linear;
}

main#top {
  position: relative;
  background:
    radial-gradient(ellipse 65% 35% at 15% 20%, rgba(59, 70, 98, 0.75) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 30%, rgba(15, 31, 64, 0.8) 0%, transparent 75%),
    radial-gradient(ellipse 70% 45% at 50% 45%, rgba(47, 57, 83, 0.75) 0%, transparent 70%),
    radial-gradient(ellipse 65% 40% at 20% 60%, rgba(29, 53, 92, 0.7) 0%, transparent 75%),
    radial-gradient(ellipse 60% 45% at 80% 75%, rgba(38, 47, 64, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 75% 50% at 40% 90%, rgba(19, 26, 38, 0.85) 0%, transparent 75%),
    linear-gradient(180deg,
      #080b11 0%,
      #080b11 27%,
      #152238 35%,
      #2F3953 45%,
      #1d2a40 55%,
      #0f1824 65%,
      #0b0b0a 76%,
      #0b0b0a 100%
    );
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

button {
  color: inherit;
}

.eyebrow {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}

.section-pad {
  padding: clamp(90px, 12vw, 180px) var(--pad);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.section-count {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  color: var(--white);
  pointer-events: none;
}

.loader-panel {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: top;
  transition: transform 1.05s var(--ease);
}

.loader-panel-b {
  top: 50%;
  height: 50%;
  background: var(--blue);
  transform-origin: bottom;
}

.loader-word {
  position: relative;
  z-index: 2;
  display: flex;
  gap: .08em;
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.06em;
  mix-blend-mode: difference;
}

.loader-word span:last-child {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
}

.loader-count {
  position: absolute;
  right: var(--pad);
  bottom: var(--pad);
  z-index: 2;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

body.is-loaded .loader-panel-a {
  transform: scaleY(0);
}

body.is-loaded .loader-panel-b {
  transform: scaleY(0);
}

body.is-loaded .loader-word,
body.is-loaded .loader-count {
  opacity: 0;
  transition: opacity .25s ease .4s;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 600;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  margin: -2.5px;
  background: var(--acid);
  box-shadow: 0 0 10px rgba(156, 218, 247, .75);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px;
  border: 1px solid rgba(156, 218, 247, .78);
  transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background .25s ease;
}

.cursor-ring.is-hovering {
  width: 58px;
  height: 58px;
  margin: -29px;
  background: rgba(156, 218, 247, .1);
}

#platform,
#integrations,
#workflows,
#pricing,
#supervision {
  scroll-margin-top: 90px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  padding: 22px clamp(28px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 11, 17, 0.97) 0%, rgba(15, 31, 64, 0.72) 58%, transparent 100%);
  box-shadow: none;
  transition: transform .5s var(--ease);
}

.site-header.is-hidden {
  transform: translateY(-90px);
}

.glass-panel {
  color: var(--white);
  background: rgba(9, 9, 8, .88);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.nav-brand {
  pointer-events: auto;
  display: inline-flex;
  justify-self: start;
  align-items: center;
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  gap: 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #ffffff;
  text-decoration: none;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1);
}

.desktop-nav {
  pointer-events: auto;
  display: flex;
  justify-self: center;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  gap: clamp(22px, 3vw, 44px);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 2px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  font-weight: 600;
  background: transparent;
  transition: color .25s ease, opacity .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #ffffff;
  background: transparent;
}

.header-actions {
  pointer-events: auto;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .split-button {
  font-size: 16px;
  font-weight: 700;
  min-height: 52px;
}

.header-actions .split-button span {
  padding: 0 23px;
}

.sound-toggle,
.menu-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  color: #ffffff;
}

.sound-bars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 13px;
}

.sound-bars i {
  width: 2.2px;
  height: 7px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.45);
  animation: sound 1s ease-in-out infinite alternate;
  transition: background 0.2s, box-shadow 0.2s;
}

.sound-toggle:hover .sound-bars i {
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.sound-bars i:nth-child(2) { height: 13px; animation-delay: -.35s; }
.sound-bars i:nth-child(3) { height: 9px; animation-delay: -.65s; }

@keyframes sound {
  to { transform: scaleY(.35); }
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -4px);
  transition: transform .3s ease;
}

.menu-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.split-button {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: stretch;
  min-height: 42px;
  padding: 0;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 0;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  cursor: pointer;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .015em;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.split-button span {
  display: flex;
  align-items: center;
  padding: 0 16px;
  white-space: nowrap;
}

.split-button i {
  display: grid;
  place-items: center;
  width: 42px;
  font-style: normal;
  font-size: 17px;
  border-left: 1px solid currentColor;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease;
}

.split-button:hover i {
  transform: translate(2px, -2px);
}

.split-button-light {
  --btn-bg: var(--white);
  --btn-fg: var(--ink);
  box-shadow: none;
}

.split-button-dark {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
}

.split-button-dark:hover,
.split-button-light:hover {
  --btn-bg: var(--acid);
  --btn-fg: var(--ink);
}

.split-button-outline {
  --btn-bg: transparent;
  --btn-fg: inherit;
  box-shadow: inset 0 0 0 1px currentColor;
}

.split-button-outline:hover {
  --btn-bg: var(--white);
  --btn-fg: var(--ink);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  color: var(--white);
  background: var(--blue);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease);
}

.mobile-menu.is-open {
  clip-path: inset(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 105px 20px 26px;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  font-family: var(--serif);
  font-size: clamp(35px, 10vw, 58px);
  line-height: 1;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.mobile-menu a span {
  font-family: var(--sans);
  font-size: 9px;
}

.mobile-menu .split-button {
  margin-top: auto;
  width: 100%;
  justify-content: space-between;
}

.hero {
  display: grid;
  grid-template-columns: 54.5% 45.5%;
  min-height: max(720px, 100svh);
  padding: 0 var(--pad);
  background: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 132px clamp(22px, 4vw, 70px) 28px 0;
}

.hero-title {
  margin: 10vh 0 28px;
  font-family: var(--serif);
  font-size: clamp(53px, 5.75vw, 95px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.055em;
}

.hero-title span {
  display: block;
}

.hero-title em {
  color: var(--blue);
  font-weight: 300;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 27px;
  color: #54544f;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.43;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.play-dot {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 8px;
  transition: transform .3s var(--ease);
}

.text-button:hover .play-dot { transform: scale(1.1); }

.hero-foot {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 34px;
  color: #777771;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--blue);
}

.supervision-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12);
  mix-blend-mode: screen;
  opacity: .78;
}

.video-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,78,232,.25), rgba(11,78,232,.75)), radial-gradient(circle at 55% 42%, rgba(255,255,255,.2), transparent 42%);
  mix-blend-mode: multiply;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: radial-gradient(rgba(255,255,255,.8) .55px, transparent .55px);
  background-size: 4px 4px;
}

.live-card,
.voice-capsule {
  position: absolute;
  z-index: 2;
  color: var(--white);
  background: rgba(5, 17, 52, .78);
  border: 1px solid rgba(255, 255, 255, .23);
  backdrop-filter: blur(16px);
}

.live-card {
  left: 26px;
  right: 26px;
  top: 22%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
}

.live-pulse,
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 255, 46, .13);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: .45; transform: scale(.85); }
}

.live-card small,
.live-card strong {
  display: block;
}

.live-card small {
  margin-bottom: 3px;
  opacity: .58;
  font-size: 8px;
  letter-spacing: .1em;
}

.live-card strong {
  font-size: 12px;
  font-weight: 500;
}

.call-time {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.voice-capsule {
  right: 26px;
  bottom: 17%;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(330px, calc(100% - 52px));
  padding: 16px;
}

.voice-label {
  font-size: 9px;
  letter-spacing: .1em;
}

.waveform {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 4px;
  height: 34px;
}

.waveform i {
  flex: 1;
  height: 30%;
  background: currentColor;
  animation: wave 1s ease-in-out infinite alternate;
  transform-origin: center;
}

.waveform i:nth-child(2n) { animation-delay: -.2s; }
.waveform i:nth-child(3n) { animation-delay: -.5s; }
.waveform i:nth-child(5n) { animation-delay: -.75s; }

@keyframes wave {
  to { height: 100%; }
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 12px;
  color: rgba(255,255,255,.7);
  font-size: 9px;
  letter-spacing: .08em;
}

/* --- New Boxed Hero Layout --- */
.hero-boxed {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(1) contrast(1.5) brightness(1.2) blur(12px);
}

.hero-bg-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 80, 255, 0.35) 0%, var(--ink) 90%);
  mix-blend-mode: multiply;
}

.crosshair-v, .crosshair-h {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
}

.crosshair-v {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.crosshair-h {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.central-box {
  position: relative;
  z-index: 3;
  width: min(92%, 1160px);
  max-width: 1200px;
  margin-inline: auto;
  height: 60vh;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.corner-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--white);
}
.corner-dot.top-left { top: -3px; left: -3px; }
.corner-dot.top-right { top: -3px; right: -3px; }
.corner-dot.bottom-left { bottom: -3px; left: -3px; }
.corner-dot.bottom-right { bottom: -3px; right: -3px; }

.box-top-left {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--acid);
  text-transform: uppercase;
}

.box-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: auto auto;
}
.box-heading h1 {
  font-family: var(--sans);
  font-size: clamp(60px, 12vw, 190px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 20px;
  text-wrap: balance;
}
.box-heading .studio {
  position: relative;
  z-index: 1;
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #ffffff;
}

.box-subtitle {
  margin: clamp(14px, 1.8vw, 22px) 0 0 0;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 400;
  color: #ffffff;
  max-width: 48ch;
  text-wrap: balance;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.box-middle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}
.box-desc {
  max-width: 55ch;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: pretty;
}

.box-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.box-profile.sonia-trigger-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 22px 8px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.box-profile.sonia-trigger-btn:hover {
  background: rgba(156, 218, 247, 0.15);
  border-color: #9cdaf7;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(156, 218, 247, 0.25);
}

.sonia-waves-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(156, 218, 247, 0.15);
  border: 1px solid #9cdaf7;
  display: grid;
  place-items: center;
  box-shadow: 0 0 15px rgba(156, 218, 247, 0.35);
}

.sonia-bars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 23px;
}
.sonia-bars i {
  width: 2.5px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  animation: soniaPulse 0.9s ease-in-out infinite alternate;
}
.sonia-bars i:nth-child(2) { height: 16px; animation-delay: -0.2s; background: #9cdaf7; }
.sonia-bars i:nth-child(3) { height: 12px; animation-delay: -0.4s; }
.sonia-bars i:nth-child(4) { height: 18px; animation-delay: -0.6s; background: #9cdaf7; }
.sonia-bars i:nth-child(5) { height: 10px; animation-delay: -0.8s; }

@keyframes soniaPulse {
  to { transform: scaleY(0.3); }
}

.sonia-live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
  margin: 0 3px;
}

.box-profile-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
}
.box-profile-info small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  margin-top: 3px;
  text-align: left;
}
.box-profile-signature {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 90%;
  font-family: 'Mrs Saint Delafield', 'Brush Script MT', cursive;
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 300;
  letter-spacing: .18em;
  color: var(--acid);
  -webkit-text-stroke: 0;
  transform: rotate(-8deg);
  opacity: 1;
  white-space: nowrap;
  pointer-events: none;
}

.box-footer {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--white);
  font-weight: 600;
}

.hero-screen-footer {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 35px;
  right: 35px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
}
.hero-screen-footer .footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-screen-footer .status-bars {
  display: flex;
  gap: 2px;
}
.hero-screen-footer .status-bars i {
  width: 3px;
  height: 12px;
  background: var(--acid);
}
/* --- End New Boxed Hero Layout --- */

@media (max-width: 800px) {
  .central-box {
    padding: 25px;
    height: auto;
    min-height: 70vh;
  }
  .box-heading h1 {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .box-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .box-profile-signature {
    display: none;
  }
  .sonia-waves-badge {
    width: 48px;
    height: 48px;
  }
  .box-profile.sonia-trigger-btn {
    padding: 7px 18px 7px 7px;
  }
  .hero-screen-footer {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    bottom: 15px;
  }
}

.capability-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding: 0 var(--pad);
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.capability-item {
  position: relative;
  min-height: 136px;
  padding: 23px 18px;
  border-right: 1px solid var(--line-light);
}

.capability-item:first-child { border-left: 1px solid var(--line-light); }

.capability-item span {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 600;
}

.capability-item strong,
.capability-item small {
  display: block;
}

.capability-item strong {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

.capability-item small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 400;
  text-wrap: pretty;
}

.closing-gap {
  --gap-progress: 0;
  position: relative;
  height: 175vh;
  color: var(--paper);
  background: #080b11;
}

.gap-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #080b11;
}

.gap-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.gap-kicker {
  position: absolute;
  z-index: 5;
  margin: 0;
  font-size: 9px;
  letter-spacing: .08em;
}

.gap-kicker { top: 30px; left: var(--pad); }

.gap-phrase {
  position: absolute;
  z-index: 3;
  inset: 50% 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .1em;
  white-space: nowrap;
  transform: translateY(-50%);
  font-size: clamp(48px, 5.7vw, 96px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.07em;
}

.gap-left {
  will-change: transform;
  transform: translateY(calc(-35vh * (1 - var(--gap-progress))));
}

.gap-right {
  will-change: transform;
  transform: translateY(calc(35vh * (1 - var(--gap-progress))));
}

.gap-media {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: calc(15vw + (30vw * var(--gap-progress)));
  height: calc(15vw + (30vw * var(--gap-progress)));
  max-width: 600px;
  max-height: 600px;
  will-change: width, height, transform;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 35%, rgba(156, 218, 247, 0.45) 0%, rgba(15, 31, 64, 0.85) 50%, #000000 100%);
  box-shadow: 0 0 50px rgba(15, 31, 64, 0.6), 0 20px 40px rgba(0, 0, 0, 0.8);
}

.gap-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) saturate(.15);
  opacity: 0.9;
  mix-blend-mode: screen;
  transform: scale(1.08);
}

.gap-note {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: calc(50% + clamp(80px, 11vw, 150px));
  width: min(760px, 82vw);
  max-width: 72ch;
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  transform: translate3d(-50%, calc((1 - var(--gap-progress)) * 25px), 0);
  opacity: calc((var(--gap-progress) - 0.25) * 2);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  pointer-events: none;
  text-wrap: pretty;
}

.platform-section {
  color: var(--ink);
  background: var(--white);
}

.floema-section {
  position: relative;
  background: transparent;
  color: var(--white);
}

.features-layout .collection .media {
  transform: translate3d(0, var(--media-shift, 0px), 0);
  transition: transform .55s var(--ease), box-shadow .45s var(--ease);
}

.features-layout .collection .media:hover {
  transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.025);
}

.features-layout .collection .floema-bg-video {
  transform: translate3d(0, var(--video-shift, 0px), 0) scale(1.035);
}

.features-layout .collection .media:hover .floema-bg-video {
  transform: translate3d(0, var(--video-shift, 0px), 0) scale(1.075);
}

.floema-pin-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
  padding: 0;
}

.floema-side-text {
  display: none;
}

.line-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: auto;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 60px) 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.line-wrapper .line {
  display: none;
}

.line-wrapper .main-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
  color: #ffffff;
}

.line-wrapper .scroll-label {
  font-size: 0.875rem;
  opacity: 0.65;
  margin: 0;
  color: #ffffff;
}

.floema-heading {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 60px) 24px;
}

.floema-heading h2 {
  font-family: var(--sans);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 45ch;
  text-wrap: balance;
}

.floema-heading .section-intro {
  margin: 0;
  max-width: 64ch;
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}

.collections-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(24px, 5vw, 60px);
}

.collection {
  position: relative;
  width: 100%;
  z-index: 1;
  opacity: 1 !important;
  pointer-events: auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(50px, 6vw, 80px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

.collection:last-child {
  border-bottom: none;
  padding-bottom: 25px;
}

.collection.slide-1,
.collection.slide-2,
.collection.slide-3 {
  opacity: 1 !important;
  z-index: 1;
  pointer-events: auto !important;
}

.collection .media {
  position: relative;
  width: clamp(380px, 44vw, 620px);
  aspect-ratio: 16 / 10;
  border-radius: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  will-change: clip-path;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.55s ease;
}

.collection .media:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
}

.collection .media-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.floema-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.45s ease;
}

.floema-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.04) saturate(0.82);
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.55s ease;
}

.collection .media:hover .floema-bg-video {
  transform: scale(1.04);
  filter: brightness(0.94) contrast(1.06) saturate(0.95);
}

.collection .media:hover .floema-bg-img {
  transform: scale(1.04);
  filter: brightness(0.6);
}

.floema-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
}

.collection .g-row {
  position: relative;
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  color: var(--white);
}

.tag {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.title-wrapper {
  max-width: 100%;
}

.title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 300;
  margin: 0 0 16px 0;
  color: #ffffff;
  max-width: 25ch;
  text-wrap: balance;
}

.split-line {
  display: inline;
  padding-bottom: 0.1em;
}

.split-word {
  display: inline-block;
  will-change: transform, opacity;
  margin-right: 0.25em;
}

.desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 48ch;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .collection {
    flex-direction: column;
    gap: 28px;
    padding: 70px 24px 30px;
  }
  .collection .media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .collection .g-row {
    max-width: 100%;
  }
}

@media (min-width: 1051px) {
  .floema-heading {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .floema-heading .section-intro {
    max-width: 70ch;
    font-size: clamp(18px, 1.45vw, 21px);
    line-height: 1.5;
  }

  .collections-wrapper {
    max-width: 1400px;
    padding-inline: clamp(24px, 3vw, 40px);
  }

  .collection {
    gap: clamp(42px, 5.5vw, 82px);
    padding-block: clamp(64px, 6vw, 92px);
  }

  .collection .media {
    width: clamp(480px, 46vw, 680px);
  }

  .collection .g-row {
    max-width: 520px;
  }

  .collection .title {
    max-width: 28ch;
    font-size: clamp(32px, 3.6vw, 54px);
  }

  .collection .desc {
    max-width: 58ch;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.5;
  }
}

/* ========================================================
   FUNCTIONALITY STORY RAIL
   ======================================================== */
.features-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, .24fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  max-width: 1800px;
  margin: 0 auto;
  padding: 52px var(--pad) 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.features-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-top: 4px;
}

.features-aside-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-aside-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px rgba(156, 218, 247, 0.5);
}

.features-aside .eyebrow {
  font-size: clamp(15px, 1vw, 18px);
  letter-spacing: .1em;
  white-space: nowrap;
  text-align: left;
}

.features-aside .section-intro {
  max-width: 26ch;
  margin: 44px 0 0;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

.features-layout .collections-wrapper {
  max-width: none;
  margin: 0;
  padding: 0;
}

.features-layout .collection {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, .95fr);
  align-items: stretch;
  gap: clamp(28px, 3.2vw, 56px);
  padding: 32px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
}

.features-layout .collection:last-child {
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.features-layout .collection .media {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  align-self: start;
}

.features-layout .collection .g-row {
  max-width: none;
  min-height: 100%;
  padding: 3px 0 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.feature-card-top span:last-child {
  padding: 2px 6px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 3px;
}

.features-layout .collection .lower-content {
  margin: 44px 0 auto;
}

.features-layout .collection .title {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(30px, 2.65vw, 46px);
  line-height: 1.08;
}

.features-layout .collection .desc {
  max-width: 38ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
}

.feature-card-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-card-foot span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.feature-card-foot strong {
  max-width: 28ch;
  color: var(--white);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.25;
}

@media (max-width: 1050px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px var(--pad) 70px;
  }

  .features-aside {
    position: static;
  }

  .features-aside .section-intro {
    max-width: 52ch;
    margin-top: 18px;
  }

  .features-layout .collection {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0 48px;
  }

  .features-layout .collection .media {
    aspect-ratio: 16 / 10;
  }

  .features-layout .collection .g-row {
    min-height: auto;
    gap: 26px;
  }

  .features-layout .collection .lower-content {
    margin: 0;
  }

  .feature-card-foot {
    margin-top: 0;
  }
}

/* ========================================================
   SONBOX HORIZONTAL PEEK SHOWCASE CAROUSEL (Image 1 Reference)
   ======================================================== */
.showcase-carousel-section {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: 0 0 clamp(18px, 2.5vw, 34px);
  overflow: hidden;
  border-top: none;
}

.showcase-header {
  text-align: center;
  padding: clamp(36px, 5vw, 60px) var(--pad) clamp(16px, 2.5vw, 30px);
}

.showcase-kicker {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9cdaf7;
  font-weight: 700;
  margin-bottom: 16px;
}

.showcase-huge-title {
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 36ch;
  text-wrap: balance;
  color: var(--white);
}

/* VIEWPORT & INFINITE PEEK TRACK */
.showcase-viewport {
  position: relative;
  width: 100%;
  height: clamp(380px, 34vw, 450px);
  margin: 10px 0 30px;
  overflow: hidden;
}

.showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SHOWCASE CARD (Compact luxury size) */
.showcase-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(480px, 42vw, 620px);
  height: 100%;
  background: #141413;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1), opacity 0.8s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  user-select: none;
}

/* Active Card in Center */
.showcase-card.active {
  transform: translate3d(-50%, 0, 0) scale(1);
  opacity: 1;
  border: 2px solid #9cdaf7;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 45px rgba(156, 218, 247, 0.35);
  cursor: default;
  z-index: 10;
  pointer-events: auto;
}

.showcase-card:hover,
.showcase-card.active:hover {
  border-color: #9cdaf7;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 55px rgba(156, 218, 247, 0.45);
}

/* Peeking Previous Card on Left */
.showcase-card.prev {
  transform: translate3d(calc(-50% - clamp(320px, 33vw, 460px)), 0, 0) scale(0.88);
  opacity: 0.6;
  border-color: rgba(255, 255, 255, 0.08);
  z-index: 5;
  pointer-events: auto;
}

/* Peeking Next Card on Right */
.showcase-card.next {
  transform: translate3d(calc(-50% + clamp(320px, 33vw, 460px)), 0, 0) scale(0.88);
  opacity: 0.6;
  border-color: rgba(255, 255, 255, 0.08);
  z-index: 5;
  pointer-events: auto;
}

/* Hovering on peeking Previous / Next Card */
.showcase-card.prev:hover {
  transform: translate3d(calc(-50% - clamp(320px, 33vw, 460px)), 0, 0) scale(0.92);
  opacity: 0.92;
  border-color: #9cdaf7;
}

.showcase-card.next:hover {
  transform: translate3d(calc(-50% + clamp(320px, 33vw, 460px)), 0, 0) scale(0.92);
  opacity: 0.92;
  border-color: #9cdaf7;
}

/* Hidden Card (when 4th card is behind) */
.showcase-card.hidden-card {
  transform: translate3d(-50%, 0, 0) scale(0.7);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* TOP HEADER AREA OF CARD */
.showcase-card-header {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-card-top {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 6px;
}

.showcase-card-badge {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9cdaf7;
  text-transform: uppercase;
  text-align: center;
}

.showcase-card-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.15;
  color: var(--white);
  margin: 0 auto 6px auto;
  letter-spacing: -0.01em;
  text-align: center;
  width: 100%;
}

.showcase-card-hover-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
  width: 100%;
  display: flex;
  justify-content: center;
}

.showcase-card:hover .showcase-card-hover-text,
.showcase-card.active:hover .showcase-card-hover-text {
  max-height: 140px;
  opacity: 1;
  margin-top: 16px;
}

.showcase-card-text {
  font-family: var(--sans);
  font-size: clamp(13px, 1.1vw, 14.5px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  max-width: 52ch;
  text-align: center;
  text-wrap: pretty;
}

/* CENTER VISUAL STAGE (Mockup / Video inside Card) */
.showcase-card-stage {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f0f0e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 10px;
  z-index: 3;
  transition: flex 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), min-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-card:hover .showcase-card-stage,
.showcase-card.active:hover .showcase-card-stage {
  flex: 0 0 clamp(140px, 15vw, 175px);
  min-height: clamp(140px, 15vw, 175px);
}

.showcase-card-stage video,
.showcase-card-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.15);
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.showcase-card.active:hover .showcase-card-stage video {
  transform: scale(1.04);
}

/* CAROUSEL PAGINATION DOTS */
.showcase-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.showcase-dot.active {
  background: #9cdaf7;
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(156, 218, 247, 0.6);
}

.showcase-dot:hover {
  background: var(--white);
}

/* RESPONSIVE BREAKPOINTS FOR TABLET / MOBILE */
@media (max-width: 950px) {
  .showcase-viewport {
    height: 430px;
  }
  .showcase-card {
    width: 86vw;
    height: 410px;
    padding: 24px 20px;
  }
  .showcase-card.prev {
    transform: translate3d(calc(-50% - 78vw), 0, 0) scale(0.88);
  }
  .showcase-card.next {
    transform: translate3d(calc(-50% + 78vw), 0, 0) scale(0.88);
  }
  .showcase-card.prev:hover {
    transform: translate3d(calc(-50% - 78vw), 0, 0) scale(0.92);
  }
  .showcase-card.next:hover {
    transform: translate3d(calc(-50% + 78vw), 0, 0) scale(0.92);
  }
  .showcase-card-stage {
    height: 170px;
  }
}

/* ========================================================
   SECTION 05 - MINI HORIZONTAL DIALOGUE STRIP (Sketch Reference)
   ======================================================== */
.supervision-section.questions-flip-section {
  position: relative;
  width: 100%;
  padding: clamp(28px, 3.5vw, 40px) var(--pad);
  background: transparent;
  color: var(--white);
  border-top: none;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.mini-strip-header {
  width: 100%;
  max-width: 1150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
  text-align: center;
}

.mini-strip-header .eyebrow {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.questions-grid-container {
  width: min(100%, 1130px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
  gap: 24px;
  align-items: start;
}

/* 3D FLIP CARD CONTAINER */
.question-flip-card {
  position: relative;
  width: 100%;
  height: 148px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.question-flip-card:hover .flip-card-inner,
.question-flip-card.auto-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Front: Client Question */
.flip-card-front {
  background: rgba(19, 26, 38, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
}

.question-flip-card:hover .flip-card-front,
.question-flip-card.auto-flipped .flip-card-front {
  border-color: #9cdaf7;
}

/* Back: Sonia Answer (Rotated 180deg) */
.flip-card-back {
  background: rgba(20, 28, 40, 0.96);
  border: 1.5px solid #9cdaf7;
  transform: rotateY(180deg);
  box-shadow: 0 15px 35px rgba(156, 218, 247, 0.22);
}

.question-badge {
  font-family: var(--mono);
  font-size: 10px;
  color: #9cdaf7;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.question-text {
  margin: 6px 0 0 0;
  font-size: clamp(14.5px, 1.3vw, 16.5px);
  color: #ffffff;
  line-height: 1.35;
  font-weight: 500;
  text-wrap: pretty;
}

.flip-hint {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-weight: 600;
}

.flip-hint.back-hint {
  color: #9cdaf7;
}

.answer-badge-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6px;
}

.sonia-speaker-badge {
  font-family: var(--mono);
  font-size: 10px;
  color: #9cdaf7;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-text {
  margin: 0;
  font-size: clamp(13px, 1.15vw, 14px);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.35;
  font-weight: 400;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .questions-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .question-flip-card {
    height: 148px;
  }
}

.shared-wavy-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

/* SEAMLESS THEME TRANSITION BRIDGE (04 Black -> 05 Creamy White) */
.theme-transition-bridge {
  position: relative;
  width: 100%;
  height: clamp(150px, 18vw, 220px);
  background: linear-gradient(
    180deg,
    var(--ink) 0%,
    #131312 18%,
    #242421 38%,
    #4a4944 58%,
    #98968d 78%,
    #dedcd4 92%,
    var(--paper) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.bridge-center-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(11, 11, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.bridge-center-pill .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.bridge-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  z-index: 1;
}

.bridge-horizon-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.14) 50%, transparent 95%);
  z-index: 2;
}

.bridge-curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 44px;
  background: var(--paper);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  transform: scaleX(1.15);
  box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.theme-transition-bridge-reverse {
  position: relative;
  height: clamp(140px, 16vw, 200px);
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    #dedcd4 18%,
    #98968d 38%,
    #4a4944 58%,
    #242421 78%,
    #131312 92%,
    var(--ink) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.bridge-curve-bottom-reverse {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 44px;
  background: var(--ink);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  transform: scaleX(1.15);
  box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.wavy-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  opacity: 0.14;
}

.wavy-svg {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.85);
}

.wavy-line {
  stroke-dasharray: 2000 4000;
  animation-name: wavy-path;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wavy-path {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 6000; }
}

.integrations-section {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 65px) clamp(35px, 6vw, 90px) clamp(80px, 10vw, 130px);
  z-index: 10;
  color: var(--white);
  background: transparent;
}

.integrations-section .section-kicker,
.integrations-section .integrations-heading,
.integrations-section .integration-cards {
  position: relative;
  z-index: 2;
}

.integrations-heading {
  margin: 25px auto 35px;
  max-width: 1180px;
}

.integrations-heading h2 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 6px 0;
  max-width: 38ch;
  text-wrap: balance;
}

.integrations-heading p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 58ch;
  text-wrap: pretty;
}

.integration-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1180px);
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: clamp(45px, 5vw, 70px);
}

.integration-card {
  min-height: 295px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color .45s ease, background .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.integration-card:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.integration-card.is-auto-highlighted {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(156, 218, 247, 0.72);
  box-shadow: inset 0 0 0 1px rgba(156, 218, 247, 0.28), 0 14px 42px rgba(0, 0, 0, 0.18);
}

.integration-card > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.integration-card h3 {
  margin: 100px 0 18px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 39px);
  font-weight: 300;
  line-height: 1;
}

.integration-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.5;
  text-wrap: pretty;
}

.integration-card:hover p,
.integration-card.is-auto-highlighted p { color: #ffffff; }

.pricing-section {
  color: var(--white);
  background: transparent;
}

.pricing-section .section-kicker { border-color: rgba(255, 255, 255, 0.15); }

.pricing-heading {
  margin: clamp(28px, 3vw, 42px) auto clamp(48px, 5vw, 72px);
  max-width: 780px;
  padding-inline: clamp(16px, 3vw, 48px);
  text-align: center;
}
.pricing-heading p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  max-width: 62ch;
  text-wrap: pretty;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 800px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(19, 27, 41, 0.45);
  backdrop-filter: blur(12px);
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(160deg, #1d355c 0%, #132442 100%);
  border: 2px solid #9cdaf7;
  box-shadow: 0 0 50px rgba(156, 218, 247, 0.22);
}

.price-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: .06em;
}

.price-card h3 {
  margin: 115px 0 7px;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 300;
  line-height: .9;
}

.price-card h3 small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
}

.setup {
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 55px 0 35px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.price-card li::before {
  content: "↳";
  margin-right: 8px;
  color: #9cdaf7;
}

.price-card .split-button { margin-top: auto; width: 100%; justify-content: space-between; }

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: #0b0b0a;
}

.final-cta::before,
.site-footer::before {
  display: none;
}

@keyframes meshDrift {
  0% { transform: translate(0%, 0%) scale(1); }
  33% { transform: translate(3%, -2%) scale(1.04); }
  66% { transform: translate(-2%, 3%) scale(0.98); }
  100% { transform: translate(2%, 2%) scale(1.03); }
}

/* Noise overlay removed */

.final-cta > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2.5px) contrast(1.15) sepia(0.85) hue-rotate(185deg) saturate(2.8);
  mix-blend-mode: screen;
  opacity: 0.28;
  z-index: 0;
}

.final-cta-shade {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(156, 218, 247, 0.45) 0%, rgba(120, 175, 230, 0.35) 50%, rgba(156, 218, 247, 0.45) 100%);
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 1;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta-copy .eyebrow {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.final-cta-copy h2 {
  margin: 30px auto 42px;
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 155px);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.06em;
  max-width: 26ch;
  text-wrap: balance;
}

.cta-orbit {
  position: absolute;
  width: clamp(260px, 38vw, 610px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(156, 218, 247, 0.3);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.cta-orbit::before,
.cta-orbit::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #9cdaf7;
  box-shadow: 0 0 10px #9cdaf7;
  border-radius: 50%;
}

.cta-orbit::before { top: -3px; }
.cta-orbit::after { bottom: -3px; }

.cta-orbit span {
  position: absolute;
  top: -8px;
  padding: 2px 14px;
  background: #111a2a;
  border: 1px solid #9cdaf7;
  color: #9cdaf7;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

@keyframes orbit { to { transform: rotate(360deg); } }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) var(--pad) 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(19, 26, 38, 0.7) 0%, transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(15, 31, 64, 0.5) 0%, transparent 55%),
    #0b0b0a;
}

.footer-top,
.footer-links,
.footer-legal {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10vw;
  align-items: end;
  padding-bottom: clamp(80px, 10vw, 140px);
}

.footer-top h2 {
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.05em;
  max-width: 25ch;
  text-wrap: balance;
}

.footer-form label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.55);
  font-size: 8px;
  letter-spacing: .08em;
}

.footer-form > div {
  display: grid;
  grid-template-columns: 1fr 50px;
  border-bottom: 1px solid rgba(255,255,255,.65);
}

.footer-form input {
  min-width: 0;
  padding: 15px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 40px);
}

.footer-form input::placeholder { color: rgba(255,255,255,.27); }

.footer-form button {
  color: #0f1520;
  background: #9cdaf7;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
}

.footer-form > p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.35);
  font-size: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 0 70px;
  border-top: 1px solid var(--line-light);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 14px;
  color: rgba(255,255,255,.38);
  font-size: 8px;
  letter-spacing: .08em;
}

.footer-links a,
.footer-status strong,
.footer-status p {
  font-size: 11px;
}

.footer-links a:hover { color: #9cdaf7; }

.footer-status strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.footer-status strong i {
  width: 6px;
  height: 6px;
  background: #9cdaf7;
  box-shadow: 0 0 8px #9cdaf7;
  border-radius: 50%;
}

.footer-status p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.48);
  line-height: 1.5;
  text-wrap: pretty;
}

.footer-wordmark {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  overflow: hidden;
  height: clamp(160px, 25vw, 380px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.footer-wordmark img {
  width: clamp(75px, 16vw, 245px);
  height: clamp(75px, 16vw, 245px);
  object-fit: contain;
  filter: invert(1);
}

.footer-wordmark span {
  font-size: clamp(70px, 15vw, 240px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.06em;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  letter-spacing: .06em;
}

.demo-modal {
  width: min(1040px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: clamp(28px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, #3B4662 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, #2F3953 0%, transparent 60%),
    radial-gradient(circle at 80% 85%, #262F40 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, #131A26 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, #0F1F40 0%, #131A26 100%);
  background-color: #0F1F40;
  border: 1px solid rgba(156, 218, 247, 0.18);
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.demo-modal::backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(7px);
}

.demo-modal[open] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  cursor: pointer;
  font-size: 25px;
}

.modal-index {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 8px;
  letter-spacing: .08em;
}

.modal-copy h2 {
  margin: 55px 0 25px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.05em;
}

.modal-copy > p:last-child {
  max-width: 470px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.5;
}

.demo-form {
  display: grid;
  align-content: start;
  gap: 18px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.43);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  font-size: 15px;
  text-transform: none;
}

.demo-form input:focus,
.demo-form textarea:focus { border-color: var(--acid); }

.demo-form input::placeholder,
.demo-form textarea::placeholder { color: rgba(255,255,255,.38); }

.demo-form .split-button {
  width: 100%;
  justify-content: space-between;
  margin-top: 8px;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 10px;
}

@media (min-width: 1051px) {
  .hero-boxed .central-box,
  .capability-rail,
  .floema-panel .floema-content,
  .engine-section,
  .supervision-section,
  .integrations-section,
  .pricing-section {
    zoom: 1.15;
  }

  .site-header {
    padding: 22px clamp(28px, 4vw, 60px);
  }

  .desktop-nav {
    gap: clamp(22px, 3.2vw, 42px);
  }

  .line-wrapper .eyebrow,
  .section-kicker .eyebrow,
  .showcase-kicker {
    font-size: 20px;
  }

  .integrations-section {
    padding-inline: clamp(28px, 4vw, 60px);
  }

  .integrations-heading {
    max-width: 1320px;
  }

  .integrations-heading h2 {
    font-size: 20px;
    max-width: 52ch;
  }

  .integrations-heading p {
    max-width: 78ch;
  }

  .integration-cards {
    width: min(100%, 1320px);
    margin-top: clamp(42px, 4vw, 60px);
  }

  .integration-card {
    min-height: 340px;
    padding: 26px;
  }

  .integration-card h3 {
    margin-top: 116px;
    font-size: clamp(29px, 3vw, 46px);
  }

  .integration-card p {
    font-size: 14px;
  }

  .showcase-header {
    padding-top: clamp(48px, 5vw, 72px);
    padding-bottom: clamp(24px, 3vw, 38px);
  }

  .showcase-carousel-section {
    padding-bottom: clamp(14px, 1.8vw, 24px);
  }

  .showcase-viewport {
    margin-bottom: 16px;
  }

  .showcase-controls {
    margin-top: 14px;
  }

  .showcase-huge-title {
    max-width: 46ch;
    font-size: clamp(34px, 4.2vw, 60px);
  }

  .showcase-viewport {
    height: clamp(440px, 38vw, 540px);
  }

  .showcase-card {
    width: clamp(560px, 48vw, 760px);
    padding: clamp(30px, 3.5vw, 48px);
  }

  .showcase-card.prev,
  .showcase-card.next {
    transform: translate3d(calc(-50% - clamp(380px, 38vw, 560px)), 0, 0) scale(0.88);
  }

  .showcase-card.next {
    transform: translate3d(calc(-50% + clamp(380px, 38vw, 560px)), 0, 0) scale(0.88);
  }

  .showcase-card.prev:hover {
    transform: translate3d(calc(-50% - clamp(380px, 38vw, 560px)), 0, 0) scale(0.92);
  }

  .showcase-card.next:hover {
    transform: translate3d(calc(-50% + clamp(380px, 38vw, 560px)), 0, 0) scale(0.92);
  }

  .showcase-card-title {
    font-size: clamp(26px, 2.8vw, 36px);
  }

  .showcase-card-stage {
    min-height: 220px;
  }

  .supervision-section.questions-flip-section {
    padding-block: clamp(28px, 3vw, 44px);
    margin-top: 0;
  }

  .mini-strip-header {
    max-width: 1260px;
  }

  .questions-grid-container {
    width: min(100%, 1260px);
    gap: 28px;
  }

  .question-flip-card {
    height: 178px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 22px 26px;
  }

  .question-text {
    font-size: clamp(16px, 1.35vw, 19px);
  }

  .pricing-section.section-pad {
    padding-top: clamp(62px, 5vw, 88px);
    padding-bottom: clamp(100px, 8vw, 140px);
  }

  .pricing-heading {
    max-width: 780px;
    margin-top: clamp(30px, 3vw, 44px);
    margin-bottom: clamp(48px, 5vw, 72px);
  }

  .pricing-heading p {
    max-width: 62ch;
  }

  .pricing-grid {
    width: min(100%, 1120px);
  }

  .price-card {
    min-height: 600px;
    padding: 30px;
  }

  .price-card h3 {
    font-size: clamp(50px, 5.5vw, 86px);
  }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .header-actions .split-button { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu { display: block; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .hero-copy {
    min-height: 82svh;
    padding: 115px var(--pad) 26px;
  }

  .hero-title { margin-top: 14vh; font-size: clamp(58px, 10vw, 92px); }
  .hero-media { min-height: 72svh; margin: 0 var(--pad) var(--pad); }
  .capability-rail { grid-template-columns: repeat(2, 1fr); }
  .floema-panel { height: 100svh; }
  .floema-content { margin-left: clamp(50px, 15vw, 100px); padding: 0 clamp(16px, 4vw, 24px); }

  .engine-section { grid-template-columns: 1fr; }
  .engine-stage { position: relative; height: 80svh; }

  .supervision-grid { grid-template-columns: 1fr; }
  .supervision-visual { position: relative; }

  .journey-sticky { grid-template-columns: 1fr 1fr; gap: 35px; }

  .integration-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 520px; }
  .price-card h3 { margin-top: 75px; }
}

@media (max-width: 720px) {
  :root { --pad: 16px; }
  body { font-size: 15px; }
  .scroll-rail { display: none; }
  .section-pad { padding-top: 95px; padding-bottom: 95px; }
  .site-header { top: 8px; }
  .sound-toggle { display: none; }

  .hero-copy { min-height: 90svh; }
  .hero-title { margin: 12vh 0 24px; font-size: clamp(52px, 15vw, 74px); }
  .hero-lede { font-size: 16px; }
  .hero-buttons { align-items: flex-start; flex-direction: column; }
  .hero-foot span:last-child { display: none; }
  .hero-media { min-height: 68svh; }
  .live-card { left: 12px; right: 12px; top: 16px; }
  .voice-capsule { left: 12px; right: 12px; bottom: 45px; width: auto; }

  .capability-rail { padding: 0; }
  .capability-item { min-height: 120px; padding: 16px; }

  .box-subtitle {
    white-space: normal;
    font-size: 14px;
    line-height: 1.45;
  }

  .showcase-kicker {
    font-size: 13px;
  }

  .problem-heading,
  .platform-heading,
  .integrations-heading,
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-heading {
    margin-top: 28px;
    margin-bottom: 48px;
    padding-inline: 0;
  }

  .problem-heading h2,
  .platform-heading h2,
  .pricing-heading h2 { font-size: clamp(45px, 13vw, 70px); }

  .problem-row {
    grid-template-columns: 36px 1fr;
    min-height: 0;
    padding: 20px;
  }

  .problem-row p { grid-column: 2; }

  .gap-phrase { font-size: 8.6vw; }
  .gap-media {
    width: calc(30vw + (50vw * var(--gap-progress)));
    height: calc(30vw + (50vw * var(--gap-progress)));
    max-width: none;
    max-height: none;
  }
  .gap-note {
    top: calc(50% + 19vw);
    width: 70vw;
    font-size: 13px;
  }

  .story-media { height: 120vw; }
  .story-card h3 { font-size: 34px; }

  .engine-copy { padding: 85px var(--pad) 50px; }
  .engine-copy > h2 { font-size: 53px; }
  .engine-stage { height: 82svh; }
  .engine-panel { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .engine-panel-top { margin-bottom: 25px; }
  .engine-log { display: none; }

  .supervision-lead { grid-template-columns: 1fr; gap: 45px; }
  .supervision-lead h2 { font-size: 53px; }
  .supervision-visual > img { min-height: 560px; }
  .supervisor-ui { left: 10px; right: 10px; }

  .integration-cards { grid-template-columns: 1fr; }
  .integration-card { min-height: 245px; }
  .integration-card h3 { margin-top: 68px; }

  .price-card { min-height: 510px; }
  .final-cta { min-height: 86svh; }
  .final-cta-copy h2 { font-size: 17vw; }

  .footer-top { grid-template-columns: 1fr; gap: 70px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 45px 20px; }
  .footer-wordmark { justify-content: flex-start; }
  .footer-wordmark img { width: 55px; height: 55px; }
  .footer-wordmark span { font-size: 24vw; }
  .footer-legal { flex-wrap: wrap; }

  .demo-modal[open] { grid-template-columns: 1fr; gap: 35px; overflow-y: auto; }
  .modal-copy h2 { margin-top: 42px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring { display: none; }
}

/* Focused polish pass: clearer integration hierarchy, stronger chrome, wider footer. */
.integrations-heading {
  margin-top: clamp(30px, 3vw, 46px);
  margin-bottom: clamp(38px, 4vw, 58px);
  max-width: 1180px;
}

.integrations-lede {
  max-width: 72ch;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -.01em;
  text-wrap: pretty;
}

.integrations-lede strong {
  color: #fff;
  font-weight: 750;
}

.site-footer {
  padding-inline: clamp(18px, 1.8vw, 30px);
}

.footer-top,
.footer-links,
.footer-legal {
  max-width: 1440px;
}

.footer-top {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
  gap: clamp(48px, 8vw, 150px);
}

.footer-top h2 {
  font-size: clamp(60px, 8.5vw, 140px);
  max-width: 18ch;
}

.footer-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 90px);
  padding-top: 38px;
}

.footer-links span {
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.footer-links a,
.footer-status strong,
.footer-status p {
  font-size: 13px;
}

.footer-status strong { font-weight: 650; }

.modal-copy h2 {
  font-size: clamp(54px, 6.3vw, 94px);
}

.modal-copy > p:last-child {
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
}

.modal-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.modal-contact span {
  width: 100%;
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.modal-contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(156,218,247,.45);
}

.demo-form label { font-size: 10px; }
.demo-form input,
.demo-form textarea { font-size: 17px; }

@media (max-width: 1050px) {
  .site-header { padding: 18px 22px; }
  .nav-brand { font-size: 23px; }
  .nav-brand img { width: 35px; height: 35px; }
}

@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 58px; }
  .footer-top h2 { font-size: clamp(58px, 17vw, 88px); }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 20px; }
  .modal-contact { gap: 8px 12px; }
}


/* ==========================================
   SONIA INTERACTIVE AI AGENT MODAL (VOICE & CHAT)
   ========================================== */
.sonia-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 999999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.sonia-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.sonia-modal-backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(4, 8, 20, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.sonia-modal-container {
  position: relative;
  z-index: 2;
  width: min(640px, 92vw);
  background: rgba(11, 18, 38, 0.96);
  border: 1px solid rgba(156, 218, 247, 0.45);
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.85), 0 0 60px rgba(156, 218, 247, 0.3);
  overflow: hidden;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sonia-modal-overlay.is-open .sonia-modal-container {
  transform: scale(1) translateY(0);
}

/* Unused old voice modal styles cleaned up */

.sonia-demo-card {
  position: relative;
  z-index: 2;
  width: min(440px, 90vw);
  background: rgba(8, 13, 26, 0.95);
  border: 1px solid rgba(156, 218, 247, 0.35);
  border-radius: 22px;
  padding: 34px 34px 28px 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(156, 218, 247, 0.25);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  text-align: left;
}
.sonia-modal-overlay.is-open .sonia-demo-card {
  transform: scale(1) translateY(0);
}

.sonia-card-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: transparent;
  border: none;
  color: #8c939b;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.sonia-card-close:hover {
  color: #ffffff;
}

.sonia-card-header {
  margin-bottom: 24px;
}
.sonia-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}
.sonia-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d1d5db;
  margin: 0;
}
.sonia-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  transition: background 0.3s, box-shadow 0.3s;
}
.sonia-status-dot.is-muted {
  background: #f87171;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.7);
}

/* Waveform Bars (Highlight Blue #9cdaf7) */
.sonia-card-bars {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  margin: 28px 0;
}
.sonia-card-bars i {
  width: 5.5px;
  height: 16px;
  background: #9cdaf7;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(156, 218, 247, 0.6);
  transition: height 0.15s ease;
}
.sonia-card-bars.is-active i {
  animation: soniaDemoWave 0.6s ease-in-out infinite alternate;
}
.sonia-card-bars.is-active i:nth-child(1) { animation-delay: -0.4s; }
.sonia-card-bars.is-active i:nth-child(2) { animation-delay: -0.1s; background: #9cdaf7; }
.sonia-card-bars.is-active i:nth-child(3) { animation-delay: -0.5s; }
.sonia-card-bars.is-active i:nth-child(4) { animation-delay: -0.2s; background: #9cdaf7; }
.sonia-card-bars.is-active i:nth-child(5) { animation-delay: -0.3s; }

@keyframes soniaDemoWave {
  0% { height: 14px; }
  100% { height: 44px; }
}

.sonia-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #8c939b;
  margin: 0 0 28px 0;
  max-width: 95%;
}

.sonia-card-footer {
  display: flex;
  justify-content: flex-start;
}
.sonia-mute-btn {
  background: rgba(156, 218, 247, 0.15);
  border: 1px solid rgba(156, 218, 247, 0.4);
  border-radius: 999px;
  padding: 10px 22px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sonia-mute-btn:hover {
  background: #9cdaf7;
  border-color: #9cdaf7;
  color: #080d1a;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(156, 218, 247, 0.45);
}
.sonia-mute-btn.is-muted {
  background: rgba(248, 113, 113, 0.15);
  border-color: rgba(248, 113, 113, 0.4);
  color: #f87171;
  box-shadow: none;
}

/* Monolog-inspired header proportions and split CTA */
.site-header {
  padding: 24px clamp(24px, 3vw, 48px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-size: 29px;
  letter-spacing: .025em;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  gap: clamp(24px, 2.7vw, 38px);
}

.desktop-nav a {
  padding: 8px 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.header-actions {
  gap: 14px;
}

.sound-toggle,
.menu-toggle {
  width: 44px;
  height: 44px;
}

.header-actions .split-button {
  min-height: 42px;
  padding: 4px 4px 4px 10px;
  color: var(--ink);
  background: #e8e8e3;
  border: 1px solid rgba(11, 11, 10, .08);
  border-radius: 3px;
  box-shadow: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.header-actions .split-button span {
  padding: 0 15px 0 7px;
}

.header-actions .split-button i {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 2px;
  color: var(--white);
  background: var(--ink);
  font-size: 18px;
}

.header-actions .split-button:hover {
  color: var(--ink);
  background: var(--acid);
}

.header-actions .split-button:hover i {
  color: var(--white);
  background: var(--ink);
}

@media (max-width: 1050px) {
  .site-header { padding: 20px 22px; }
  .nav-brand { font-size: 25px; }
  .nav-brand img { width: 38px; height: 38px; }
}

/* Clear section hierarchy and a more intentional closing signature */
.section-display-title {
  display: inline-block;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(25px, 2.35vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.features-aside .section-display-title {
  font-size: clamp(25px, 2.35vw, 40px);
  letter-spacing: -.035em;
}

.features-aside .section-intro {
  max-width: 30ch;
  margin-top: 34px;
  font-size: clamp(17px, 1.25vw, 21px);
}

.section-kicker {
  align-items: baseline;
  justify-content: flex-start;
  padding-bottom: 22px;
  text-align: left;
}

.showcase-header {
  text-align: left;
  padding-inline: clamp(28px, 6vw, 90px);
}

.showcase-header .section-display-title {
  margin-bottom: 24px;
}

.showcase-huge-title {
  margin-left: 0;
}

.mini-strip-header {
  justify-content: flex-start;
  max-width: 1440px;
  margin-inline: auto;
  padding-bottom: 22px;
  text-align: left;
}

.mini-strip-header .section-display-title {
  font-size: clamp(25px, 2.35vw, 40px);
}

.integrations-heading p.integrations-lede {
  max-width: 40ch;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(24px, 2.45vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.integrations-lede strong {
  color: #fff;
  font-weight: 750;
}

.footer-links span {
  font-size: 11px;
}

.footer-links a {
  font-size: 17px;
  line-height: 1.25;
}

.footer-status strong {
  font-size: 16px;
}

.footer-status p {
  font-size: 15px;
}

.modal-contact {
  font-size: 16px;
}

.footer-close {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 24px clamp(30px, 8vw, 140px);
  padding: clamp(54px, 7vw, 100px) 0 42px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.footer-close-label,
.footer-close-note {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.footer-close-label {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.footer-close p {
  grid-column: 1;
  grid-row: 1 / span 2;
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 82px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.055em;
}

.footer-close-note {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  color: var(--acid);
}

@media (max-width: 720px) {
  .section-display-title,
  .features-aside .section-display-title,
  .mini-strip-header .section-display-title {
    font-size: 28px;
  }

  .section-kicker,
  .showcase-header,
  .mini-strip-header {
    text-align: left;
  }

  .integrations-lede {
    max-width: 24ch;
    font-size: clamp(23px, 7vw, 32px);
  }

  .footer-close {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
  }

  .footer-close-label,
  .footer-close-note,
  .footer-close p {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-close p { max-width: 12ch; }
}

/* Hero signature and Sonia demo emphasis */
.box-profile-signature {
  right: 0;
  top: 90%;
  font-family: 'Mrs Saint Delafield', 'Brush Script MT', cursive;
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 300;
  letter-spacing: .18em;
  color: var(--acid);
  transform: rotate(-8deg);
  opacity: 1;
}

.box-profile.sonia-trigger-btn {
  gap: 24px;
  padding: 12px 28px 12px 12px;
}

.sonia-waves-badge {
  width: 68px;
  height: 68px;
}

.sonia-bars {
  gap: 3px;
  height: 28px;
}

.sonia-bars i {
  width: 3px;
}

.sonia-bars i:nth-child(2) { height: 20px; }
.sonia-bars i:nth-child(4) { height: 23px; }

.box-profile-info strong {
  font-size: 18px;
}

.box-profile-info small {
  font-size: 14px;
}

.sonia-live-dot {
  width: 7px;
  height: 7px;
}

.header-actions .sound-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(156, 218, 247, .45);
  border-radius: 999px;
  background: rgba(156, 218, 247, .08);
}

.header-actions .sound-bars {
  gap: 3px;
  height: 20px;
}

.header-actions .sound-bars i {
  width: 3px;
  height: 11px;
  background: var(--acid);
  box-shadow: 0 0 8px rgba(156, 218, 247, .6);
}

.header-actions .sound-bars i:nth-child(2) { height: 19px; }
.header-actions .sound-bars i:nth-child(3) { height: 14px; }

@media (max-width: 720px) {
  .box-profile.sonia-trigger-btn {
    gap: 14px;
    padding: 8px 19px 8px 8px;
  }

  .sonia-waves-badge {
    width: 52px;
    height: 52px;
  }

  .box-profile-info strong { font-size: 15px; }
  .box-profile-info small { font-size: 12px; }

  .header-actions .sound-toggle {
    width: 42px;
    height: 42px;
  }
}

/* Hero CTA: a glass capsule that belongs with Sonia */
.hero-demo-button {
  min-height: 48px;
  min-width: 190px;
  padding: 0 24px;
  color: var(--acid);
  background: transparent;
  border: 1px solid var(--acid);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(156, 218, 247, 0.1);
  transition: all 0.3s ease;
}

.hero-demo-button span {
  padding: 0;
  white-space: nowrap;
}

.hero-demo-button:hover {
  background: rgba(156, 218, 247, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(156, 218, 247, 0.5);
}

@media (max-width: 720px) {
  .hero-demo-button {
    min-height: 48px;
    min-width: 100%;
    font-size: 14px;
  }
}

/* Mobile navigation and opening transition */
.mobile-menu {
  background:
    radial-gradient(circle at 84% 12%, rgba(156, 218, 247, .2) 0%, transparent 30%),
    radial-gradient(circle at 12% 76%, rgba(11, 79, 232, .24) 0%, transparent 42%),
    linear-gradient(160deg, #1d355c 0%, #132442 55%, #0b111d 100%);
}

body.mobile-nav-open .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.mobile-menu-inner {
  padding: 118px 24px 28px;
}

.mobile-menu-inner > .eyebrow {
  margin: 0 0 24px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.mobile-menu a {
  padding: 17px 0;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .2);
}

.mobile-menu a span {
  display: none;
}

.mobile-menu .split-button {
  min-height: 56px;
  padding: 4px 4px 4px 18px;
  color: var(--ink);
  background: #e8e8e3;
  border: 1px solid rgba(11, 11, 10, .1);
  border-radius: 3px;
  font-size: 17px;
  font-weight: 650;
}

.mobile-menu .split-button span {
  padding: 0 16px 0 0;
}

.mobile-menu .split-button i {
  width: 42px;
  border: 0;
  border-radius: 2px;
  color: var(--white);
  background: var(--ink);
  font-size: 18px;
}

/* Removed duplicate .hero-demo-button override */

.loader-panel-a {
  background:
    radial-gradient(circle at 65% 42%, rgba(27, 42, 68, .48) 0%, transparent 60%),
    linear-gradient(180deg, #020307 0%, #050a12 56%, #0c1524 100%);
}

.loader-panel-b {
  background:
    radial-gradient(circle at 78% 18%, rgba(156, 218, 247, .14) 0%, transparent 44%),
    linear-gradient(160deg, #1d355c 0%, #132442 55%, #0b1220 100%);
}

.loader-word {
  color: #fff;
  mix-blend-mode: normal;
  text-shadow: 0 0 32px rgba(156, 218, 247, .2);
}

.loader-word span:last-child,
.loader-count {
  color: var(--acid);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}
.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--acid, #9cdaf7);
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-btn svg {
  transition: transform 0.3s ease;
  color: var(--acid, #9cdaf7);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}
.lang-dropdown a {
  color: var(--acid, #9cdaf7);
  opacity: 0.5;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.lang-dropdown a:hover,
.lang-dropdown a.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
