/* ═══════════════════════════════════════════════════════════════
   Pulse promo — pure CSS (no Tailwind)
   Semantic class stylesheet matching the previous Tailwind design
   ═══════════════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────────────── */
:root {
  --aqua-50: #f0f9ff;
  --aqua-100: #e0f2fe;
  --aqua-200: #bae6fd;
  --aqua-500: #0077B6;
  --aqua-600: #023E8A;
  --aqua-900: #03045E;

  --charcoal-800: #444444;
  --charcoal-900: #333333;
  --charcoal-950: #1A1A1A;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-900: #0f172a;

  /* aliases used by older custom CSS */
  --color-aqua-50: var(--aqua-50);
  --color-aqua-100: var(--aqua-100);
  --color-aqua-200: var(--aqua-200);
  --color-aqua-500: var(--aqua-500);
  --color-aqua-600: var(--aqua-600);
  --color-aqua-900: var(--aqua-900);
  --color-charcoal-800: var(--charcoal-800);
  --color-charcoal-900: var(--charcoal-900);
  --color-charcoal-950: var(--charcoal-950);

  --font-sans: "Inter", sans-serif;
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-mobile-bar: 0 -4px 24px rgba(0, 0, 0, 0.06);
  --shadow-aqua-glow: 0 0 32px rgba(0, 119, 182, 0.35);
  --shadow-aqua-glow-hover: 0 0 44px rgba(0, 119, 182, 0.55);
  --drop-shadow-product: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.28));
  --drop-shadow-product-md: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

/* ── Reset / base ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

html {
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
  display: none;
}

body {
  margin: 0;
  background: #fff;
  color: var(--charcoal-900);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100%;
  line-height: inherit;
}

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

img,
video {
  height: auto;
}

button,
input {
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul, ol {
  list-style: none;
}

/* ── Scrollbar hiding ────────────────────────────────────────── */
#main-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#main-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* ── Keyframes / animations ──────────────────────────────────── */
@keyframes pulse {
  50% { opacity: 0.5; }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ── Global utilities ────────────────────────────────────────── */
.is-hidden {
  display: none !important;
}

.is-flex {
  display: flex !important;
}

.is-invisible {
  opacity: 0;
  pointer-events: none;
}

.is-visible-opacity {
  opacity: 1;
}

.text-accent {
  color: var(--aqua-500);
}

.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.hidden {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   CHROME — header, nav dots, mobile bar, scheme rail
   ═══════════════════════════════════════════════════════════════ */

.site-header,
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
  .site-header,
  #site-header {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .site-header,
  #site-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.site-brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--aqua-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}

@media (min-width: 640px) {
  .site-brand {
    font-size: 1.25rem;
    gap: 0.75rem;
  }
}

.site-logo {
  height: 1.25rem;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .site-logo {
    height: 1.5rem;
  }
}

.lang-switch {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--slate-200);
  padding: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.lang-btn {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.lang-btn.is-active {
  background: var(--aqua-500);
  color: #fff;
}

.lang-btn:not(.is-active) {
  color: var(--charcoal-900);
}

/* Nav dots (desktop side) */
.nav-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-dots {
    display: flex;
  }
}

.nav-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s ease;
  border: none;
  padding: 0;
}

.nav-dot:hover {
  background: var(--aqua-500);
  transform: scale(1.5);
}

.nav-dot[data-active="true"] {
  background: var(--aqua-500);
  transform: scale(1.5);
}

/* Mobile steps bar */
#mobile-steps-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--slate-100);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-mobile-bar);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-spring);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

#mobile-steps-bar.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  #mobile-steps-bar {
    display: none !important;
  }
}

#mobile-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--aqua-500);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 0.75rem;
  line-height: 1.25;
}

.mobile-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--slate-200);
  transition: background 0.3s, width 0.3s, transform 0.3s;
  display: inline-block;
}

#mobile-steps-bar > div {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.mobile-step-dot.active {
  background: var(--aqua-500);
  width: 20px;
  border-radius: 9999px;
}

/* Scheme rail */
#scheme-rail {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

@media (min-width: 768px) {
  #scheme-rail {
    display: flex;
  }
}

@media (min-width: 1280px) {
  #scheme-rail {
    left: 1.5rem;
  }
}

.rail-title {
  margin-bottom: 0.75rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(68, 68, 68, 0.4);
  user-select: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.rail-node {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-400);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rail-node[data-state="active"] {
  background: var(--aqua-500);
  border-color: var(--aqua-500);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.rail-node[data-state="done"] {
  border-color: var(--aqua-500);
  color: var(--aqua-500);
}

.rail-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgba(0, 119, 182, 0.3);
  pointer-events: none;
  display: none;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.rail-node[data-state="active"] .rail-ping {
  display: block;
}

.rail-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
}

.rail-tip {
  position: absolute;
  left: 100%;
  margin-left: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  background: var(--charcoal-900);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-0.25rem);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 50;
}

.rail-node:hover .rail-tip {
  opacity: 1;
  transform: translateX(0);
}

.rail-connector {
  width: 0.125rem;
  height: 1.25rem;
  background: var(--slate-200);
  border-radius: 9999px;
  overflow: hidden;
}

.rail-fill {
  width: 100%;
  height: 100%;
  background: var(--aqua-500);
  transform-origin: top;
  transition: transform 0.5s ease;
  transform: scaleY(0);
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT — main scroll & sections
   ═══════════════════════════════════════════════════════════════ */

#main-scroll {
  height: 100svh;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: none;
  scroll-behavior: smooth;
  position: relative;
}

@media (min-width: 768px) {
  #main-scroll {
    scroll-snap-type: y mandatory;
  }
}

.section {
  min-height: 100svh;
  width: 100%;
  position: relative;
  display: flex;
  background: #fff;
}

@media (min-width: 768px) {
  .section {
    height: 100vh;
    scroll-snap-align: start;
  }
}

.section--center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--slate-50);
  overflow: hidden;
}

.section--split {
  flex-direction: column;
}

@media (min-width: 768px) {
  .section--split {
    flex-direction: row;
  }
}

.section--split-reverse {
  flex-direction: column;
}

@media (min-width: 768px) {
  .section--split-reverse {
    flex-direction: row-reverse;
  }
}

.section--split-42 {
  flex-direction: column;
}

@media (min-width: 768px) {
  .section--split-42 {
    flex-direction: row;
  }

  .section--split-42 > .split-text {
    width: 42%;
  }

  .section--split-42 > .split-media {
    width: 58%;
  }

  .section--split-reverse.section--split-42 > .split-text {
    width: 42%;
  }

  .section--split-reverse.section--split-42 > .split-media {
    width: 58%;
  }
}

.section--dark {
  background: var(--charcoal-950);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Split panels */
.split-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: #fff;
  z-index: 10;
  position: relative;
}

@media (min-width: 640px) {
  .split-text {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 768px) {
  .split-text {
    width: 50%;
    height: 100%;
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .split-text {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* Hero text panel extras */
#hero .split-text,
.hero-text-panel {
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
  #hero .split-text,
  .hero-text-panel {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  #hero .split-text,
  .hero-text-panel {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.split-media {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42svh;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .split-media {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .split-media {
    width: 50%;
    height: 100%;
    min-height: 0;
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .split-media {
    padding: 4rem;
  }
}

.split-media--slate {
  background: var(--slate-100);
}

.split-media--dark {
  background: var(--charcoal-950);
  min-height: 48svh;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .split-media--dark {
    min-height: 0;
    height: 100%;
  }
}

.split-media--gradient {
  background: linear-gradient(to bottom right, var(--charcoal-950), var(--slate-900));
  min-height: 46svh;
}

@media (min-width: 768px) {
  .split-media--gradient {
    min-height: 0;
  }
}

.split-media--balls {
  background: var(--slate-100);
}

/* Sensor / about media with custom gradient */
.split-media--device {
  background: radial-gradient(ellipse at 60% 40%, #d6d6d6 0%, #c8c8c8 30%, #b0b8bf 70%, #8fa0ad 100%);
  min-height: 38svh;
}

@media (min-width: 768px) {
  .split-media--device {
    min-height: 0;
  }
}

/* Decorative orbs */
.decor-orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(64px);
}

.decor-orb--tl {
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 119, 182, 0.1);
}

.decor-orb--br {
  bottom: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(3, 4, 94, 0.1);
}

.decor-orb--pulse {
  width: 24rem;
  height: 24rem;
  opacity: 0.4;
  mix-blend-mode: multiply;
  filter: blur(64px);
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Section inner containers */
.section-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 640px) {
  .section-inner {
    padding: 3.5rem 2rem;
  }
}

@media (min-width: 768px) {
  .section-inner {
    padding: 0 3rem;
  }
}

.section-inner--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Typography blocks */
.section-label {
  color: var(--aqua-500);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal-900);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  .section-title {
    font-size: 3rem;
    line-height: 1;
  }
}

.section--split .section-title,
.section--split-reverse .section-title,
.section--split-42 .section-title {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .section--split .section-title,
  .section--split-reverse .section-title,
  .section--split-42 .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  .section--split .section-title,
  .section--split-reverse .section-title,
  .section--split-42 .section-title {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 1rem;
  }

  .section--split .section-title,
  .section--split-reverse .section-title,
  .section--split-42 .section-title {
    margin-bottom: 1.5rem;
  }
}

.section-desc {
  font-size: 0.875rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.625;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-desc {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .section-desc {
    margin-bottom: 2rem;
  }
}

/* Hero typography */
#hero .section-title,
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--charcoal-900);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  #hero .section-title,
  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  #hero .section-title,
  .hero-title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  #hero .section-title,
  .hero-title {
    font-size: 4.5rem;
  }
}

#hero .section-desc,
.hero-desc {
  font-size: 1rem;
  color: rgba(68, 68, 68, 0.7);
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.625;
}

@media (min-width: 640px) {
  #hero .section-desc,
  .hero-desc {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  #hero .section-desc,
  .hero-desc {
    font-size: 1.25rem;
  }
}

/* Step markers */
.step-marker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .step-marker {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.step-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--aqua-500);
  opacity: 0;
  transform: translateY(28px) scale(0.8);
  transition:
    opacity 0.7s var(--ease-spring),
    transform 0.7s var(--ease-spring);
}

@media (min-width: 640px) {
  .step-num {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .step-num {
    font-size: 3.75rem;
  }
}

.step-meta {
  border-left: 2px solid var(--aqua-200);
  padding-left: 0.75rem;
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity 0.6s ease 0.25s,
    transform 0.6s var(--ease-spring) 0.25s;
}

@media (min-width: 640px) {
  .step-meta {
    padding-left: 1.25rem;
  }
}

.step-active .step-marker .step-num,
.step-active .step-marker .step-meta,
section.step-active .step-marker .step-num,
section.step-active .step-marker .step-meta {
  opacity: 1;
  transform: none;
}

.step-meta-label {
  color: var(--aqua-500);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.125rem;
}

@media (min-width: 640px) {
  .step-meta-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}

.step-meta-desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal-900);
  display: none;
}

@media (min-width: 640px) {
  .step-meta-desc {
    display: block;
    font-size: 1rem;
  }
}

/* Feature lists */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .feature-list--spacious {
    gap: 1.75rem;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--aqua-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--aqua-100);
  color: var(--aqua-500);
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-icon--sm {
  width: 2.25rem;
  height: 2.25rem;
}

@media (min-width: 640px) {
  .feature-icon--sm {
    width: 3rem;
    height: 3rem;
  }

  .feature-icon--sm svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .feature-item--sm {
    gap: 1.25rem;
  }
}

.feature-body {
  min-width: 0;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 0.25rem;
}

.feature-icon--sm + .feature-body .feature-title,
.feature-item--sm .feature-title {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

@media (min-width: 640px) {
  .feature-icon--sm + .feature-body .feature-title,
  .feature-item--sm .feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
}

.feature-text {
  font-size: 0.875rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.625;
}

.feature-icon--sm + .feature-body .feature-text,
.feature-item--sm .feature-text {
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .feature-icon--sm + .feature-body .feature-text,
  .feature-item--sm .feature-text {
    font-size: 0.875rem;
  }
}

/* Info cards */
.info-cards {
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .info-cards {
    gap: 1rem;
  }
}

.info-cards--2col {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .info-cards--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-cards--2col .info-card--span {
    grid-column: span 2;
  }
}

.info-card {
  border-radius: 1rem;
  border: 1px solid var(--aqua-100);
  background: rgba(240, 249, 255, 0.6);
  padding: 1rem;
}

@media (min-width: 640px) {
  .info-card {
    padding: 1.25rem;
  }
}

.info-card-title {
  color: var(--charcoal-900);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card-text {
  font-size: 0.875rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.625;
}

/* Sensor grid */
.sensor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .sensor-grid {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .sensor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sensor-card {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease;
}

.sensor-card:hover {
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .sensor-card {
    padding: 1.25rem;
  }
}

.sensor-card-img {
  height: 5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sensor-card-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .sensor-card-img {
    height: 7rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .sensor-card-img {
    height: 9rem;
  }
}

.sensor-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 0.25rem;
  line-height: 1.375;
}

@media (min-width: 640px) {
  .sensor-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .sensor-card-title {
    font-size: 1.125rem;
  }
}

.sensor-card-desc {
  font-size: 11px;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.625;
  flex: 1;
}

@media (min-width: 640px) {
  .sensor-card-desc {
    font-size: 0.875rem;
  }
}

/* Schema frame */
.schema-frame {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-200);
  background: #fff;
}

@media (min-width: 640px) {
  .schema-frame {
    border-radius: 1.5rem;
  }
}

.schema-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Integration: keep header + schema as one compact centered block */
#integration .section-inner--center {
  width: 100%;
  justify-content: center;
  gap: 0;
}

#integration .section-header--center {
  margin-bottom: 1rem;
}

#integration .section-header--center .section-desc {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #integration.section--center {
    justify-content: center;
  }

  #integration .section-inner--center {
    height: 100%;
    max-height: 100%;
    min-height: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    box-sizing: border-box;
    justify-content: center;
    gap: 1.25rem;
  }

  #integration .section-header--center {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  #integration .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  #integration .section-label {
    margin-bottom: 0.5rem;
  }

  #integration .schema-frame {
    flex: 0 1 auto;
    width: 100%;
    max-height: calc(100vh - 13rem);
    align-self: stretch;
  }

  #integration .schema-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 13rem);
    object-fit: contain;
    object-position: center top;
  }
}

@media (min-width: 1280px) {
  #integration .section-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  #integration .schema-frame,
  #integration .schema-frame img {
    max-height: calc(100vh - 14rem);
  }
}

/* Product shots */
.product-shot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-shot .product-frame {
  width: 100%;
  max-width: none;
}

#action-hub .split-media {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  #action-hub .split-media {
    padding: 2rem;
  }
}

#action-hub .product-shot {
  width: 100%;
  height: 100%;
  align-self: stretch;
}

#action-hub .product-frame {
  width: 100%;
  height: 100%;
  max-height: none;
}

#action-hub .product-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.product-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  max-height: 75vh;
}

@media (min-width: 640px) {
  .product-frame {
    border-radius: 1.5rem;
  }
}

@media (min-width: 768px) {
  .product-frame {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  }
}

.product-shot img,
.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 34svh;
  border-radius: 1rem;
}

@media (min-width: 640px) {
  .product-shot img,
  .product-frame img {
    border-radius: 1.5rem;
  }
}

@media (min-width: 768px) {
  .product-shot img,
  .product-frame img {
    max-height: 75vh;
  }
}

.product-frame--sm img {
  max-height: 28svh;
}

@media (min-width: 640px) {
  .product-frame--sm img {
    max-height: 34svh;
  }
}

@media (min-width: 768px) {
  .product-frame--sm img {
    max-height: 75vh;
  }
}

.product-frame--balls {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #fdfcfc;
}

@media (min-width: 640px) {
  .product-frame--balls {
    border-radius: 1.5rem;
  }
}

.product-frame--balls img {
  max-height: 28svh;
}

@media (min-width: 640px) {
  .product-frame--balls img {
    max-height: 34svh;
  }
}

@media (min-width: 768px) {
  .product-frame--balls img {
    max-height: 75vh;
  }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--aqua-50);
  color: var(--aqua-500);
  font-size: 0.75rem;
  font-weight: 500;
  width: max-content;
  max-width: 100%;
  margin-bottom: 1.25rem;
  border: 1px solid var(--aqua-100);
}

@media (min-width: 640px) {
  .badge {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--aqua-500);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}

/* CTA link */
.cta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal-900);
  font-weight: 600;
  transition: color 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
}

.cta-link:hover {
  color: var(--aqua-500);
}

.cta-link svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.15s ease;
}

.cta-link:hover svg {
  transform: translateY(0.25rem);
}

/* Media play overlay */
.media-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.play-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-2xl);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .play-btn {
    width: 5rem;
    height: 5rem;
  }
}

.play-btn--sm {
  width: 3.5rem;
  height: 3.5rem;
}

@media (min-width: 640px) {
  .play-btn--sm {
    width: 5rem;
    height: 5rem;
  }
}

.group:hover .play-btn,
.split-media--dark:hover .play-btn,
.carousel-slide:hover .play-btn,
.partner-slide:hover .play-btn {
  background: var(--aqua-500);
  border-color: var(--aqua-500);
  transform: scale(1.1);
}

.play-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}

@media (min-width: 640px) {
  .play-icon {
    width: 2rem;
    height: 2rem;
  }
}

.play-btn--sm .play-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .play-btn--sm .play-icon {
    width: 2rem;
    height: 2rem;
  }
}

.play-caption {
  margin-top: 1.25rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.15s ease;
  text-align: center;
  padding: 0 1.25rem;
}

.group:hover .play-caption,
.split-media--dark:hover .play-caption,
.carousel-slide:hover .play-caption,
.partner-slide:hover .play-caption {
  opacity: 1;
}

.video-cover {
  position: relative;
  overflow: hidden;
}

#bgVideo,
.video-cover > video,
.split-media--dark > video,
.carousel-slide video,
.partner-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-dim {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.3);
  transition: background-color 0.3s ease;
}

.group:hover .video-dim,
.split-media--dark:hover .video-dim,
.carousel-slide:hover .video-dim,
.partner-slide:hover .video-dim {
  background: rgba(26, 26, 26, 0.5);
}

.video-dim--strong {
  background: rgba(26, 26, 26, 0.35);
}

.group:hover .video-dim--strong,
.carousel-slide:hover .video-dim--strong {
  background: rgba(26, 26, 26, 0.55);
}

/* ═══════════════════════════════════════════════════════════════
   CAROUSEL
   ═══════════════════════════════════════════════════════════════ */

.carousel {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 64rem;
}

.carousel--narrow {
  max-width: 56rem;
}

.carousel-frame {
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .carousel-frame {
    border-radius: 1.5rem;
  }
}

.carousel-frame--bordered {
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.carousel-frame--dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  display: block;
  max-width: 100%;
  object-fit: contain;
  background: #fff;
}

.dashboard-slide-img {
  display: block;
  max-width: 100%;
  max-height: 42svh;
  object-fit: contain;
  background: #fff;
  clip-path: inset(0 10px 0 0);
}

@media (min-width: 768px) {
  .dashboard-slide-img {
    max-height: 58vh;
  }
}

.carousel-slide--shot img {
  max-height: 44svh;
  clip-path: inset(0 10px 0 0);
}

@media (min-width: 768px) {
  .carousel-slide--shot img {
    max-height: 62vh;
  }
}

.carousel-slide--product {
  padding: 1rem;
  background: #fff;
}

@media (min-width: 640px) {
  .carousel-slide--product {
    padding: 1.5rem;
  }
}

.carousel-slide--product img {
  max-height: 34svh;
}

@media (min-width: 768px) {
  .carousel-slide--product img {
    max-height: 65vh;
  }
}

.carousel-slide--video {
  position: relative;
  min-height: 34svh;
  background: var(--charcoal-950);
  cursor: pointer;
}

@media (min-width: 768px) {
  .carousel-slide--video {
    min-height: 65vh;
  }
}

.carousel-nav {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .carousel-nav {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .carousel-nav {
    margin-top: 1.25rem;
  }
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-900);
  transition: color 0.15s ease;
}

.carousel-btn:hover {
  color: var(--aqua-500);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.carousel-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
  color: #fff;
}

.carousel-btn--ghost:hover {
  color: #38bdf8;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--slate-300);
  transition: all 0.15s ease;
  border: none;
  padding: 0;
}

.carousel-dot[data-active="true"] {
  width: 2rem;
  background: var(--aqua-500);
}

.carousel-dot--light {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-dot--light[data-active="true"] {
  width: 2rem;
  background: #fff;
}

.partner-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--slate-300);
  transition: all 0.15s ease;
  border: none;
  padding: 0;
}

.partner-dot[data-active="true"] {
  width: 2rem;
  background: var(--aqua-500);
}

/* Partner dots on dark media — white style when overlaid */
#partner-dots .partner-dot {
  background: rgba(255, 255, 255, 0.4);
}

#partner-dots .partner-dot[data-active="true"] {
  background: #fff;
  width: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════════════════════════ */

#partner-copy {
  min-height: 0;
}

#partner-location {
  font-size: 0.875rem;
  color: var(--aqua-500);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  #partner-location {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  #partner-location {
    margin-bottom: 1.25rem;
  }
}

#partner-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
  #partner-name {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  #partner-name {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  #partner-name {
    margin-bottom: 1.25rem;
  }
}

#partner-desc {
  font-size: 0.875rem;
  color: rgba(68, 68, 68, 0.7);
  margin-bottom: 0;
  max-width: 36rem;
  line-height: 1.625;
  transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
  #partner-desc {
    font-size: 1.125rem;
  }
}

.partner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  transform: none;
}

.partner-slide.is-visible-opacity,
.partner-slide.opacity-100 {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.partner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#partner-nav {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.25rem;
  z-index: 20;
}

@media (min-width: 640px) {
  #partner-nav {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  #partner-nav {
    bottom: 2rem;
  }
}

.partner-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color 0.15s ease;
}

.partner-nav-btn:hover {
  color: #7dd3fc;
}

.partner-nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .partner-nav-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.split-mobile-section {
  overflow: hidden;
}

@media (min-width: 768px) {
  #partners.section {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }

  #partners.split-mobile-section {
    flex-direction: row;
  }
}

.split-text-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  background: #fff;
  z-index: 10;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .split-text-panel {
    padding: 3rem 2rem;
  }
}

@media (min-width: 768px) {
  .split-text-panel {
    width: 50%;
    height: 100%;
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .split-text-panel {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.split-media-panel {
  width: 100%;
  height: 44svh;
  position: relative;
  background: var(--charcoal-950);
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .split-media-panel {
    width: 50%;
    height: 100%;
  }
}

#partner-media {
  position: absolute;
  inset: 0;
  height: 100%;
  touch-action: pan-y;
}

.partner-video {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
}

.contact-card {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .contact-card {
    gap: 1rem;
    padding: 1.25rem 2rem;
  }
}

.contact-card:hover {
  background: rgba(0, 119, 182, 0.2);
  border-color: rgba(0, 119, 182, 0.5);
}

.contact-card--primary {
  background: var(--aqua-500);
  border-color: var(--aqua-500);
  box-shadow: var(--shadow-aqua-glow);
}

.contact-card--primary:hover {
  background: rgba(0, 119, 182, 0.9);
  border-color: var(--aqua-500);
  box-shadow: var(--shadow-aqua-glow-hover);
}

.contact-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card--primary .contact-card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.contact-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card--primary .contact-card-icon svg {
  color: #fff;
}

.contact-card-body {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-bottom: 0.125rem;
}

.contact-card--primary .contact-card-label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card-value {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  word-break: break-all;
  transition: color 0.15s ease;
}

@media (min-width: 640px) {
  .contact-card-value {
    font-size: 1.125rem;
  }
}

.contact-card:hover .contact-card-value {
  color: #38bdf8;
}

.contact-card--primary:hover .contact-card-value {
  color: #fff;
}

.contact-card-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.contact-card:hover .contact-card-arrow {
  color: #38bdf8;
  transform: translateX(0.25rem);
}

.contact-card--primary .contact-card-arrow {
  color: rgba(255, 255, 255, 0.6);
}

.contact-card--primary:hover .contact-card-arrow {
  color: #fff;
  transform: translateY(0.125rem);
}

.skolkovo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .skolkovo-badge {
    bottom: 2rem;
  }
}

.skolkovo-badge img {
  height: 1.75rem;
  width: auto;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .skolkovo-badge img {
    height: 2.5rem;
  }
}

/* Contact section content */
.section--dark .section-inner,
#contact .section-inner {
  max-width: 48rem;
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .section--dark .section-inner,
  #contact .section-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 768px) {
  .section--dark .section-inner,
  #contact .section-inner {
    padding: 5rem 3rem;
  }
}

.section--dark .section-title,
#contact .section-title {
  color: #fff;
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .section--dark .section-title,
  #contact .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section--dark .section-title,
  #contact .section-title {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .section--dark .section-title,
  #contact .section-title {
    margin-bottom: 1.5rem;
  }
}

.section--dark .section-desc,
#contact .section-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .section--dark .section-desc,
  #contact .section-desc {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .section--dark .section-desc,
  #contact .section-desc {
    margin-bottom: 3rem;
  }
}

.section--dark::before,
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 119, 182, 0.3);
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background: rgba(3, 4, 94, 0.1);
  border-radius: 9999px;
  filter: blur(90px);
  pointer-events: none;
}

@media (min-width: 768px) {
  .contact-glow {
    width: 800px;
    height: 800px;
    filter: blur(120px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════════ */

#videoModal,
#imageModal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
  touch-action: none;
}

#imageModal {
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem;
}

@media (min-width: 640px) {
  #imageModal {
    padding: 2rem;
  }
}

#videoModal.is-flex,
#imageModal.is-flex,
#videoModal.flex,
#imageModal.flex {
  display: flex !important;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.625rem;
  transition: all 0.15s ease;
  z-index: 10;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.media-zoom-stage {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

#videoModal .media-zoom-stage {
  flex: 1;
  min-height: 0;
  width: 100%;
  position: relative;
}

#modalVideo,
#modalImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#modalImage {
  user-select: none;
  -webkit-user-select: none;
}

.video-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-loader.is-visible {
  opacity: 1;
}

.video-loader.is-hidden {
  opacity: 0;
}

.video-loader-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 9999px;
  animation: video-loader-spin 0.8s linear infinite;
}

@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#playerBar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#currentTime,
#duration {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  width: 2.5rem;
}

#currentTime {
  text-align: right;
}

.progress-bar,
#progressBar {
  flex: 1;
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
}

#progressFill {
  height: 100%;
  background: var(--aqua-500);
  border-radius: 9999px;
  pointer-events: none;
  width: 0%;
}

#progressThumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background: #fff;
  border-radius: 9999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
  left: 0%;
}

.progress-bar:hover #progressThumb,
#progressBar:hover #progressThumb {
  opacity: 1;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-btn {
  color: #fff;
  transition: color 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}

.player-btn:hover {
  color: var(--aqua-500);
}

.player-btn--muted {
  color: rgba(255, 255, 255, 0.7);
}

.player-btn--muted:hover {
  color: #fff;
}

.player-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

.player-btn--muted svg {
  width: 1.25rem;
  height: 1.25rem;
}

#volumeSlider {
  width: 5rem;
  accent-color: var(--aqua-500);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   Integration / sensors section helpers
   ═══════════════════════════════════════════════════════════════ */

.section-header-block {
  text-align: center;
  margin-bottom: 1rem;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .section-header-block {
    margin-bottom: 2rem;
  }
}

.section-header-block .section-title {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-header-block .section-title {
    margin-bottom: 1rem;
  }
}

.section-header-block .section-desc {
  max-width: none;
  margin-bottom: 0;
}

#sensors .section-inner {
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  #sensors .section-inner {
    padding-bottom: 3.5rem;
  }
}

@media (min-width: 768px) {
  #sensors .section-inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

#sensors .section-title {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  #sensors .section-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  #sensors .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  #sensors .section-title {
    font-size: 3rem;
    line-height: 1;
  }
}

#sensors .section-desc {
  margin-bottom: 1.25rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  #sensors .section-desc {
    margin-bottom: 1.5rem;
  }
}

/* Dashboard / digital-twin media padding */
.section--split-42 > .split-media {
  min-height: 46svh;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .section--split-42 > .split-media {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .section--split-42 > .split-media {
    min-height: 0;
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section--split-42 > .split-media {
    padding: 3.5rem;
  }
}

/* Extra orbs inside media panels */
.split-media .decor-orb--tl {
  top: -6rem;
  left: -6rem;
  right: auto;
}

.split-media .decor-orb--br {
  bottom: -8rem;
  right: -5rem;
  left: auto;
  width: 28rem;
  height: 28rem;
}

.split-media--gradient .decor-orb {
  filter: blur(100px);
}

.split-media--gradient .decor-orb--tl {
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(2, 62, 138, 0.1);
  filter: blur(100px);
}

.split-media--gradient .decor-orb--br {
  bottom: 25%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: rgba(3, 4, 94, 0.2);
  filter: blur(120px);
}

/* Red-tinted orb for balls section */
.decor-orb--red {
  bottom: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(248, 113, 113, 0.1);
  filter: blur(64px);
  border-radius: 9999px;
  position: absolute;
  pointer-events: none;
}

.decor-orb--charcoal {
  bottom: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(51, 51, 51, 0.1);
  filter: blur(64px);
  border-radius: 9999px;
  position: absolute;
  pointer-events: none;
}

/* Opacity helpers used by JS */
.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.pointer-events-none {
  pointer-events: none;
}

/* Legacy modal enter */
.modal-enter {
  opacity: 0;
  transform: scale(0.95);
}

.modal-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s, transform 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM MOBILE OVERRIDES (from former style block)
   ═══════════════════════════════════════════════════════════════ */

/* Hide forced line breaks in headings on small screens */
@media (max-width: 639px) {
  h1 br,
  h2 br {
    display: none;
  }

  .sensor-card-img {
    height: 5rem !important;
  }
}

@media (max-width: 767px) {
  #main-scroll {
    overflow-x: hidden;
    touch-action: pan-y;
  }

  #main-scroll,
  main > .section,
  main > section {
    overflow-x: hidden;
  }

  main > .section:not(#contact):not(.section--dark),
  main > section:not(#contact) {
    min-height: auto !important;
    height: auto !important;
  }

  #integration,
  #sensors,
  .section--center {
    justify-content: flex-start !important;
  }

  /* Section inners — more vertical padding */
  .section-inner,
  #integration > .section-inner,
  #sensors > .section-inner {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  #sensors > .section-inner {
    padding-bottom: 5rem !important;
  }

  /* Split text panels — airy padding */
  main > .section .split-text,
  main > section .split-text,
  .split-text {
    padding-top: 2.75rem !important;
    padding-bottom: 2rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  main > .section > .split-media,
  main > section > div[class*="min-h-"][class*="svh"] {
    min-height: auto !important;
  }

  #contact > .section-inner,
  #contact .contact-inner {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Hero */
  #hero .split-text,
  #hero .hero-text-panel {
    min-height: auto !important;
    padding-top: 4.5rem !important;
    padding-bottom: 2rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  #hero .badge {
    margin-bottom: 1.5rem !important;
  }

  #hero .section-title,
  #hero .hero-text-panel h1 {
    margin-bottom: 1.5rem !important;
  }

  #hero .section-desc,
  #hero .hero-text-panel p {
    margin-bottom: 2rem !important;
  }

  #hero > .split-media,
  #hero > .split-media--dark,
  #hero > div:last-child {
    height: 42svh !important;
    min-height: 220px;
  }

  /* Typography rhythm */
  .section-label {
    margin-bottom: 1rem !important;
  }

  .section-title {
    margin-bottom: 1.25rem !important;
    line-height: 1.25 !important;
  }

  .section-desc {
    margin-bottom: 2rem !important;
    line-height: 1.65 !important;
  }

  .step-marker {
    margin-bottom: 1.5rem !important;
    gap: 1rem !important;
  }

  /* Cards & feature lists */
  .sensor-grid {
    gap: 1rem !important;
  }

  .sensor-card {
    padding: 1.25rem !important;
  }

  .sensor-card-img {
    margin-bottom: 1rem !important;
  }

  .sensor-card-title {
    margin-bottom: 0.5rem !important;
  }

  .feature-list {
    gap: 1.5rem !important;
  }

  .feature-item {
    gap: 1rem !important;
  }

  .feature-title {
    margin-bottom: 0.375rem !important;
  }

  .info-cards {
    gap: 1rem !important;
  }

  .info-card {
    padding: 1.25rem !important;
  }

  .info-card-title {
    margin-bottom: 0.625rem !important;
  }

  .carousel-nav {
    margin-top: 1.25rem !important;
    gap: 1rem !important;
  }

  .contact-actions {
    gap: 1rem !important;
  }

  .contact-card {
    padding: 1.25rem 1.25rem !important;
  }

  /* Partners */
  .split-mobile-section,
  #partners.split-mobile-section,
  #partners {
    min-height: auto !important;
    height: auto !important;
    flex-direction: column !important;
    overflow-x: hidden;
  }

  .split-mobile-section > .split-text,
  .split-mobile-section > .split-media,
  .split-mobile-section > .split-text-panel,
  .split-mobile-section > .split-media-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    flex: 0 0 auto !important;
  }

  .split-mobile-section .split-text,
  .split-mobile-section .split-text-panel {
    padding-top: 4rem !important;
    padding-bottom: 1.75rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    justify-content: flex-start;
  }

  .split-mobile-section .split-media,
  .split-mobile-section .split-media-panel {
    height: 40svh;
    min-height: 220px;
    max-height: 340px;
  }

  #partners,
  #partners .split-media,
  #partners .split-media-panel {
    position: relative;
  }

  #partner-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
    z-index: 25;
    margin-top: 0;
    background: transparent;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .split-mobile-section h2,
  .split-mobile-section .section-title {
    font-size: 1.625rem;
    line-height: 1.25;
    margin-bottom: 1rem !important;
  }

  .split-mobile-section .split-desc,
  .split-mobile-section #partner-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  #partner-copy {
    margin-top: 0.5rem;
  }

  #partner-name {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.75rem !important;
  }

  #partner-location {
    margin-bottom: 0.625rem;
  }

  .media-overlay-caption,
  .play-caption.media-overlay-caption {
    display: none;
  }

  .split-mobile-section .split-cta,
  .split-mobile-section .cta-link {
    font-size: 0.875rem;
  }

  /* Extra air above mobile steps bar */
  #mobile-steps-bar {
    padding-top: 0.875rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Zoom cursor on zoomable images */
main img:not([data-no-zoom]) {
  cursor: zoom-in;
}

/* Modal touch / zoom stage (also defined above; reinforced here) */
#imageModal,
#videoModal {
  overflow: hidden;
  touch-action: none;
}

#imageModal .media-zoom-stage,
#videoModal .media-zoom-stage {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

/* Feeder video overlay caption */
.feeder-video-overlay {
  margin-top: 1rem;
  padding: 0 1.25rem;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

@media (min-width: 640px) {
  .feeder-video-overlay {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.group:hover .feeder-video-overlay,
.carousel-slide:hover .feeder-video-overlay {
  opacity: 1;
}
/* ═══════════════════════════════════════════════════════════════
   HTML class aliases + specificity fixes (semantic markup bridge)
   ═══════════════════════════════════════════════════════════════ */

/* Scheme rail: visibility driven by .is-invisible only */
#scheme-rail {
  opacity: 1;
  pointer-events: auto;
}
#scheme-rail.is-invisible {
  opacity: 0;
  pointer-events: none;
}

/* Modals: opacity driven by state classes */
#videoModal.is-visible-opacity,
#imageModal.is-visible-opacity {
  opacity: 1;
}
#videoModal.is-invisible,
#imageModal.is-invisible {
  opacity: 0;
}

/* Hero text panel = split-text layout */
.hero-text-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  z-index: 10;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px) {
  .hero-text-panel {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {
  .hero-text-panel {
    width: 50%;
    height: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero-text-panel {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.section-title--hero {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--charcoal-900);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .section-title--hero {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section-title--hero {
    font-size: 3.75rem;
  }
}
@media (min-width: 1280px) {
  .section-title--hero {
    font-size: 4.5rem;
    line-height: 1;
  }
}

.cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Step marker label aliases used in HTML */
.step-label {
  color: var(--aqua-500);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.125rem;
}
@media (min-width: 640px) {
  .step-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}
.step-desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal-900);
  display: none;
}
@media (min-width: 640px) {
  .step-desc {
    display: block;
    font-size: 1rem;
  }
}

.section-header {
  text-align: left;
  margin-bottom: 1rem;
  max-width: 48rem;
}
.section-header--center {
  text-align: center;
  margin-bottom: 1rem;
  max-width: 48rem;
}
.section-header .section-desc,
.section-header--center .section-desc {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-header,
  .section-header--center {
    margin-bottom: 1.5rem;
  }
}

.mobile-step-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.375rem;
  background: var(--aqua-100);
  padding: 0.125rem 0.5rem;
  font-weight: 600;
  color: var(--aqua-600);
  text-decoration: underline;
  text-decoration-color: var(--aqua-500);
  transition: background 0.15s ease;
}
.inline-link:hover {
  background: var(--aqua-200);
}

/* Contact extras */
.contact-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 119, 182, 0.3);
}
.decor-orb--contact {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background: rgba(3, 4, 94, 0.1);
  border-radius: 9999px;
  filter: blur(90px);
  pointer-events: none;
}
@media (min-width: 768px) {
  .decor-orb--contact {
    width: 800px;
    height: 800px;
    filter: blur(120px);
  }
}
.contact-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48rem;
  padding: 3rem 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .contact-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {
  .contact-inner {
    padding: 5rem 3rem;
  }
}
.section-title--light {
  color: #fff !important;
}
.section-desc--light {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-left: auto;
  margin-right: auto;
}
.contact-card-icon--light {
  background: rgba(255, 255, 255, 0.2) !important;
}
.contact-card-label--light {
  color: rgba(255, 255, 255, 0.7) !important;
}
.contact-card-arrow--light {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Player bar aliases */
.player-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.player-progress-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.player-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  width: 2.5rem;
}
#currentTime.player-time {
  text-align: right;
}
.player-progress {
  flex: 1;
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
}
.player-progress-fill {
  height: 100%;
  background: var(--aqua-500);
  border-radius: 9999px;
  pointer-events: none;
}
.player-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background: #fff;
  border-radius: 9999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.player-progress:hover .player-progress-thumb {
  opacity: 1;
}
.player-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.player-icon--lg {
  width: 1.75rem;
  height: 1.75rem;
}
.volume-slider {
  width: 5rem;
  accent-color: var(--aqua-500);
  cursor: pointer;
}
.player-spacer {
  flex: 1;
}

/* Partner nav helpers */
.partner-nav {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.25rem;
  z-index: 20;
}
@media (min-width: 768px) {
  .partner-nav {
    bottom: 2rem;
  }
}
.partner-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero video cover full-bleed */
#hero .split-media.video-cover {
  height: 48svh;
  min-height: 200px;
  padding: 0;
  background: var(--charcoal-950);
  cursor: pointer;
}
@media (min-width: 768px) {
  #hero .split-media.video-cover {
    height: 100%;
    min-height: 0;
  }
}
#hero .video-cover video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Split text panel alias (partners) */
.split-text-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  background: #fff;
  z-index: 10;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .split-text-panel {
    padding: 3rem 2rem;
  }
}
@media (min-width: 768px) {
  .split-text-panel {
    width: 50%;
    height: 100%;
    padding: 0 4rem;
  }
}
@media (min-width: 1024px) {
  .split-text-panel {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* Hide #contact ::before if we also have contact-top-line */
#contact::before {
  display: none;
}
