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

:root {
  --font: 'Inter', sans-serif;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font);
  background: #ffffff;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLL SNAP CONTAINER ────────────────────────────────── */
.snap-wrap {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  /* hide scrollbar — keeps Apple-clean aesthetic */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.snap-wrap::-webkit-scrollbar {
  display: none;
}

/* ── HERO ─────────────────────────────────────────────────── */
.bnb__logo {
  height: 26px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.bnb__divider {
  width: 1px;
  height: 22px;
  background: rgba(0,0,0,0.12);
  margin: 0 10px 0 12px;
  flex-shrink: 0;
}
.bnb--dark .bnb__divider {
  background: rgba(255,255,255,0.15);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #130F1E;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 75%, transparent 100%);
}

.hero__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 40px 120px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}

/* ── LEFT ─────────────────────────────────────────────────── */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 6px 14px;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  cursor: default;
  transition: background 0.2s;
}
.hero__badge:hover { background: rgba(255,255,255,0.1); }

.badge-star {
  width: 13px;
  height: 13px;
  color: #F0B898;
}

.hero__title {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
}

.hero__title-gradient {
  background: linear-gradient(160deg, #ffffff 0%, #D0D8FA 55%, #A4B4F8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
}

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

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.hero__cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero__cta--primary {
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(158,176,240,0.4);
}
.hero__cta--primary:hover {
  background: linear-gradient(135deg, #7A96E8 0%, #A890DC 100%);
  box-shadow: 0 6px 24px rgba(158,176,240,0.55);
  transform: scale(1.02);
}
.hero__cta--primary:active { transform: scale(0.98); }

.hero__cta--ghost {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}
.hero__cta--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
}

/* ── RIGHT ────────────────────────────────────────────────── */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
  min-width: 0;
  width: 100%;
}

/* ── GLASS CARD ───────────────────────────────────────────── */
.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  width: 100%;
  box-sizing: border-box;
}

.glass-card__glow {
  position: absolute;
  top: -64px;
  right: -64px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  filter: blur(48px);
  pointer-events: none;
}

.glass-card__body { position: relative; z-index: 1; }

.gc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.gc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.gc-icon svg { width: 22px; height: 22px; }

.gc-big-num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.gc-big-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

.gc-progress-wrap { margin-bottom: 20px; }
.gc-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.45);
}
.gc-progress-row span:last-child { color: #fff; font-weight: 500; }

.gc-track {
  position: relative;
  height: 28px;
  cursor: ew-resize;
  overflow: visible;
}
.gc-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  pointer-events: none;
}
.gc-track::after {
  content: '';
  position: absolute;
  top: 50%;
  left: var(--thumb, 72%);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25), 0 2px 6px rgba(0,0,0,0.35);
  pointer-events: none;
  transition: transform 0.1s ease;
}
.gc-track:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}
.gc-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 8px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.35);
  border-radius: 100px;
  pointer-events: none;
}

.gc-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 18px;
}

.gc-stats {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0;
  text-align: center;
}
.gc-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: default;
  transition: transform 0.2s;
  padding: 0 8px;
}
.gc-stat:hover { transform: translateY(-2px); }
.gc-stat-val {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.gc-stat-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
}
.gc-sep { background: rgba(255,255,255,0.1); }

.gc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.gc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.crown {
  width: 12px;
  height: 12px;
  color: #EC9E80;
}

/* Status badge (top-right of card header) */
.gc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Environment slider rows */
.gc-slider-row { margin-bottom: 10px; }
.gc-slider-row:last-child { margin-bottom: 0; }
.gc-slider-row .gc-progress-row { margin-bottom: 6px; }

.gc-slider-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.gc-slider-label svg { width: 13px; height: 13px; opacity: 0.65; }

/* Colored fill variants */
.gc-fill--sound      { background: linear-gradient(90deg, #BCC8F8, #7A96E8); }
.gc-fill--light-beam { background: linear-gradient(90deg, #F8C8A8, #F0A888); }
.gc-fill--aroma      { background: linear-gradient(90deg, #D4C0F4, #9880D4); }

/* Hero overrides — all fills white */
.hero .gc-fill--sound,
.hero .gc-fill--light-beam,
.hero .gc-fill--aroma { background: rgba(255,255,255,0.9); }

/* Device status pill dots */
.gc-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gc-pill--online  .gc-pill-dot { background: #C0AAEC; }
.gc-pill--offline .gc-pill-dot { background: #706E88; }
.gc-pill--disc    .gc-pill-dot { background: #F0B898; }
.gc-pill--alert   .gc-pill-dot { background: #E890C0; }

/* Ping animation */
.ping {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}
.ping__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(192,170,236,0.7);
  animation: ping 1.5s ease-out infinite;
}
.ping__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C0AAEC;
}

/* ── MARQUEE CARD ─────────────────────────────────────────── */
.marquee-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 0;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  width: 100%;
  box-sizing: border-box;
}

.marquee-card__lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  padding: 0 28px;
  margin-bottom: 20px;
}

.marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-inner {
  display: flex;
  gap: 45px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding: 0 16px;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  cursor: default;
  transition: opacity 0.2s, transform 0.2s;
  filter: grayscale(1);
}
.mq-item:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0);
}
.mq-item--sm img { transform: scale(0.85); }

.mq-item img {
  height: 96px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: invert(1);
  clip-path: inset(30% 0);
  margin: -29px 0;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes ping {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim {
  opacity: 0;
  animation: fadeSlideIn 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__right { margin-top: 0; }
}

@media (max-width: 640px) {
  .hero__wrap { padding: 88px 20px 60px; }
  .hero__title { font-size: 44px; }
  .hero__ctas { flex-direction: column; }
  .hero__cta { justify-content: center; }
  .glass-card { padding: 24px; }
}

/* ── HERO LIGHT VARIANT ───────────────────────────────────── */
.hero--light {
  background: #F8F6FF;
  position: relative;
}

.hero--light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
  z-index: 2;
}

.hero--light .hero__wrap {
  padding-left: 24px;
  padding-right: 24px;
}

.hero--light .hero__grid {
  grid-template-columns: minmax(0, 560px) minmax(0, 420px);
  justify-content: space-between;
  gap: 40px;
}

.hero--light .hero__bg {
  background-image: url('background2.avif');
  opacity: 0.55;
}

/* Text colors */
.hero--light .hero__title {
  color: #130F1E;
  font-weight: 600;
}

.hero--light .hero__title-gradient {
  background: linear-gradient(160deg, #130F1E 0%, #D0D8FA 55%, #A4B4F8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero--light .hero__desc {
  color: rgba(0,0,0,0.55);
}

/* Badge */
.hero--light .hero__badge {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.7);
}
.hero--light .hero__badge:hover {
  background: rgba(0,0,0,0.09);
}

/* CTAs */
.hero--light .hero__cta--primary {
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(158,176,240,0.35);
}
.hero--light .hero__cta--primary:hover {
  background: linear-gradient(135deg, #7A96E8 0%, #A890DC 100%);
  box-shadow: 0 6px 24px rgba(158,176,240,0.45);
}
.hero--light .hero__cta--ghost {
  border-color: rgba(158,176,240,0.35);
  background: rgba(158,176,240,0.07);
  color: #6070D8;
}
.hero--light .hero__cta--ghost:hover {
  background: rgba(158,176,240,0.14);
  border-color: rgba(158,176,240,0.55);
}

/* Glass cards */
.hero--light .glass-card,
.hero--light .marquee-card {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.hero--light .glass-card__glow {
  background: rgba(0,0,0,0.03);
}

.hero--light .gc-big-num,
.hero--light .gc-stat-val {
  color: #130F1E;
}

.hero--light .gc-big-label,
.hero--light .gc-stat-lbl,
.hero--light .gc-progress-row span:first-child,
.hero--light .marquee-card__lbl {
  color: rgba(0,0,0,0.45);
}

.hero--light .gc-progress-row span:last-child {
  color: #130F1E;
}

.hero--light .gc-track::before {
  background: rgba(0,0,0,0.1);
}
.hero--light .gc-track::after {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.2);
}

.hero--light .gc-fill {
  background: rgba(255,255,255,0.35);
}

.hero--light .gc-divider,
.hero--light .gc-sep {
  background: rgba(0,0,0,0.1);
}

.hero--light .gc-icon {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.12);
  color: #130F1E;
}

.hero--light .gc-pill {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.65);
}


.hero--light .gc-status-badge { color: rgba(0,0,0,0.4); }

/* Device status pills — light mode */
.hero--light .gc-pill--online  { border-color: rgba(192,170,236,0.35);  background: rgba(192,170,236,0.12);   color: rgba(0,0,0,0.65); }
.hero--light .gc-pill--offline { border-color: rgba(0,0,0,0.12);       background: rgba(0,0,0,0.04);       color: rgba(0,0,0,0.45); }
.hero--light .gc-pill--disc    { border-color: rgba(240,184,152,0.35);  background: rgba(240,184,152,0.12);   color: rgba(0,0,0,0.65); }
.hero--light .gc-pill--alert   { border-color: rgba(232,144,192,0.35); background: rgba(232,144,192,0.12);  color: rgba(0,0,0,0.65); }

/* Marquee items */
.hero--light .mq-item img {
  filter: invert(0);
  opacity: 0.6;
}

.hero--light .marquee-track {
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* ── HERO SCROLL ZONE ─────────────────────────────────────── */
.hero-scroll-zone {
  position: relative;
  height: 350vh;
}

/* ── HERO EDITORIAL VARIANT ───────────────────────────────── */
.hero--editorial {
  position: sticky;
  top: 0;
  z-index: 2;
  align-items: stretch;
}
.hero--editorial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10%;
  background: linear-gradient(to bottom, transparent, #F8F6FF);
  pointer-events: none;
  z-index: 3;
}
.hero--editorial .hero__wrap {
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 0;
  max-width: 100%;
  padding-left: 56px;
  padding-right: 56px;
  height: 100%;
}
.hero--editorial .hero__editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  width: 100%;
}
.hero--editorial .hero__editorial-left {
  display: flex;
  align-items: flex-end;
}
.hero--editorial .hero__editorial-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 8px;
  align-items: flex-end;
  text-align: right;
}

/* Mobile-only play button — hidden on desktop */
.hero__play-mobile { display: none; }

.hero__desc--lg {
  font-size: 19px;
  max-width: 480px;
  line-height: 1.65;
}

/* ── SWITCH ZONE ──────────────────────────────────────────── */
.switch-zone {
  position: relative;
  height: 160vh;
  margin-top: -125vh;
}
.switch-zone__gate {
  height: 60vh;
}

/* ── SWITCH SLIDES ────────────────────────────────────────── */
.switch-sec__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}
.switch-sec__slide--2 {
  transform: translateY(60px);
  opacity: 0;
  pointer-events: none;
}
.switch-sec__slide--2.is-active {
  pointer-events: auto;
}

/* ── SW CARDS ─────────────────────────────────────────────── */
.sw-cards {
  display: flex;
  gap: 16px;
  padding: 0 140px;
  align-items: stretch;
  height: 68vh;
  max-height: 520px;
  width: 100%;
  box-sizing: border-box;
}
.sw-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sw-card img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  filter: none;
  will-change: transform;
}
.sw-card:hover img { filter: none; }
.sw-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px 20px;
}
.sw-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.sw-card__desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-top: auto;
  padding-top: 12px;
}
.sw-card__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.sw-card__link {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.sw-card__link:hover { color: #ffffff; }

/* ── SWITCH SECTION ───────────────────────────────────────── */
.switch-sec {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* OFF state by default */
  background: #F8F6FF;
  transition: background 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch-sec--on {
  background: radial-gradient(ellipse at 60% 40%, #C0AAEC 0%, #9EB0F0 30%, #7A8FD8 60%, #2E2A4A 100%);
}

.switch-sec__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.switch-sec__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: border-color 0.85s ease;
}
.switch-sec--on .switch-sec__ring { border-color: rgba(255,255,255,0.1); }
.switch-sec__ring--1 { width: 55vw;  height: 55vw; }
.switch-sec__ring--2 { width: 80vw;  height: 80vw; }
.switch-sec__ring--3 { width: 108vw; height: 108vw; }

.switch-sec__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 0 40px;
  max-width: 820px;
}

.switch-sec__toggle-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.switch-sec__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  transition: color 0.85s ease;
}
.switch-sec--on .switch-sec__label { color: rgba(255,255,255,0.55); }

.switch-sec__toggle {
  width: 48px;
  height: 28px;
  background: rgba(0,0,0,0.1);
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.12);
  position: relative;
  transition: background 0.85s ease, border-color 0.85s ease;
}
.switch-sec--on .switch-sec__toggle {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.3);
}
.switch-sec__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: left 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.45s ease;
}
.switch-sec--on .switch-sec__knob {
  left: calc(100% - 23px);
  background: #ffffff;
}

.switch-sec__title {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #0d0d0d;
  transition: color 0.85s ease;
}
.switch-sec--on .switch-sec__title { color: #ffffff; }

.switch-sec__sub {
  font-size: 15px;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
  transition: color 0.85s ease;
}
.switch-sec--on .switch-sec__sub { color: rgba(255,255,255,0.55); }

/* ── INTELLIGENT SPACES SECTION ──────────────────────────── */
/* ── PRODUCT BENTO SECTION ───────────────────────────────── */
.pbento {
  background: #F8F6FF;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.pbento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1100px;
  width: 100%;
  min-height: 600px;
}

.pbento__device {
  border-radius: 26px;
  overflow: hidden;
  background: #ede8f8;
}
.pbento__device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pbento__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pbento__card {
  flex: 1;
  border-radius: 26px;
  background: linear-gradient(145deg, #ede8f8 0%, #e2dbf5 45%, #d8d0f2 100%);
  padding: 48px 44px;
  display: flex;
  align-items: center;
}

.pbento__card-body {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.pbento__card-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 auto;
}

.pbento__title {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #130F1E;
}

.pbento__sub {
  flex: 1;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.7;
  color: rgba(19,15,30,0.55);
  border-left: 1px solid rgba(19,15,30,0.15);
  padding-left: 28px;
}

.pbento__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 88, 200, 0.82);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
}
.pbento__cta svg { width: 14px; height: 14px; }
.pbento__cta:hover { background: rgba(110, 88, 200, 1); }

.pbento__room {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
}
.pbento__room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── AMBIENT MODULATION SECTION ──────────────────────────── */
.ambient-zone {
  position: relative;
  height: 184vh;
}
.ambient-sec {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  background: #F8F6FF;
  overflow: hidden;
  z-index: 2;
}

.ambient-sec__bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  pointer-events: none;
  user-select: none;
}
.ambient-sec__bg span {
  display: block;
  font-size: clamp(50px, 13vw, 190px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #0a0a1e;
  opacity: 0.05;
  text-transform: uppercase;
}
.ambient-sec__bg--dark span {
  color: #1a1535;
  opacity: 0.26;
  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black calc(var(--p, 0%) - 8%),
    transparent calc(var(--p, 0%) + 8%),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    black 0%,
    black calc(var(--p, 0%) - 8%),
    transparent calc(var(--p, 0%) + 8%),
    transparent 100%
  );
}

.ambient-sec__stage {
  position: absolute;
  inset: 0;
}

/* ── Cards ── */
.ambient-card {
  position: absolute;
  width: 250px;
  background: rgba(14,11,32,0.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12);
  will-change: transform, opacity;
}
.ambient-card--1  { top: 26vh;  left: calc(34vw + 60px); }
.ambient-card--2  { top:  8vh;  left: calc(54vw + 60px); }
.ambient-card--3  { top: 70vh;  left: calc(16vw + 60px); }
.ambient-card--4  { top: 50vh;  left: calc(24vw + 160px); }
.ambient-card--5  { top: 32vh;  left: calc(64vw + 160px); }
.ambient-card--6  { top: 66vh;  left: calc(62vw + 60px); }
.ambient-card--7  { top: 48vh;  left: calc(44vw + 60px); }
.ambient-card--8  { top:  5vh;  left: calc(12vw + 260px); }
.ambient-card--9  { top: 48vh;  left: calc(60vw + 260px); }
.ambient-card--10 { top: 28vh;  left: calc(12vw + 60px); }
.ambient-card--11 { top: 66vh;  left: calc(44vw + 260px); }

.ambient-noise__value { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.ambient-noise__value span { font-size: 12px; font-weight: 500; opacity: 0.45; letter-spacing: 0; }
.ambient-noise__bars { display: flex; align-items: flex-end; gap: 4px; height: 28px; }
.ambient-noise__bars span { flex: 1; border-radius: 2px; background: rgba(255,255,255,0.1); transition: background-color 0.12s ease; }
.ambient-noise__bars span.on { background: #86efac; }

.ambient-circadian { width: 170px; padding: 14px; }
.ambient-circadian__toprow {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.ambient-circadian__name {
  font-size: 9px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
}
.ambient-circadian__dial { position: relative; }
.ambient-circadian__dial svg { width: 100%; height: auto; display: block; }
.ambient-circadian__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.ambient-circadian__clock {
  font-size: 20px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
}
.ambient-circadian__period {
  font-size: 9px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35); margin-top: 2px;
}

.ambient-bpm__value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.ambient-bpm__value span { font-size: 12px; font-weight: 500; opacity: 0.45; letter-spacing: 0; }
.ambient-bpm__ecg { width: 100%; height: 36px; overflow: visible; }

.ambient-o2__value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.ambient-o2__value span { font-size: 11px; font-weight: 500; opacity: 0.45; letter-spacing: 0; }
.ambient-o2__bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.ambient-o2__bar div {
  height: 100%;
  border-radius: 2px;
  background: #93c5fd;
  transition: width 0.1s ease;
}

.ambient-trend { width: 180px; padding: 14px; }
.ambient-trend__arrow {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.ambient-trend__chart { margin-bottom: 4px; }
.ambient-trend__chart svg { width: 100%; height: 50px; overflow: visible; }
.ambient-trend__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ambient-trend__value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ambient-trend__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #0d0d0d;
  background: #ffffff;
  border-radius: 100px;
  padding: 4px 10px 4px 8px;
}

.ambient-photo {
  width: 112px;
  padding: 0;
  background: rgba(120,90,200,0.18);
  border-color: rgba(139,92,246,0.25);
  overflow: hidden;
}
.ambient-photo__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ambient-photo__label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  background: rgba(15,15,25,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 9px;
  border-radius: 100px;
}

.ambient-photo__icon {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15,15,25,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ambient-ai {
  width: 92px;
  padding: 16px 12px 12px;
  background: linear-gradient(145deg, #7c3aed, #5b21b6);
  border-color: rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}
.ambient-ai__circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ambient-ai__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.ambient-ai__dots {
  display: flex;
  gap: 4px;
}
.ambient-ai__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.ambient-ai__dots span.on { background: rgba(255,255,255,0.85); }

.ambient-stat { width: 130px; padding: 14px; text-align: center; }
.ambient-stat__arrow { text-align: left; margin-bottom: 8px; }
.ambient-stat__ring {
  position: relative;
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
}
.ambient-stat__ring svg { width: 100%; height: 100%; }
.ambient-stat__check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ambient-stat__value {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ambient-stat__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}
.ambient-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ambient-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.ambient-card__badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 3px 9px;
}
.ambient-card__badge--on { color: #86efac; background: rgba(134,239,172,0.13); }
.ambient-card__badge--ok { color: #93c5fd; background: rgba(147,197,253,0.13); }
.ambient-card__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

/* Lighting widget */
.ambient-lux__dots {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.ambient-lux__dots span {
  width: 20px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
}
.ambient-lux__dots span.on { background: #fbbf24; }
.ambient-lux__bar {
  position: relative;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #c97b30, #ffe59e, #93c5fd);
  margin-bottom: 10px;
}
.ambient-lux__handle {
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  transition: left 0.1s ease;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,220,100,0.7);
}
.ambient-lux__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.32);
}

/* Acoustic widget */
.ambient-wave__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-bottom: 10px;
}
.ambient-wave__bars span {
  flex: 1;
  border-radius: 2px;
  background: #a78bfa;
  opacity: 0.7;
  transition: height 0.08s ease;
}
.ambient-wave__bars span:nth-child(4),
.ambient-wave__bars span:nth-child(6),
.ambient-wave__bars span:nth-child(8) { opacity: 1; }
.ambient-wave__modes {
  display: flex;
  gap: 7px;
}
.ambient-wave__modes span {
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.38);
  cursor: default;
}
.ambient-wave__modes span.active {
  background: #a78bfa;
  border-color: #a78bfa;
  color: #fff;
}

/* Climate widget */
.ambient-climate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ambient-climate__item {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px;
}
.ambient-climate__val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 3px;
}
.ambient-climate__val sup {
  font-size: 11px;
  vertical-align: super;
}
.ambient-climate__lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 8px;
}
.ambient-climate__bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.ambient-climate__bar div {
  height: 100%;
  border-radius: 2px;
  background: #93c5fd;
  transition: width 0.1s ease;
}

/* ── SHOWCASE SECTION (sc__) ──────────────────────────────── */
.sc {
  background: #ffffff;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  position: relative;
}
.sc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #F8F6FF);
  pointer-events: none;
}

.sc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  height: 620px;
}

.sc__stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Reveal animation */
.sc-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sc-reveal.sc-visible {
  opacity: 1;
  transform: translateY(0);
}
.sc-reveal--delay-1 { transition-delay: 0.15s; }
.sc-reveal--delay-2 { transition-delay: 0.3s; }

.rev-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.rev-reveal.rev-visible {
  opacity: 1;
  transform: translateY(0);
}
.rev-reveal--d0 { transition-delay: 0s; }
.rev-reveal--d1 { transition-delay: 0.1s; }
.rev-reveal--d2 { transition-delay: 0.18s; }
.rev-reveal--d3 { transition-delay: 0.28s; }
.rev-reveal--d4 { transition-delay: 0.38s; }

/* Base card */
.sc__card {
  border-radius: 24px;
  overflow: hidden;
  background: #c8cbcf;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sc__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.13);
}
.sc__card:hover img {
  transform: scale(1.03);
  filter: brightness(1.1) saturate(80%);
}
.sc__card img {
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(1.1) saturate(80%);
}

/* Large left card */
.sc__card--large {
  height: 100%;
}
.sc__card--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Top right: text + blob */
.sc__card--text {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 36px 36px 36px 40px;
  overflow: hidden;
  background: #F8F6FF;
}

.sc__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  max-width: 260px;
}

.sc__heading {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #130F1E;
}

.sc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(158,176,240,0.35);
}
.sc__btn:hover {
  background: linear-gradient(135deg, #7A96E8 0%, #A890DC 100%);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(158,176,240,0.45);
}
.sc__btn span { font-size: 15px; }

/* Background image inside text card */
.sc__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(1.1) saturate(80%);
  transition: filter 0.4s ease;
}
.sc__card:hover .sc__card-bg {
  filter: brightness(1.1) saturate(80%);
}

/* Gradient overlay so text stays readable */
.sc__card--text::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.sc__card--text .sc__text {
  z-index: 2;
  position: relative;
}


/* Bottom right: image */
.sc__card--img {
  flex: 1;
}
.sc__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .sc__grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .sc__card--large { height: 400px; }
  .sc__stack { flex-direction: row; }
  .sc__card--text,
  .sc__card--img { flex: 1; min-height: 280px; }
}
@media (max-width: 600px) {
  .sc { padding: 32px 20px 60px; }
  .sc__stack { flex-direction: column; }
  .sc__card--text { min-height: 240px; }
}

/* ── FEATURES SECTION ────────────────────────────────────── */
.feat {
  background: #0B0917;
  padding: 100px 40px 120px;
}

.feat__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.feat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feat-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.feat-reveal.feat-visible {
  opacity: 1;
  transform: translateY(0);
}

.feat__card {
  background: linear-gradient(160deg, #141220 0%, #0F0D1A 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 36px;
  overflow: hidden;
}

.feat__card--wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
}

.feat__text {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feat__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.18);
}

.feat__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #ffffff;
}

.feat__desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.36);
}

.feat__visual {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SIM MOCKUP ───────────────────────────────────────────── */
.sim {
  width: 100%;
  max-width: 340px;
  background: #0D0B1A;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07) inset,
    0 28px 64px rgba(0,0,0,0.8);
}

.sim::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 160px;
  background: radial-gradient(ellipse at center, rgba(180,144,230,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.sim__body {
  position: relative;
  z-index: 1;
  padding: 20px 20px 22px;
}

.sim__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sim__back {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  cursor: default;
}

.sim__back-icon {
  width: 13px;
  height: 13px;
}

.sim__active-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(192,170,236,0.12);
  border: 1px solid rgba(192,170,236,0.22);
  border-radius: 100px;
  padding: 3px 9px 3px 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #C0AAEC;
}

.sim__pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C0AAEC;
  display: inline-block;
  animation: sim-pulse 2s ease-in-out infinite;
}

@keyframes sim-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.sim__session {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  margin-bottom: 18px;
}

.sim__session-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(180,144,230,0.18);
  border: 1px solid rgba(180,144,230,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #C0A8EC;
}
.sim__session-icon svg { width: 16px; height: 16px; }

.sim__session-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.88);
}

.sim__session-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.26);
  margin-top: 2px;
}

.sim__timer-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 13px;
  padding-left: 2px;
}

.sim__time {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.sim__time-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

.sim__prog-wrap {
  margin-bottom: 16px;
}

.sim__prog-track {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 7px;
}

.sim__prog-fill {
  height: 100%;
  width: 81.7%;
  background: linear-gradient(90deg, #F0A888 0%, #F8C8A8 100%);
  border-radius: 100px;
}

.sim__prog-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
}

.sim__sep {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 13px;
}

.sim__stimuli-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-bottom: 10px;
}

.sim__stim-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sim__stim {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sim__stim-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sim__stim-icon svg { width: 13px; height: 13px; }

.sim__stim-icon--warm  { background: rgba(240,168,136,0.15); color: #F0A888; border: 1px solid rgba(240,168,136,0.22); }
.sim__stim-icon--sound { background: rgba(158,176,240,0.15); color: #9EB0F0; border: 1px solid rgba(158,176,240,0.22); }
.sim__stim-icon--aroma { background: rgba(212,164,232,0.15); color: #D4A4E8; border: 1px solid rgba(212,164,232,0.22); }

.sim__stim-body {
  flex: 1;
  min-width: 0;
}

.sim__stim-name {
  font-size: 11px;
  color: rgba(255,255,255,0.46);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.sim__stim-track {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.sim__stim-bar {
  height: 100%;
  border-radius: 100px;
}

.sim__stim-bar--warm  { background: linear-gradient(90deg, #F0A888, #F8C8A8); }
.sim__stim-bar--sound { background: linear-gradient(90deg, #9EB0F0, #B8C4F8); }
.sim__stim-bar--aroma { background: linear-gradient(90deg, #D4A4E8, #EED8F8); }

.sim__stim-val {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
  min-width: 34px;
  text-align: right;
}

/* ── PILLARS SECTION (pil__) ──────────────────────────────── */
.pil {
  background: #0B0917;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}

.pil__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.pil__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 48px;
}

.pil__header-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pil__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

.pil__heading {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #ffffff;
  max-width: 500px;
}

.pil__intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.36);
  text-align: right;
  align-self: end;
  width: 100%;
}

.pil__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pil__card {
  background: linear-gradient(160deg, #131020 0%, #0E0C18 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.pil__card-text {
  padding: 28px 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.pil__card-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #ffffff;
}

.pil__card-desc {
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255,255,255,0.35);
}

.pil__card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.pil__card-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Reveal */
.pil-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pil-reveal.pil-visible {
  opacity: 1;
  transform: translateY(0);
}
.pil-reveal--delay-1 { transition-delay: 0.13s; }
.pil-reveal--delay-2 { transition-delay: 0.26s; }

/* ── PRESS STRIP ─────────────────────────────────────────── */
.press-strip {
  width: 100%;
  padding: 32px 0 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
}

.press-strip__label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.press-strip__track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.press-strip__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: press-scroll 22s linear infinite;
}
.press-strip__track:hover .press-strip__inner { animation-play-state: paused; }

.press-strip__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.press-strip__item:hover { opacity: 1; }

.press-strip__item img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.85);
}

/* ── TEAM SECTION ─────────────────────────────────────────── */
.team {
  min-height: 100vh;
  background: #F8F6FF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52px;
  padding: 64px 40px;
  overflow: visible;
}

.team__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.team__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.team__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9EB0F0;
  display: inline-block;
}

.team__heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #130F1E;
}

.team__sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,0.42);
  max-width: 480px;
}

/* Cards row */
.team__carousel {
  overflow: hidden;
  cursor: grab;
  padding: 20px 0;
  margin: -20px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%);
}
.team__carousel.is-dragging { cursor: grabbing; }

.team__stage {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  will-change: transform;
}

.team__card {
  position: relative;
  width: 207px;
  height: 346px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}

/* Photo placeholder — replace background with img tag */
.team__photo {
  position: absolute;
  inset: 0;
  background: #c8cbcf;
  overflow: hidden;
}
.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.team__card:hover .team__photo::after {
  background: rgba(255,255,255,0.22);
}

/* Bottom gradient + info bar */
.team__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.team__info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.team__name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team__role {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team__li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}
.team__li:hover { background: rgba(255,255,255,0.28); }
.team__li svg { width: 13px; height: 13px; }

/* ── TEAM SUPPORT GRID ───────────────────────────────────── */
.team__support {
  padding: 8px 0 12px;
  border-top: 1px solid transparent;
  margin-top: 12px;
}
.team__support-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  text-align: center;
  margin-bottom: 8px;
}
.team__support-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.team__support-grid .team__support-item {
  width: 20%;
}
.team__support-grid .team__support-item:nth-child(n+6) {
  width: 25%;
}
.team__support-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 4px 8px;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}
.team__support-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}
.team__support-item img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* ── REVIEWS SECTION (rev__) ──────────────────────────────── */
.rev {
  height: auto;
  background: #F8F6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px 0;
}

.rev__wrap {
  width: 100%;
  max-width: 1100px;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rev__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 40px;
}

.rev__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.rev__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9EB0F0;
  display: inline-block;
}

.rev__heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #130F1E;
}

.rev__sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,0.42);
  max-width: 520px;
}

/* Tabs */
.rev__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.rev__tab {
  position: relative;
  background: none;
  border: none;
  padding: 0 36px 16px;
  font-family: inherit;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(19,15,30,0.22);
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  outline: none;
}
.rev__tab:hover { color: rgba(19,15,30,0.55); }
.rev__tab.is-active { color: #9EB0F0; }

.rev__tab-bar {
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: #9EB0F0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.rev__tab.is-active .rev__tab-bar { transform: scaleX(1); }

.rev__tabs-sep {
  width: 1px;
  height: 24px;
  background: rgba(19,15,30,0.15);
  flex-shrink: 0;
}

/* Panels */
.rev__panel--hidden { display: none; }

@keyframes rev-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rev__panel { animation: rev-panel-in 0.4s cubic-bezier(0.22,1,0.36,1) both; }

.rev__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* Media grid */
.rev__media-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 8px 0;
  max-width: 860px;
  margin: 0 auto;
}
.rev__media-item {
  width: calc(100% / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 4px 8px;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}
.rev__media-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}
.rev__media-item img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.rev__partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 8px 0;
  max-width: 860px;
  margin: 0 auto;
}
.rev__partner-item {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}
.rev__partner-item:nth-child(n+6) { width: 25%; }
.rev__partner-item:hover { opacity: 1; filter: grayscale(0); transform: translateY(-2px); }
.rev__partner-item img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.rev__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rev__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.rev__quote {
  font-size: 14px;
  line-height: 1.7;
  color: #3D3A52;
  flex: 1;
}

.rev__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.rev__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.rev__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.rev__stars svg {
  width: 14px;
  height: 14px;
  fill: #F59E0B;
}

.rev__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.rev__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #130F1E;
}

.rev__role {
  font-size: 11.5px;
  color: rgba(0,0,0,0.42);
  margin-top: 1px;
}


/* ── BOTTOM NAV BAR (bnb) ─────────────────────────────────── */
@keyframes bnb-mount {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── TOP NAV BAR ────────────────────────────────────────────── */
.bnb {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  z-index: 1000;
  white-space: nowrap;
  animation: bnb-mount 0.5s ease-out 0.2s both;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Dark mode — over dark sections */
.bnb--dark {
  background: transparent;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.32);
}
.bnb--dark .bnb__logo {
  filter: invert(1);
}

.bnb__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(11,9,23,0.5);
  transition: background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}
.bnb__link:hover {
  background: rgba(0,0,0,0.05);
  color: #0B0917;
}
.bnb__link--active {
  background: rgba(158,176,240,0.15);
  color: #9EB0F0;
}

/* Dark mode links */
.bnb--dark .bnb__link {
  color: rgba(255,255,255,0.4);
}
.bnb--dark .bnb__link:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
.bnb--dark .bnb__link--active {
  background: rgba(158,176,240,0.18);
  color: #9EB0F0;
}

/* ── BENTO CAPABILITIES SECTION ───────────────────────────── */
.bento {
  background: #08081a;
  padding: 90px 5vw;
}
.bento__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.3fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}
.bento__h3 {
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
}
.bento__p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

/* Left column */
.bento__left { display: flex; flex-direction: column; }
.bento__ai-card {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.bento__ai-blob {
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, rgba(99,102,241,0.07) 55%, transparent 75%);
  pointer-events: none;
}
.bento__ai-hdr {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  position: relative;
  z-index: 1;
}
.bento__ai-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(99,102,241,0.35);
}
.bento__ai-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bento__ai-sub {
  font-size: 11px;
  color: rgba(26,26,46,0.42);
  line-height: 1.45;
  margin-top: 3px;
}
.bento__ai-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: space-around;
}
.bento__ai-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.bento__ai-row:last-child { border-bottom: none; }
.bento__ai-arr {
  font-size: 20px;
  font-weight: 800;
  width: 20px;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}
.bento__ai-arr--up   { color: #16a34a; }
.bento__ai-arr--down { color: #7c3aed; }
.bento__ai-arr--plus { color: #2563eb; }
.bento__ai-num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f0f1a;
  line-height: 1;
  min-width: 86px;
}
.bento__ai-lbl {
  font-size: 11px;
  color: rgba(15,15,26,0.36);
  line-height: 1.45;
}

/* Center column */
.bento__center { display: flex; flex-direction: column; gap: 20px; }
.bento__sel-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  background: #f5f4fc;
  border-radius: 22px;
  overflow: hidden;
}
.bento__sel-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bento__sel-ring--1 { width:  90px; height:  90px; border: 1.5px solid rgba(0,0,0,0.07); }
.bento__sel-ring--2 { width: 168px; height: 168px; border: 1.5px solid rgba(0,0,0,0.05); }
.bento__sel-ring--3 { width: 246px; height: 246px; border: 1.5px solid rgba(0,0,0,0.035); }
.bento__sel-node {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(0,0,0,0.4);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.bento__sel-node--top    { top: calc(50% - 150px); left: 50%; transform: translateX(-50%); }
.bento__sel-node--left   { top: 50%; left: calc(50% - 150px); transform: translateY(-50%); }
.bento__sel-node--right  { top: 50%; left: calc(50% + 96px); transform: translateY(-50%); }
.bento__sel-node--bottom { top: calc(50% + 96px); left: 50%; transform: translateX(-50%); }
.bento__sel-node--center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; }
.bento__sel-node--active {
  background: #6366f1;
  border-color: #6366f1;
  color: #fff;
  box-shadow: 0 0 26px rgba(99,102,241,0.4);
}

/* Right column */
.bento__right { display: flex; flex-direction: column; gap: 22px; }
.bento__rt {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bento__wave-wrap { position: relative; padding-bottom: 20px; }
.bento__wave-svg  { width: 100%; height: auto; display: block; }
.bento__patient-chip {
  position: absolute;
  bottom: 0; right: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.bento__patient-chip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.bento__rb {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bento__notif {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento__notif-head { display: flex; align-items: baseline; gap: 8px; }
.bento__notif-day  { font-size: 36px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; color: #fff; }
.bento__notif-weekday,
.bento__notif-month { display: block; font-size: 10px; color: rgba(255,255,255,0.28); line-height: 1.5; }
.bento__notif-name { font-size: 12px; font-weight: 600; color: #fff; }
.bento__notif-msg  { font-size: 11px; color: rgba(255,255,255,0.42); line-height: 1.5; padding-right: 30px; }
.bento__notif-footer { display: flex; gap: 6px; margin-top: 4px; }
.bento__notif-pill {
  font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.42);
}
.bento__notif-pill--go { background: rgba(134,239,172,0.13); color: #86efac; }
.bento__notif-ai {
  position: absolute; top: 16px; right: 16px;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  display: flex; align-items: center; justify-content: center;
}
.bento__rb-copy { flex-shrink: 0; width: 145px; }

/* ── PLATFORM / TRIFEAT SECTION ───────────────────────────── */
.trifeat {
  background: #F8F6FF;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  margin-top: -20vh;
  position: relative;
  z-index: 3;
}

.trifeat__wrap {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trifeat__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.trifeat__title {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #130F1E;
}

.trifeat__sub {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.45);
  text-align: right;
  flex-shrink: 0;
}

.trifeat__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.trifeat__card {
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 400px;
  opacity: 0;
  will-change: transform, opacity;
}

/* Dark featured card */
.trifeat__card--dark {
  background: transparent;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.trifeat__card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('capt/capt4.png') center/cover no-repeat;
  filter: brightness(1.2) saturate(80%);
  z-index: 0;
}
.trifeat__card--dark > * {
  position: relative;
  z-index: 1;
}
.trifeat__card--dark .trifeat__card-title { color: #130F1E; }
.trifeat__card--dark .trifeat__card-desc  { color: rgba(19,15,30,0.6); }

/* Glass sub-card */
.trifeat__glass {
  background: rgba(255,255,255,0.11);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.trifeat__glass-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trifeat__glass-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.trifeat__glass-icon svg { width: 18px; height: 18px; }
.trifeat__glass-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.trifeat__glass-name {
  font-size: 13px;
  font-weight: 600;
  color: #130F1E;
  letter-spacing: -0.01em;
}
.trifeat__glass-sub {
  font-size: 11px;
  color: rgba(19,15,30,0.55);
  margin-top: 2px;
}

.trifeat__glass-expand {
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.trifeat__glass-expand:hover { background: rgba(255,255,255,0.18); }
.trifeat__glass-expand svg { width: 13px; height: 13px; }

/* Light card */
.trifeat__card--light {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.trifeat__card-top { display: flex; flex-direction: column; gap: 10px; }
.trifeat__card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.trifeat__card-visual .trifeat__glass,
.trifeat__card-visual .trifeat__sliders,
.trifeat__card-visual .trifeat__chat { width: 100%; }

.trifeat__card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #130F1E;
}
.trifeat__card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0,0,0,0.44);
}

/* Metrics */
.trifeat__metrics {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.trifeat__metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
}
.trifeat__metric-sep { display: none; }
.trifeat__metric-arrow {
  font-size: 22px;
  font-weight: 600;
  color: rgba(19,15,30,0.8);
  min-width: 18px;
}
.trifeat__metric-val {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #130F1E;
  min-width: 55px;
  line-height: 1;
}
.trifeat__metric-lbl {
  font-size: 14px;
  color: rgba(19,15,30,0.55);
  line-height: 1.35;
}

/* Orbital */
.trifeat__orbital {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.trifeat__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.07);
  pointer-events: none;
}
.trifeat__ring--1 { width: 130px; height: 130px; }
.trifeat__ring--2 { width: 220px; height: 220px; }

@keyframes orbit-rotate {
  from { transform: rotate(var(--orbit-start)) translateX(110px) rotate(calc(var(--orbit-start) * -1)); }
  to   { transform: rotate(calc(var(--orbit-start) + 360deg)) translateX(110px) rotate(calc((var(--orbit-start) + 360deg) * -1)); }
}

@keyframes nc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(158,176,240,0.45),  0 8px 28px rgba(122,150,232,0.25); }
  60%  { box-shadow: 0 0 0 14px rgba(158,176,240,0),  0 8px 28px rgba(122,150,232,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(158,176,240,0),     0 8px 28px rgba(122,150,232,0.25); }
}

@keyframes ring-breathe {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}

.trifeat__orbit-center {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nc-pulse 2.4s ease-out infinite;
}

.trifeat__orbit-favicon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.trifeat__ring--1 { animation: ring-breathe 2.4s ease-in-out infinite; }
.trifeat__ring--2 { animation: ring-breathe 2.4s ease-in-out infinite 0.4s; }

.trifeat__orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -23px 0 0 -23px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #130F1E;
  z-index: 2;
  animation: orbit-rotate 28s linear infinite;
}
.trifeat__orbit-item svg { width: 18px; height: 18px; opacity: 0.75; }

.trifeat__orbit-item--top    { --orbit-start: -90deg; }
.trifeat__orbit-item--right  { --orbit-start:   0deg; }
.trifeat__orbit-item--bottom { --orbit-start:  90deg; }
.trifeat__orbit-item--left   { --orbit-start: 180deg; }

/* Sliders inside light trifeat card */
.trifeat__sliders {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trifeat__sliders .trifeat__tags {
  margin-bottom: 22px;
}
.trifeat__sliders .gc-slider-row { margin-bottom: 0 !important; }
.trifeat__sliders .gc-slider-row .gc-progress-row { margin-bottom: 4px; }
.trifeat__sliders .gc-track { height: 22px; }
.trifeat__card--light .gc-track::before       { background: rgba(0,0,0,0.1); height: 4px; }
.trifeat__card--light .gc-fill                 { background: linear-gradient(90deg, #9EB0F0 0%, #7A96E8 100%); height: 4px; }
.trifeat__card--light .gc-track::after         { background: #9EB0F0; box-shadow: 0 0 0 2px rgba(158,176,240,0.25), 0 2px 6px rgba(122,150,232,0.3); width: 11px; height: 11px; }
.trifeat__card--light .gc-progress-row         { color: rgba(0,0,0,0.45); }
.trifeat__card--light .gc-progress-row span:last-child { color: #130F1E; }

/* Tags */
.trifeat__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trifeat__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.6);
}
.trifeat__tag--blue,
.trifeat__tag--active {
  background: rgba(96,165,250,0.1);
  border-color: rgba(158,176,240,0.28);
  color: #5E74D8;
}

/* Prompt */
.trifeat__prompt {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #F4F2FA;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
}
.trifeat__prompt-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.trifeat__prompt-icon svg { width: 16px; height: 16px; }
.trifeat__prompt-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.42);
  margin-bottom: 5px;
}
.trifeat__prompt-text {
  font-size: 13px;
  color: #130F1E;
  line-height: 1.55;
}

/* Chat */
.trifeat__chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trifeat__chat-query {
  font-size: 13px;
  color: rgba(0,0,0,0.48);
  padding: 12px 14px;
  background: #F4F2FA;
  border-radius: 12px;
  line-height: 1.5;
}
.trifeat__chat-at {
  color: #9EB0F0;
  font-weight: 600;
}
.trifeat__chat-reply {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: #F8F6FF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
}
.trifeat__chat-avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.trifeat__chat-favicon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trifeat__chat-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.42);
  margin-bottom: 4px;
}
.trifeat__chat-msg {
  font-size: 13px;
  color: #130F1E;
  line-height: 1.5;
  margin-bottom: 8px;
}
.trifeat__chat-pills {
  display: flex;
  gap: 6px;
}
.trifeat__chat-pills span {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  cursor: pointer;
}
.trifeat__chat-pill--accept {
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  border: 1px solid #9EB0F0;
  color: #ffffff;
}
.trifeat__chat-pill--cancel {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.5);
}
.trifeat__chat-item {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  padding: 9px 13px;
  background: #F4F2FA;
  border-radius: 10px;
}

/* ── TRIFEAT INTERACTIVE ENHANCEMENTS ────────────────────── */

/* Card hover lift */
.trifeat__card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.trifeat__card--light:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.18);
}
.trifeat__card--dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.18);
}

/* Metric hover */
.trifeat__metric {
  cursor: default;
  border-radius: 10px;
  padding: 4px 8px;
  margin: -4px -8px;
  transition: transform 0.25s ease;
}
.trifeat__metric:hover { transform: scale(1.06); }

/* Orbit item hover — only non-transform props to avoid animation conflict */
.trifeat__orbit-item {
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.trifeat__orbit-item:hover {
  background: #EEF0FF;
  border-color: rgba(158,176,240,0.4);
  box-shadow: 0 0 0 5px rgba(158,176,240,0.08), 0 6px 20px rgba(0,0,0,0.1);
}
.trifeat__orbit-item svg {
  transition: opacity 0.25s ease, color 0.25s ease;
}
.trifeat__orbit-item:hover svg {
  opacity: 1;
  color: #7A96E8;
}

/* Orbit center label swap transition */
.trifeat__orbit-center {
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.trifeat__orbit-center.switching {
  opacity: 0;
  transform: scale(0.7);
}
.trifeat__orbit-center[data-label="true"] {
  font-size: 11px;
  letter-spacing: 0;
}

/* Protocol tags */
.trifeat__tag {
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.trifeat__tag:hover:not(.trifeat__tag--active) {
  background: rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.16);
}
.trifeat__tag:active { transform: scale(0.93); }

/* Chat reply fade */
.trifeat__chat-msg {
  transition: opacity 0.25s ease;
}

/* Accept pill */
.trifeat__chat-pill--accept {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.trifeat__chat-pill--accept:hover { background: linear-gradient(135deg, #7A96E8 0%, #A890DC 100%); border-color: #7A96E8; }
.trifeat__chat-pill--accept:active { transform: scale(0.93); }
.trifeat__chat-pill--accept.applied {
  background: #9880D4;
  border-color: #9880D4;
}

/* Cancel pill */
.trifeat__chat-pill--cancel {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.trifeat__chat-pill--cancel:hover {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.25);
}

/* Chat items */
.trifeat__chat-item {
  cursor: pointer;
  transition: background 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
}
.trifeat__chat-item:hover {
  background: #e8e8e6;
  padding-left: 18px;
  color: rgba(0,0,0,0.65);
}

/* ── STATS SECTION ── */
.stats {
  height: 100vh;
  overflow: hidden;
  background: #F4F2FC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats__wrap {
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.stats__header {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

.stats__label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(0,0,0,0.38);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 8px;
  min-width: 160px;
}

.stats__heading {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: #130F1E;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.stats__cards {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.stats__card {
  flex: 1;
  background: #141220;
  border-radius: 20px;
  padding: 28px 28px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  clip-path: inset(0 0 100% 0 round 20px);
  transition: clip-path 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.25s ease,
              box-shadow 0.25s ease;
}
.stats__card--visible {
  clip-path: inset(0 0 0% 0 round 20px);
}
.stats__card--visible:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

.stats__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.022) 6px,
    rgba(255,255,255,0.022) 7px
  );
  pointer-events: none;
}

.stats__card--sm { height: 190px; }
.stats__card--md { height: 248px; }
.stats__card--lg { height: 308px; }

.stats__num {
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.stats__desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.46);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.stats__pill {
  display: inline-flex;
  align-items: center;
  background: #130F1E;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.18s;
}

.stats__pill:hover {
  background: #201C2E;
  transform: translateY(-2px);
}

/* ── FAQ SECTION ── */
.faq {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #F8F6FF;
}
.faq__wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq__heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #130F1E;
  text-align: center;
}
.faq__list {
  display: flex;
  flex-direction: column;
}

/* Entrance animation state */
.faq__group {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.faq__group.faq--visible {
  opacity: 1;
  transform: translateY(0);
}
.faq__divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0;
  transition: opacity 0.25s ease;
}
.faq__group--open + .faq__group .faq__divider,
.faq__group--open .faq__divider { opacity: 0; }
.faq__item {
  border-radius: 14px;
  padding: 0 20px;
  transition: background 0.25s ease;
}
.faq__item--open {
  background: #F4F2FA;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: #130F1E;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.faq__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(0,0,0,0.3);
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq__item--open .faq__icon {
  transform: rotate(180deg);
  color: #130F1E;
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq__item--open .faq__a {
  grid-template-rows: 1fr;
}
.faq__a > p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  padding-bottom: 0;
  transition: padding-bottom 0.32s ease;
}
.faq__item--open .faq__a > p {
  padding-bottom: 18px;
}
.faq__footer {
  text-align: center;
  font-size: 14px;
  color: rgba(0,0,0,0.4);
}
.faq__link {
  color: #130F1E;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__link:hover { color: #9EB0F0; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta {
  background: #F8F6FF;
  display: flex;
  flex-direction: column;
  /* sin height fija ni snap propio — los hijos definen los snap points */
}

/* Snap point 1: solo el CTA, ocupa el viewport completo */
.cta__main {
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}

/* Snap point 2: footer anclado al fondo del viewport */
.cta__footer-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px 28px;
}

.cta__wrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.cta__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta__heading {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #130F1E;
}

/* Inline avatar stack */
.cta__av-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 6px;
}
.cta__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #c8cbcf;
  transition: transform 0.2s ease;
}
.cta__avatar:not(:first-child) { margin-left: -16px; }
.cta__av-wrap:hover .cta__avatar { transform: translateX(0); }
.cta__av-wrap:hover .cta__avatar:not(:first-child) { margin-left: -6px; }

.cta__sub {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(0,0,0,0.46);
  max-width: 500px;
}

.cta__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta__btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(158,176,240,0.4);
}
.cta__btn-main:hover {
  background: linear-gradient(135deg, #7A96E8 0%, #A890DC 100%);
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(158,176,240,0.55);
}
.cta__btn-main:active { transform: scale(0.97); }

.cta__btn-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.cta__btn-icon:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.22);
  color: #130F1E;
  transform: scale(1.07);
}
.cta__btn-icon:active { transform: scale(0.93); }
.cta__btn-icon svg { width: 19px; height: 19px; }

/* Right service cards */
.cta__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 22px;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 18px;
  background: #ffffff;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.cta__card:hover {
  border-color: rgba(0,0,0,0.18);
  background: #fafafa;
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
}

.cta__card-body { flex: 1; min-width: 0; }

.cta__card-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #130F1E;
  margin-bottom: 6px;
}

.cta__card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,0,0,0.42);
}

.cta__card-arr {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.35);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cta__card:hover .cta__card-arr {
  background: linear-gradient(135deg, #9EB0F0 0%, #C0AAEC 100%);
  border-color: #9EB0F0;
  color: #ffffff;
  transform: rotate(0deg) scale(1.05);
}
.cta__card-arr svg { width: 15px; height: 15px; }

/* ── TEAM section entrance animation ── */
.team__eyebrow,
.team__heading,
.team__sub,
.team__carousel {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.team__heading   { transition-delay: 0.1s; }
.team__sub       { transition-delay: 0.2s; }
.team__carousel  { transition-delay: 0.35s; }
.team.is-visible .team__eyebrow,
.team.is-visible .team__heading,
.team.is-visible .team__sub,
.team.is-visible .team__carousel {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA section entrance animation ── */
.cta__left,
.cta__right {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.cta__left  { transform: translateX(-44px); }
.cta__right { transform: translateX(44px); transition-delay: 0.18s; }
.cta.is-visible .cta__left,
.cta.is-visible .cta__right {
  opacity: 1;
  transform: translateX(0);
}

/* ── FOOTER (dentro de .cta) ─────────────────────────────── */
.ftr {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #141220;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  padding: 40px 44px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ftr__row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* ── Left panel ── */
.ftr__left {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: 44px;
}

.ftr__brand {
  display: flex;
  align-items: center;
}

.ftr__logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.ftr__brand-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
}

.ftr__tagline {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.ftr__nl-label {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  margin-bottom: 10px;
}

.ftr__nl-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 5px 5px 14px;
  transition: border-color 0.2s ease;
}
.ftr__nl-form:focus-within {
  border-color: rgba(255,255,255,0.22);
}

.ftr__nl-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: #ffffff;
  font-family: var(--font);
  min-width: 0;
}
.ftr__nl-input::placeholder { color: rgba(255,255,255,0.25); }

.ftr__nl-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.ftr__nl-btn:hover  { background: rgba(255,255,255,0.22); transform: scale(1.06); }
.ftr__nl-btn:active { transform: scale(0.93); }
.ftr__nl-btn svg { width: 13px; height: 13px; }
.ftr__nl-btn.subscribed {
  background: rgba(152,128,212,0.25);
  border-color: rgba(152,128,212,0.4);
  color: #C0AAEC;
}

/* ── Vertical divider ── */
.ftr__vdiv {
  width: 1px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  align-self: stretch;
}

/* ── Nav links ── */
.ftr__nav {
  flex: 0 0 auto;
  display: flex;
  gap: 16px;
  padding: 0 44px;
}

.ftr__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 120px;
}

/* ── Blog preview column ── */
.ftr__blog-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 44px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.ftr__blog-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}

.ftr__blog-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  margin: -10px;
  transition: background 0.2s ease;
}
.ftr__blog-item:hover { background: rgba(255,255,255,0.05); }

.ftr__blog-thumb {
  width: 52px;
  height: 52px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.ftr__blog-item:hover .ftr__blog-thumb { opacity: 1; }

.ftr__blog-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ftr__blog-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.ftr__blog-date svg { width: 11px; height: 11px; flex-shrink: 0; }

.ftr__blog-title {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.ftr__blog-item:hover .ftr__blog-title { color: rgba(255,255,255,0.9); }

.ftr__link {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  width: fit-content;
}
.ftr__link:hover { color: rgba(255,255,255,0.88); }

/* ── Social icons ── */
.ftr__social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-left: 44px;
}

.ftr__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.ftr__social-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: #ffffff;
  transform: scale(1.08);
}
.ftr__social-btn:active { transform: scale(0.92); }
.ftr__social-btn svg { width: 15px; height: 15px; }

/* ── Separator + Copyright ── */
.ftr__sep {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 24px;
}

.ftr__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  text-align: center;
  letter-spacing: -0.01em;
  padding-top: 16px;
}


/* ── VIDEO MODAL ─────────────────────────────────────────── */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.demo-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.demo-modal__content {
  position: relative;
  width: 92vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.demo-modal.is-open .demo-modal__content {
  transform: scale(1);
}

.demo-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.demo-modal__close:hover { background: rgba(0,0,0,0.75); }
.demo-modal__close svg { width: 16px; height: 16px; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Hero light — collapse to single column */
  .hero--light .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero--light .hero__wrap { padding-left: 32px; padding-right: 32px; }

  /* Discover / Showcase — allow height to expand at tablet */
  .sc { height: auto; overflow: visible; padding: 60px 32px 80px; }
  .sc__grid { height: auto; }

  /* Platform — 2 columns */
  .trifeat { padding: 48px 32px; }
  .trifeat__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trifeat__card { min-height: 340px; }

  /* Stats — stack header */
  .stats__header { flex-direction: column; gap: 16px; text-align: center; }
  .stats__label { min-width: unset; }
  .stats__wrap { padding: 0 32px; }

  /* Reviews — 1 column */
  .rev__wrap { padding: 0 32px; }
  .rev__list { grid-template-columns: 1fr; gap: 12px; }

  /* CTA — stack grid */
  .cta__wrap { grid-template-columns: 1fr; gap: 40px; }
  .cta__right { display: none; }
  .cta__main { padding: 56px 32px; }

  /* Footer — wrap columns */
  .ftr__row { flex-wrap: wrap; gap: 36px; }
  .ftr__left { flex: 0 0 100%; padding-right: 0; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ftr__nav { padding: 0; }
  .ftr__blog-col { border-left: none; padding-left: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); flex: 0 0 100%; }
  .ftr__social { padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar — compact with logo ── */
  .bnb {
    top: 14px;
    height: 48px;
    padding: 0 12px;
    gap: 2px;
    background: rgba(255,255,255,0.92);
    border-color: rgba(0,0,0,0.08);
  }
  .bnb__logo { display: block; height: 22px; }
  .bnb__divider { display: block; }
  .bnb__link { padding: 6px 12px; font-size: 12px; }
  .bnb__item { padding: 0 9px; gap: 0; }
  .bnb__label { display: none; }
  .bnb__icon { width: 22px; height: 22px; }

  /* ── Hero ── */
  .hero { padding: 0; }
  .hero__wrap { padding: 88px 20px 56px; }
  .hero--light .hero__wrap { padding: 88px 20px 56px; }
  .hero__grid, .hero--light .hero__grid { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__title { font-size: clamp(36px, 9vw, 52px); }
  .hero__desc { font-size: 15px; }
  .hero__ctas { flex-direction: column; gap: 10px; }
  .hero__cta { justify-content: center; width: 100%; }
  .marquee-card { display: none; }

  /* ── Hero editorial (mobile layout) ── */
  .hero-scroll-zone { height: 100svh !important; }
  .hero--editorial {
    position: relative !important;
    height: 100svh !important;
    min-height: 100svh !important;
    transform: none !important;
  }
  .hero--editorial .hero__wrap {
    padding: 72px 24px 48px !important;
    align-items: flex-end;
    height: 100%;
  }
  .hero--editorial .hero__editorial-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__editorial-right { display: none !important; }
  .hero--editorial .hero__title { font-size: clamp(38px, 10vw, 56px); }

  /* Mobile play button — icon-only circle */
  .hero__play-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 48px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: rgba(19,15,30,0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    z-index: 4;
  }
  .hero__play-mobile:active { background: rgba(19,15,30,0.95); transform: scale(0.95); }
  .hero__play-mobile svg { flex-shrink: 0; margin-left: 2px; }

  /* ── Switch zone (static on mobile, full screen) ── */
  .switch-zone { height: auto !important; margin-top: 0 !important; }
  .switch-zone__gate { display: none; }
  .switch-sec {
    position: relative !important;
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .switch-sec__slide { position: relative !important; inset: auto !important; display: none !important; }
  .switch-sec__slide--1 { display: flex !important; }
  .switch-sec__inner {
    max-width: 400px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .switch-sec.is-visible .switch-sec__inner {
    opacity: 1;
    transform: translateY(0);
  }
  .switch-sec__toggle { cursor: pointer; }
  .switch-sec__toggle-wrap { cursor: pointer; gap: 16px; }
  .switch-sec__rings { display: none; }
  .switch-sec__title { font-size: clamp(22px, 6vw, 32px); }
  .switch-sec__sub { font-size: 15px; }

  /* ── Ambient section — light static layout on mobile ── */
  .ambient-zone { height: 100svh !important; }
  .ambient-sec { background: #F8F6FF !important; overflow: hidden !important; }
  .ambient-sec__bg span { color: #0a0a1e !important; opacity: 0.05 !important; }
  .ambient-sec__bg--dark { display: none !important; }

  /* Hide all cards, set scale origin for shown ones */
  .ambient-card { display: none !important; transform-origin: top left; }

  /* Show 5 cards at half size */
  .ambient-card--1,
  .ambient-card--3,
  .ambient-card--4,
  .ambient-card--10,
  .ambient-card--11 { display: block !important; }

  /* Positions — each card is 250px wide; scale(0.5) = ~125px visual footprint */
  .ambient-card--1  { top:  6vh; left: calc(100% - 140px); animation: mf-1  5.0s ease-in-out infinite; }
  .ambient-card--3  { top: 14vh; left: -10px;               animation: mf-3  6.2s ease-in-out infinite; }
  .ambient-card--4  { top: 42vh; left: calc(100% - 125px); animation: mf-4  4.6s ease-in-out infinite; }
  .ambient-card--10 { top: 48vh; left: -10px;               animation: mf-10 7.0s ease-in-out infinite; }
  .ambient-card--11 { top: 70vh; left: calc(50% - 65px);    animation: mf-11 5.5s ease-in-out infinite; }

  @keyframes mf-1  { 0%,100%{transform:scale(.5) rotate( 3.0deg) translateY(  0px)} 50%{transform:scale(.5) rotate( 3.0deg) translateY(-10px)} }
  @keyframes mf-3  { 0%,100%{transform:scale(.5) rotate(-2.0deg) translateY(  0px)} 50%{transform:scale(.5) rotate(-2.0deg) translateY( -8px)} }
  @keyframes mf-4  { 0%,100%{transform:scale(.5) rotate( 1.5deg) translateY(  0px)} 50%{transform:scale(.5) rotate( 1.5deg) translateY(-12px)} }
  @keyframes mf-10 { 0%,100%{transform:scale(.5) rotate(-3.0deg) translateY(  0px)} 50%{transform:scale(.5) rotate(-3.0deg) translateY( -6px)} }
  @keyframes mf-11 { 0%,100%{transform:scale(.5) rotate( 2.0deg) translateY(  0px)} 50%{transform:scale(.5) rotate( 2.0deg) translateY( -9px)} }

  /* ── Platform / Trifeat ── */
  .trifeat { padding: 48px 16px 48px; margin-top: 0 !important; }
  .trifeat__header { margin-bottom: 28px; }
  .trifeat__title { font-size: clamp(28px, 7vw, 40px); }
  .trifeat__sub { font-size: 14px; }
  .trifeat__grid { grid-template-columns: 1fr; gap: 16px; grid-auto-rows: 500px; }
  .trifeat__card { height: 500px; min-height: 500px; padding: 28px 24px; gap: 20px; overflow: hidden; }
  .trifeat__card-visual { flex: 1; max-height: none; overflow: hidden; min-height: 0; }
  .trifeat__orbital { min-height: 120px; transform: scale(0.72); transform-origin: center top; }
  .trifeat__sliders { padding: 16px; }
  .trifeat__chat { padding: 12px; }

  /* ── Discover / Showcase ── */
  .sc { padding: 48px 20px 60px; overflow: visible; }
  .sc__grid { grid-template-columns: 1fr; height: auto; gap: 12px; }
  .sc__card--large { height: 320px; }
  .sc__stack { flex-direction: column; gap: 12px; }
  .sc__card--text, .sc__card--img { min-height: 200px; }
  .sc__heading { font-size: clamp(18px, 5vw, 24px); }

  /* ── Stats ── */
  .stats { padding: 0; }
  .stats__wrap { padding: 56px 20px; flex-direction: column; gap: 32px; }
  .stats__header { flex-direction: column; gap: 12px; text-align: center; }
  .stats__label { min-width: unset; font-size: 11px; }
  .stats__heading { font-size: clamp(26px, 7vw, 36px); }
  .stats__cards { flex-direction: column; gap: 12px; align-items: stretch; }
  .stats__card--sm,
  .stats__card--md,
  .stats__card--lg { height: auto !important; min-height: 140px; width: 100% !important; }
  .stats__num { font-size: clamp(40px, 10vw, 56px); }

  /* ── Trusted by ── */
  .rev { padding: 32px 0; }
  .rev__wrap { padding: 0 20px; gap: 24px; }
  .rev__heading { font-size: clamp(28px, 8vw, 48px); }
  .rev__tabs { gap: 0; justify-content: center; }
  .rev__tabs-sep { display: none; }
  .rev__tab { font-size: clamp(14px, 3.8vw, 20px); padding: 0 14px 12px; }
  .rev__tab-bar { left: 14px; right: 14px; }
  .rev__media-item { width: 50%; }
  .rev__partner-item { width: 33.33% !important; }
  .rev__list { grid-template-columns: 1fr; gap: 12px; }
  .rev__quote { font-size: 13px; }
  .rev__card-footer { flex-wrap: wrap; gap: 8px; }

  /* Press strip */
  .press-strip { padding: 28px 0 0; }
  .press-strip__inner { gap: 36px; animation-duration: 18s; }
  .press-strip__item img { height: 40px; }

  /* ── Team ── */
  .team { padding: 56px 20px; }
  .team__header { padding: 0 0 32px; }
  .team__heading { font-size: clamp(26px, 7vw, 36px); }
  .team__carousel {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
  .team__card { width: 180px; height: 300px; }

  /* ── FAQ ── */
  .faq { padding: 0; }
  .faq__wrap { padding: 56px 20px; }
  .faq__heading { font-size: clamp(26px, 7vw, 36px); }
  .faq__q { font-size: 14px; padding: 16px 0; }
  .faq__a > p { font-size: 13.5px; }
  /* FAQ: animate on mobile but faster stagger (handled in JS) */

  /* ── CTA ── */
  .cta__main { padding: 56px 20px; }
  .cta__wrap { grid-template-columns: 1fr; gap: 32px; }
  .cta__right { display: none; }
  .cta__heading { font-size: clamp(28px, 7vw, 40px); }
  .cta__sub { font-size: 14px; }
  .cta__avatar-stack { flex-wrap: wrap; }

  /* ── Footer — simplified: logo + tagline + blog only ── */
  .ftr { padding: 36px 20px 20px; }
  .ftr__row { flex-direction: column; gap: 0; }
  .ftr__left { flex: none; padding-right: 0; padding-bottom: 28px; }
  .ftr__tagline { font-size: 16px; }
  .ftr__nl { display: none; }
  .ftr__nav {
    display: flex;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 4px;
  }
  .ftr__col {
    flex-direction: row;
    gap: 24px;
    min-width: 0;
  }
  .ftr__link { font-size: 13px; }
  .ftr__social { display: none; }
  .ftr__blog-col {
    border-left: none;
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .ftr__blog-item { margin: -6px; padding: 6px; }
  .ftr__sep { margin-top: 8px; }

  /* ── Blog pages ── (blog.css handles these but add safety) */
  .blog-grid { grid-template-columns: 1fr; padding: 32px 20px 60px; }
  .article-wrap, .related { padding-left: 20px; padding-right: 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Navbar even more compact */
  .bnb { top: 10px; padding: 0 6px; height: 44px; }
  .bnb__link { padding: 5px 10px; font-size: 11px; }
  .bnb__item { padding: 0 7px; }
  .bnb__icon { width: 20px; height: 20px; }

  /* Hero */
  .hero__wrap { padding: 76px 16px 48px; }
  .hero__title { font-size: clamp(30px, 10vw, 44px); }
  .hero__badge span { font-size: 10px; }

  /* Platform */
  .trifeat { padding: 48px 16px; }

  /* Stats */
  .stats__wrap { padding: 48px 16px; }

  /* Reviews */
  .rev__wrap { padding: 32px 16px; }
  .rev__partner-item { width: 50% !important; }
  .rev__tab { font-size: 12px; padding: 0 10px 12px; }
  .rev__tab-bar { left: 10px; right: 10px; }

  /* Team */
  .team { padding: 48px 16px; }
  .team__card { width: 160px; height: 272px; }

  /* FAQ */
  .faq__wrap { padding: 48px 16px; }

  /* CTA */
  .cta__main { padding: 48px 16px; }
  .cta__btn-main { width: 100%; justify-content: center; }

  /* Footer */
  .ftr { padding: 28px 16px 16px; }

  /* Press strip */
  .press-strip__inner { gap: 28px; }
  .press-strip__item img { height: 34px; }
}

/* ── Mobile: liberar scroll del body ── */
@media (max-width: 768px) {
  html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .snap-wrap {
    height: auto !important;
    min-height: 0 !important;
    overflow-x: hidden;
    overflow-y: visible;
  }
  /* All sections: at least one full screen tall on mobile */
  section { height: auto !important; min-height: 100svh !important; }
  /* Sections pinned to exactly one screen */
  .hero--editorial { height: 100svh !important; }
  .switch-sec { height: 100svh !important; overflow: hidden !important; }
  /* Ambient: full screen static on mobile */
  .ambient-zone { height: 100svh !important; }
  .ambient-sec { height: 100svh !important; }
  /* Team: keep fade-up but tighten delays */
  .team__heading  { transition-delay: 0.08s; }
  .team__sub      { transition-delay: 0.15s; }
  .team__carousel { transition-delay: 0.24s; }
  /* CTA: switch to vertical motion on mobile (horizontal looks odd) */
  .cta__left  { transform: translateY(28px); transition-delay: 0s; }
  .cta__right { transform: translateY(28px); transition-delay: 0.12s; }
}
