:root {
  color-scheme: dark;
  --background: #080609;
  --background-elevated: #0e0b10;
  --surface: rgba(23, 22, 27, 0.82);
  --surface-solid: #151319;
  --surface-secondary: rgba(255, 255, 255, 0.055);
  --text-primary: #fff8fb;
  --text-secondary: #d2c5cc;
  --text-muted: #9f929a;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 45, 92, 0.4);
  --accent: #f51d4f;
  --accent-secondary: #a90f34;
  --accent-tertiary: #ff7ca0;
  --accent-soft: rgba(245, 29, 79, 0.14);
  --accent-tint: rgba(245, 29, 79, 0.24);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  --soft-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(8, 6, 9, 0.72);
  --hero-radial: radial-gradient(circle at 72% 45%, rgba(245, 29, 79, 0.2), transparent 32%),
    radial-gradient(circle at 10% 12%, rgba(168, 15, 52, 0.18), transparent 30%);
  --cta-gradient: linear-gradient(135deg, #ff315d 0%, #d11142 52%, #ff5d86 100%);
  --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  --hero-building: linear-gradient(180deg, rgba(255, 74, 111, 0.52), rgba(38, 31, 38, 0.92));
  --container: 1380px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --transition: 220ms ease;
  font-family: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --background: #f5f7fb;
  --background-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --surface-secondary: rgba(29, 52, 96, 0.055);
  --text-primary: #101a38;
  --text-secondary: #3e4c68;
  --text-muted: #647087;
  --border: rgba(20, 31, 61, 0.12);
  --border-strong: rgba(232, 23, 85, 0.3);
  --accent: #e81755;
  --accent-secondary: #7145d6;
  --accent-tertiary: #2474d8;
  --accent-soft: rgba(232, 23, 85, 0.09);
  --accent-tint: rgba(36, 116, 216, 0.09);
  --shadow: 0 22px 60px rgba(22, 34, 66, 0.1);
  --soft-shadow: 0 10px 30px rgba(22, 34, 66, 0.075);
  --header-bg: rgba(255, 255, 255, 0.88);
  --hero-radial: radial-gradient(circle at 76% 34%, rgba(36, 116, 216, 0.09), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(232, 23, 85, 0.075), transparent 29%);
  --cta-gradient: linear-gradient(135deg, #f51d4f 0%, #d31347 58%, #8a2cff 100%);
  --card-gradient: linear-gradient(145deg, #ffffff, #fafbfc);
  --hero-building: linear-gradient(180deg, rgba(88, 146, 226, 0.45), rgba(255, 255, 255, 0.96));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text-primary);
  font-family: inherit;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: var(--hero-radial), var(--background);
  transition: background var(--transition);
}

body::after {
  position: fixed;
  inset: auto 0 0 0;
  z-index: -1;
  height: 42vh;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, var(--accent-soft));
  opacity: 0.42;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--text-primary);
  padding: 10px 14px;
  border: 1px solid var(--border);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

main > .section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.audience-section,
.ecosystem-section,
.products-section {
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: center;
  padding-block: clamp(48px, 6vh, 72px);
}

.audience-section > .container,
.ecosystem-section > .container,
.products-section > .container {
  min-width: 0;
}

section[id] {
  scroll-margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.13);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo-wrap {
  position: relative;
  display: block;
  width: 174px;
  height: 34px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  transition: opacity var(--transition);
}

:root[data-theme="dark"] .brand-logo-dark,
:root[data-theme="light"] .brand-logo-light {
  opacity: 1;
}

.brand-mark,
.final-brand {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cta-gradient);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 25px var(--accent-tint);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
  transition: color var(--transition);
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.header-actions,
.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-header-cta {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0 22px;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.93rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition),
    box-shadow var(--transition), color var(--transition);
}

.button::after {
  content: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible,
.audience-card summary:focus-visible {
  outline: 3px solid var(--accent-tertiary);
  outline-offset: 3px;
}

.button-primary {
  border-color: transparent;
  background: var(--cta-gradient);
  color: #fff;
  box-shadow: 0 14px 34px var(--accent-tint);
}

.button-primary:hover {
  box-shadow: 0 18px 44px var(--accent-tint);
}

.button-secondary,
.button-ghost {
  background: var(--surface-secondary);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--border-strong);
  color: var(--accent);
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
}

.theme-toggle,
.menu-toggle {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.theme-toggle {
  width: 74px;
  gap: 8px;
}

.toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0.48;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.toggle-sun {
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 16%, transparent);
}

.toggle-moon {
  border: 2px solid currentColor;
}

:root[data-theme="dark"] .toggle-moon,
:root[data-theme="light"] .toggle-sun {
  opacity: 1;
  transform: scale(1.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-drawer {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--background);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 76% 48%, var(--accent-soft), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(520px, 43vw, 620px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(54%, 680px);
  padding-block: 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--text-secondary);
  font-size: 1.22rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  pointer-events: none;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -34px;
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
  box-shadow: var(--shadow);
}

.hero-proof > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: color-mix(in srgb, var(--surface-solid) 94%, transparent);
}

.hero-proof p,
.hero-proof small {
  margin: 0;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof small {
  margin-top: 3px;
  color: var(--text-muted);
}

.proof-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.image-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--background);
  box-shadow: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}

.image-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--background) 0%, color-mix(in srgb, var(--background) 96%, transparent) 27%, color-mix(in srgb, var(--background) 70%, transparent) 43%, transparent 64%),
    linear-gradient(0deg, var(--background) 0%, transparent 24%, transparent 90%, color-mix(in srgb, var(--background) 28%, transparent) 100%);
  content: "";
}

:root[data-theme="light"] .image-stage::after {
  background:
    linear-gradient(90deg, #f6f9ff 0%, rgba(246, 249, 255, 0.96) 27%, rgba(246, 249, 255, 0.62) 44%, transparent 66%),
    linear-gradient(0deg, #f6f9ff 0%, transparent 24%, transparent 90%, rgba(246, 249, 255, 0.3) 100%);
}

.theme-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity var(--transition), transform var(--transition);
}

:root[data-theme="dark"] .theme-image-dark,
:root[data-theme="light"] .theme-image-light {
  opacity: 1;
  transform: scale(1);
}

.mini-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 54%, #201017), color-mix(in srgb, var(--surface-solid) 90%, transparent));
  border: 1px solid var(--border-strong);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 22px var(--accent-tint);
}

:root[data-theme="light"] .mini-icon {
  background: color-mix(in srgb, #fff 90%, var(--accent));
  color: var(--accent);
  box-shadow: inset 0 1px 0 #fff, 0 10px 24px var(--accent-tint);
}

.mini-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
}

.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-card,
.product-card,
.flow-node,
.capsule,
.final-cta {
  border: 1px solid var(--border);
  background: var(--card-gradient);
  box-shadow: var(--soft-shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition),
    background var(--transition);
}

.audience-card,
.product-card {
  border-radius: var(--radius-lg);
}

.audience-card {
  min-height: 262px;
  padding: 28px;
  min-width: 0;
}

.audience-card:hover,
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-index {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.audience-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.audience-card h3,
.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.audience-card p,
.product-card p,
.final-cta p {
  color: var(--text-secondary);
}

.audience-card ul,
.product-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--text-secondary);
  list-style: none;
}

.audience-card li,
.product-card li {
  position: relative;
  padding-left: 18px;
}

.audience-card li::before,
.product-card li::before {
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.ecosystem-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.72fr) minmax(220px, 1fr);
  grid-template-rows: repeat(3, minmax(100px, auto));
  align-items: center;
  gap: 24px 52px;
  max-width: 1040px;
  min-height: 430px;
  margin: 30px auto 0;
  isolation: isolate;
}

.section-summary {
  max-width: 720px;
  margin: -24px auto 0;
  color: var(--text-secondary);
  text-align: center;
}

.flow-connections {
  position: absolute;
  inset: 12%;
  z-index: -1;
  width: 76%;
  height: 76%;
  overflow: visible;
}

.flow-connections line {
  stroke: var(--border-strong);
  stroke-width: 0.45;
  stroke-dasharray: 2.2 2.2;
  vector-effect: non-scaling-stroke;
}

.flow-hub {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  justify-items: center;
  gap: 5px;
  z-index: 2;
  color: var(--text-primary);
  text-align: center;
}

.flow-hub-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--cta-gradient);
  box-shadow: 0 0 44px color-mix(in srgb, var(--accent) 38%, transparent);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
}

.flow-hub strong {
  font-size: 1rem;
}

.flow-hub small {
  color: var(--text-secondary);
}

.flow-node {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 2;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-weight: 900;
  text-align: center;
}

.flow-node-1 {
  grid-column: 1;
  grid-row: 1;
}

.flow-node-2 {
  grid-column: 3;
  grid-row: 1;
}

.flow-node-3 {
  grid-column: 1;
  grid-row: 3;
}

.flow-node-4 {
  grid-column: 3;
  grid-row: 3;
}

.motion-ready .ecosystem-flow.reveal .flow-hub,
.motion-ready .ecosystem-flow.reveal .flow-node {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .ecosystem-flow.reveal.is-visible .flow-hub,
.motion-ready .ecosystem-flow.reveal.is-visible .flow-node {
  opacity: 1;
  transform: scale(1);
}

.motion-ready .ecosystem-flow.reveal.is-visible .flow-node-1 { transition-delay: 80ms; }
.motion-ready .ecosystem-flow.reveal.is-visible .flow-node-2 { transition-delay: 140ms; }
.motion-ready .ecosystem-flow.reveal.is-visible .flow-node-3 { transition-delay: 200ms; }
.motion-ready .ecosystem-flow.reveal.is-visible .flow-node-4 { transition-delay: 260ms; }

.product-capsules {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.capsule {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text-secondary);
  font-weight: 800;
}

.capsule::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.products-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(286px, 22vw, 310px);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(111, 137, 176, 0.28) transparent;
  scrollbar-width: thin;
}

.products-grid::-webkit-scrollbar {
  height: 3px;
}

.products-grid::-webkit-scrollbar-track {
  background: transparent;
}

.products-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(111, 137, 176, 0.28);
}

.products-grid:hover::-webkit-scrollbar-thumb {
  background: rgba(111, 137, 176, 0.5);
}

.product-scroll-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -22px 0 18px;
}

.scroll-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), opacity var(--transition);
}

.scroll-button:hover:not(:disabled),
.scroll-button:focus-visible {
  border-color: var(--border-strong);
  background: var(--accent-soft);
  color: var(--accent);
}

.scroll-button:focus-visible {
  outline: 3px solid var(--accent-tertiary);
  outline-offset: 3px;
}

.scroll-button:disabled {
  cursor: default;
  opacity: 0.3;
}

.scroll-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-card.is-primary {
  border-color: var(--border-strong);
  background:
    radial-gradient(circle at 78% 14%, var(--accent-tint), transparent 31%),
    var(--card-gradient);
}

.product-visual {
  position: relative;
  width: 100%;
  height: 138px;
  margin-bottom: 18px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent 68%);
  overflow: hidden;
  isolation: isolate;
}

.product-visual::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0 49%, var(--border) 50% 51%, transparent 52%),
    linear-gradient(0deg, transparent 0 49%, var(--border) 50% 51%, transparent 52%);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  content: "";
}

.product-visual::after {
  position: absolute;
  right: 7%;
  top: 14%;
  z-index: -1;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-tint), transparent 68%);
  filter: blur(8px);
  content: "";
}

.product-visual .mini-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--cta-gradient);
  color: #fff;
  box-shadow: 0 12px 28px var(--accent-tint), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.product-visual .mini-icon svg {
  width: 28px;
  height: 28px;
}

.product-shape {
  position: absolute;
  left: 12%;
  bottom: 10px;
  width: 48%;
  height: 58%;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--surface-solid) 78%, transparent);
}

.product-visual-city .product-shape {
  clip-path: polygon(0 100%, 0 42%, 16% 42%, 16% 18%, 34% 18%, 34% 56%, 52% 56%, 52% 0, 72% 0, 72% 34%, 88% 34%, 88% 12%, 100% 12%, 100% 100%);
  border: 0;
  background: var(--hero-building);
}

.product-visual-cabinet .product-shape {
  background:
    linear-gradient(var(--accent) 0 0) 14px 14px / 32% 5px no-repeat,
    linear-gradient(var(--border-strong) 0 0) 14px 28px / 70% 3px no-repeat,
    linear-gradient(var(--border-strong) 0 0) 14px 40px / 52% 3px no-repeat,
    color-mix(in srgb, var(--surface-solid) 84%, transparent);
}

.product-visual-dashboard .product-shape {
  border: 0;
  background:
    linear-gradient(to top, var(--accent) 0 58%, transparent 58%) 8% 100% / 14% 70% no-repeat,
    linear-gradient(to top, var(--accent-tertiary) 0 82%, transparent 82%) 31% 100% / 14% 70% no-repeat,
    linear-gradient(to top, var(--accent) 0 42%, transparent 42%) 54% 100% / 14% 70% no-repeat,
    linear-gradient(to top, var(--accent-tertiary) 0 68%, transparent 68%) 77% 100% / 14% 70% no-repeat;
}

.product-visual-map .product-shape {
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 22%, var(--accent) 23% 25%, transparent 26% 48%, var(--border-strong) 49% 51%, transparent 52%),
    var(--accent-soft);
  transform: perspective(180px) rotateX(55deg);
}

.product-visual-market .product-shape {
  background:
    linear-gradient(var(--border-strong) 0 0) 12px 16px / calc(100% - 24px) 2px no-repeat,
    linear-gradient(var(--border-strong) 0 0) 12px 34px / calc(100% - 24px) 2px no-repeat,
    repeating-linear-gradient(90deg, var(--accent-soft) 0 12px, transparent 12px 18px);
}

.product-visual-cups .product-shape {
  left: 21%;
  width: 32%;
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(180deg, var(--accent-tint), var(--surface-solid));
}

.product-card h3 {
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.product-label {
  display: inline-flex;
  align-self: flex-start;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: var(--surface-secondary);
  padding: 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-link::after {
  content: "→";
}

.product-link:hover,
.product-link:focus-visible {
  color: var(--text-primary);
}

.final-section {
  padding-top: clamp(28px, 5vw, 70px);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 42px);
}

.final-cta::before {
  position: absolute;
  inset: auto 0 0 auto;
  width: 38%;
  height: 100%;
  background: radial-gradient(circle at bottom right, var(--accent-tint), transparent 70%);
  content: "";
  pointer-events: none;
}

.final-cta p {
  max-width: 690px;
  margin: 12px 0 0;
  font-size: 1.05rem;
}

.final-actions {
  position: relative;
  z-index: 1;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-inner p {
  margin-bottom: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 22px), 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-only {
    display: none;
  }

  .hero-copy {
    width: min(59%, 640px);
  }

  .hero-proof {
    margin-top: 0;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-drawer {
    position: fixed;
    inset: 76px 24px auto 24px;
    display: block;
    max-height: calc(100vh - 96px);
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-solid);
    box-shadow: var(--shadow);
    padding: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav,
  .mobile-actions {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    min-height: 44px;
    border-radius: 12px;
    padding: 11px 12px;
    color: var(--text-secondary);
    font-weight: 800;
  }

  .mobile-actions {
    margin-top: 14px;
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 68px;
  }

  .audience-section,
  .ecosystem-section,
  .products-section {
    min-height: calc(100svh - 68px);
    padding-block: clamp(42px, 6vh, 58px);
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  section[id] {
    scroll-margin-top: 68px;
  }

  .brand-logo-wrap {
    width: 142px;
    height: 28px;
  }

  .header-actions {
    gap: 8px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-drawer {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: block;
    max-height: calc(100vh - 86px);
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface-solid);
    box-shadow: var(--shadow);
    padding: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav,
  .mobile-actions {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    min-height: 44px;
    border-radius: 12px;
    padding: 11px 12px;
    color: var(--text-secondary);
    font-weight: 800;
  }

  .mobile-actions {
    margin-top: 14px;
  }

  .section {
    padding: clamp(58px, 14vw, 84px) 0;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    display: grid;
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    padding-block: 0;
  }

  h1 {
    font-size: 2.62rem;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: clamp(250px, 58vw, 360px);
    margin-top: 20px;
    margin-left: 0;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .hero-proof > div {
    padding: 13px 16px;
  }

  .hero-proof > div + div {
    border-top: 1px solid var(--border);
  }

  .image-stage {
    border-radius: 0;
    mask-image: linear-gradient(0deg, transparent 0, #000 9%, #000 92%, transparent 100%);
  }

  .image-stage::after,
  :root[data-theme="light"] .image-stage::after {
    background: linear-gradient(0deg, var(--background) 0%, transparent 13%, transparent 88%, var(--background) 100%);
  }

  .theme-image {
    object-fit: contain;
    object-position: center;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .audience-card {
    min-height: auto;
    padding: 22px;
  }

  .ecosystem-flow {
    grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
    grid-template-rows: repeat(3, minmax(92px, auto));
    gap: 16px 10px;
    min-height: 390px;
  }

  .flow-node {
    min-width: 0;
    min-height: 86px;
    flex-direction: column;
    gap: 7px;
    padding: 12px 8px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .flow-hub-mark {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .flow-hub strong {
    font-size: 0.78rem;
  }

  .flow-hub small {
    display: none;
  }

  .capsule {
    flex: 0 0 auto;
  }

  .products-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .product-scroll-controls {
    display: none;
  }

  .product-card {
    min-height: 330px;
    padding: 18px;
  }

  .product-visual {
    height: 128px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.08rem;
    line-height: 1.08;
  }
}

@media (max-width: 520px) {

  .brand-logo-wrap {
    width: 128px;
    height: 25px;
  }

  .theme-toggle {
    width: 62px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .section-heading {
    grid-template-columns: 32px 1fr 32px;
    gap: 12px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 1.75rem;
  }

  .hero-visual {
    min-height: 230px;
  }

  .products-grid {
    gap: 10px;
  }

  .product-card {
    min-height: 288px;
    padding: 14px;
  }

  .product-visual {
    height: 92px;
    margin-bottom: 12px;
  }

  .product-visual .mini-icon {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .product-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-card p {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .product-card h3 {
    font-size: 0.9rem;
  }

  .product-label {
    min-height: 26px;
    font-size: 0.68rem;
  }

  .product-link {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Landing v2 */
html {
  scroll-snap-type: none;
}

.landing-v2 main > section {
  scroll-snap-align: none;
}

.landing-v2 .site-header {
  border-bottom-color: var(--border);
}

.v2-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 0;
  background:
    radial-gradient(circle at 76% 24%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 35%),
    linear-gradient(180deg, color-mix(in srgb, var(--background) 92%, transparent), var(--background));
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr);
  min-height: 650px;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
}

.v2-hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 80px;
}

.v2-hero h1 {
  max-width: 670px;
  margin: 0 0 24px;
  font-size: clamp(3.1rem, 4.6vw, 5rem);
  line-height: 1.02;
}

.v2-hero h1 span {
  color: var(--accent);
}

.v2-hero .hero-lead {
  max-width: 600px;
  font-size: 1.12rem;
  line-height: 1.7;
}

.v2-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.v2-ecosystem-visual {
  position: absolute;
  inset: 0 -8% 24% -16%;
  display: block;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 86%, transparent 100%);
}

.v2-ecosystem-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--background), transparent 24%, transparent 88%, var(--background));
  content: "";
  pointer-events: none;
}

.v2-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity var(--transition);
}

:root[data-theme="dark"] .v2-hero-img-dark,
:root[data-theme="light"] .v2-hero-img-light {
  opacity: 1;
}

.workspace-preview {
  position: absolute;
  right: 0;
  bottom: 22px;
  z-index: 4;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  width: min(94%, 650px);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-solid) 94%, transparent);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5), 0 0 44px var(--accent-soft);
  backdrop-filter: blur(20px);
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid var(--border);
  padding: 20px 12px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.workspace-sidebar strong {
  margin: 0 8px 12px;
  color: var(--text-primary);
  font-size: 0.78rem;
}

.workspace-sidebar span {
  border-radius: 6px;
  padding: 8px 9px;
}

.workspace-sidebar .is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.workspace-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 20px;
}

.workspace-top {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.workspace-top span {
  color: var(--accent);
  font-weight: 900;
}

.workspace-orders {
  min-width: 0;
}

.workspace-orders small {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.workspace-orders p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 10px;
  font-size: 0.72rem;
}

.workspace-orders p span {
  color: var(--accent);
}

.workspace-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 49%, var(--border) 50%, transparent 51%) 0 0 / 34px 34px,
    linear-gradient(0deg, transparent 49%, var(--border) 50%, transparent 51%) 0 0 / 34px 34px,
    var(--surface-secondary);
}

.workspace-map span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
  transform: rotate(-45deg);
}

.workspace-map span:nth-child(1) { left: 24%; top: 32%; }
.workspace-map span:nth-child(2) { left: 62%; top: 54%; }
.workspace-map span:nth-child(3) { left: 76%; top: 24%; }

.v2-proof {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
}

.v2-proof > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  padding: 18px 24px;
}

.v2-proof > div + div {
  border-left: 1px solid var(--border);
}

.v2-proof > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.v2-proof p,
.v2-proof small {
  margin: 0;
}

.v2-proof strong,
.v2-proof small {
  display: block;
}

.v2-proof small {
  margin-top: 2px;
  color: var(--text-muted);
}

.v2-section {
  padding: clamp(84px, 8vw, 128px) 0;
}

.v2-section + .v2-section {
  border-top: 1px solid var(--border);
}

.v2-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.v2-section-head .eyebrow {
  margin-bottom: 10px;
}

.v2-section-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
}

.v2-section-head > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.04rem;
}

.v2-products .product-scroll-controls {
  margin: -8px 0 18px;
}

.v2-products .products-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: inline mandatory;
}

.v2-products .product-card {
  flex: 0 0 300px;
  min-height: 400px;
  border-color: var(--border);
  background: linear-gradient(155deg, color-mix(in srgb, var(--surface-solid) 92%, transparent), color-mix(in srgb, var(--accent-soft) 35%, var(--surface-solid)));
}

.v2-products .product-card:first-child {
  flex-basis: 460px;
}

.v2-products .product-card:hover {
  transform: translateY(-4px);
}

.v2-products .product-visual {
  height: 170px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--border-strong), var(--accent));
  content: "";
}

.process-grid li {
  position: relative;
  z-index: 1;
  padding: 0 clamp(18px, 2vw, 32px) 0 0;
}

.process-grid li > span {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--background-elevated);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 0 30px var(--accent-soft);
}

.process-grid strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.12rem;
}

.process-grid p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.v2-audience .audience-grid {
  gap: 14px;
}

.v2-audience .audience-card {
  min-height: 260px;
  border-color: var(--border);
  padding: 22px;
  background: color-mix(in srgb, var(--surface-solid) 94%, transparent);
}

.v2-audience .audience-card:hover {
  transform: translateY(-4px);
}

.v2-audience .audience-card h3 {
  font-size: 1.08rem;
}

.v2-audience .audience-card p,
.v2-audience .audience-card li {
  font-size: 0.86rem;
}

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

.benefits-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 180px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  background: color-mix(in srgb, var(--surface-solid) 94%, transparent);
}

.benefits-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.6rem;
}

.benefits-grid h3 {
  margin: 0 0 9px;
  font-size: 1.1rem;
}

.benefits-grid p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.v2-final {
  padding: 32px 0 0;
}

.v2-final-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto minmax(220px, 0.7fr);
  align-items: center;
  gap: 34px;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 68px);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent-soft) 68%, var(--surface-solid)), var(--surface-solid) 58%, color-mix(in srgb, var(--accent-soft) 55%, var(--surface-solid)));
}

.v2-final h2 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
}

.v2-final p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.v2-final-mark {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  justify-self: end;
  border: 2px solid var(--accent);
  border-radius: 28px;
  color: #fff;
  font-size: 7rem;
  font-weight: 900;
  text-shadow: 0 0 24px var(--accent);
  box-shadow: inset 0 0 44px var(--accent-soft), 0 0 48px var(--accent-tint);
  transform: rotate(45deg);
}

.v2-final-mark span {
  display: block;
  transform: rotate(-45deg);
}

.v2-footer {
  margin-top: 48px;
  padding-block: 38px;
}

@media (max-width: 1120px) {
  .v2-hero-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(470px, 1.1fr);
  }

  .workspace-preview {
    width: 100%;
  }

  .v2-final-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .v2-final-mark {
    display: none;
  }
}

@media (max-width: 840px) {
  .v2-hero {
    padding-top: 28px;
  }

  .v2-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 6px;
  }

  .v2-hero-copy {
    padding-bottom: 8px;
  }

  .v2-hero h1 {
    max-width: 620px;
    font-size: clamp(2.35rem, 8vw, 3.5rem);
  }

  .v2-hero-media {
    min-height: 480px;
  }

  .v2-ecosystem-visual {
    inset: 0 -8% 30% -8%;
  }

  .workspace-preview {
    right: 0;
    bottom: 12px;
    width: 100%;
    min-height: 235px;
  }

  .v2-proof {
    margin-top: 20px;
  }

  .v2-proof > div {
    padding: 15px;
  }

  .v2-section {
    padding: 78px 0;
  }

  .v2-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-products .products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .v2-products .product-card,
  .v2-products .product-card:first-child {
    min-height: 330px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .process-grid::before {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .v2-final-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .v2-hero h1 {
    font-size: 2.2rem;
  }

  .v2-hero .hero-lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .v2-hero-media {
    min-height: 340px;
  }

  .v2-ecosystem-visual {
    inset: 0 -12% 18% -12%;
  }

  .workspace-preview {
    display: none;
  }

  .v2-proof {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .v2-proof > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .v2-section {
    padding: 62px 0;
  }

  .v2-section-head h2 {
    font-size: 2rem;
  }

  .v2-products .products-grid {
    gap: 10px;
  }

  .v2-products .product-card,
  .v2-products .product-card:first-child {
    flex-basis: auto;
    min-height: 284px;
  }

  .v2-products .product-visual {
    height: 92px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    padding: 0;
  }

  .process-grid li > span {
    grid-row: 1 / span 2;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .process-grid strong {
    align-self: end;
  }

  .v2-audience .audience-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px;
  }

  .benefits-grid article > span {
    width: 46px;
    height: 46px;
  }

  .v2-final {
    padding-top: 16px;
  }

  .v2-final-inner {
    padding: 26px 20px;
  }

  .v2-final h2 {
    font-size: 2.3rem;
  }
}

/* Ecosystem hero */
.ecosystem-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 4.5vh, 52px) 0 30px;
  border-bottom: 1px solid rgba(117, 154, 205, 0.12);
  background:
    radial-gradient(circle at 73% 37%, rgba(41, 92, 255, 0.12), transparent 29%),
    radial-gradient(circle at 67% 44%, rgba(242, 23, 86, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(2, 7, 16, 0.98), rgba(3, 10, 21, 0.96) 58%, rgba(2, 8, 17, 0.98));
}

.ecosystem-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(51, 122, 218, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 122, 218, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 43%, #000 88%, transparent);
}

.ecosystem-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(600px, 1.22fr);
  min-height: 650px;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
}

.ecosystem-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.ecosystem-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 24px;
  border: 1px solid rgba(245, 29, 79, 0.45);
  border-radius: 999px;
  padding: 5px 12px;
  color: #ff4a75;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ecosystem-eyebrow::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.ecosystem-hero h1 {
  max-width: 590px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(3rem, 3.75vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.ecosystem-hero h1 span {
  color: #f51d4f;
}

.ecosystem-lead {
  max-width: 530px;
  margin: 28px 0 0;
  color: #b5bfce;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.7;
}

.ecosystem-hero .hero-actions {
  margin-top: 32px;
}

.ecosystem-map {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 790px;
  height: 640px;
  justify-self: end;
}

.ecosystem-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ecosystem-wires .orbit,
.ecosystem-wires .wire {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.ecosystem-wires .orbit-main {
  stroke: rgba(92, 115, 255, 0.34);
  stroke-width: 1;
  stroke-dasharray: 5 8;
}

.ecosystem-wires .orbit-future {
  stroke: rgba(77, 114, 166, 0.18);
  stroke-width: 1;
  stroke-dasharray: 2 12;
}

.ecosystem-wires .wire-active {
  stroke: url(#active-line);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 5px rgba(42, 175, 255, 0.7));
}

.ecosystem-wires .wire-future {
  stroke: rgba(94, 128, 187, 0.52);
  stroke-width: 1;
  stroke-dasharray: 5 8;
}

.ecosystem-hub {
  position: absolute;
  left: 50%;
  top: 45.6%;
  z-index: 4;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 20px rgba(245, 29, 79, 0.62)) drop-shadow(0 0 35px rgba(47, 108, 255, 0.28));
}

.ecosystem-hub::before,
.ecosystem-hub::after {
  position: absolute;
  inset: 8px;
  border: 2px solid #ff3670;
  background: rgba(21, 10, 32, 0.84);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  content: "";
}

.ecosystem-hub::after {
  inset: 18px;
  border-color: rgba(70, 132, 255, 0.7);
  background: linear-gradient(135deg, rgba(255, 31, 94, 0.18), rgba(28, 73, 168, 0.22));
}

.ecosystem-hub span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 8px #fff, 0 0 18px #ff1d5a, 0 0 36px #ff1d5a;
}

.ecosystem-node {
  position: absolute;
  z-index: 5;
  display: flex;
  width: 172px;
  flex-direction: column;
  align-items: center;
  color: #f8fbff;
  text-align: center;
}

.ecosystem-node .node-icon {
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(4, 12, 25, 0.88);
}

.ecosystem-node svg,
.ecosystem-benefit-strip svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-node div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.ecosystem-node strong {
  margin-top: 9px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.ecosystem-node small {
  margin-top: 3px;
  color: #aeb9ca;
  font-size: 0.72rem;
  line-height: 1.25;
}

.ecosystem-node em {
  margin-top: 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.active-node .node-icon {
  box-shadow: inset 0 0 18px rgba(34, 112, 255, 0.12), 0 0 18px color-mix(in srgb, currentColor 46%, transparent);
}

.node-pro {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  color: #4e8fff;
}

.node-city {
  left: 1.5%;
  top: 31%;
  color: #ae68ff;
}

.node-map {
  right: 1.5%;
  top: 31%;
  color: #08d8f4;
}

.active-node strong {
  color: #f8fbff;
}

.future-caption {
  position: absolute;
  left: 50%;
  top: 71.5%;
  z-index: 4;
  width: 62%;
  transform: translateX(-50%);
  color: #8390a4;
  text-align: center;
}

.future-caption::before,
.future-caption::after {
  display: inline-block;
  width: 24%;
  height: 1px;
  margin: 0 10px 3px;
  background: repeating-linear-gradient(90deg, rgba(94, 128, 187, 0.58) 0 5px, transparent 5px 9px);
  content: "";
}

.future-caption span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.future-node {
  top: 78%;
  width: 142px;
  color: #7184ad;
}

.future-node .node-icon {
  width: 54px;
  border-style: dashed;
  background: rgba(5, 13, 25, 0.72);
}

.future-node svg {
  width: 28px;
  height: 28px;
}

.future-node strong {
  color: #d6ddeb;
  font-size: 0.78rem;
}

.future-node small {
  min-height: 29px;
  font-size: 0.64rem;
}

.future-node em {
  color: #8494b4;
  font-size: 0.52rem;
}

.node-account { left: 2%; }
.node-market { left: 26.5%; }
.node-space { right: 26.5%; }
.node-pack { right: 2%; }

.ecosystem-benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(95, 133, 183, 0.22);
  border-radius: 8px;
  background: rgba(6, 14, 27, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.ecosystem-benefit-strip article {
  display: grid;
  min-width: 0;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
}

.ecosystem-benefit-strip article + article {
  border-left: 1px solid rgba(95, 133, 183, 0.18);
}

.ecosystem-benefit-strip span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 29, 79, 0.32);
  border-radius: 7px;
  color: #ff3d70;
  background: rgba(245, 29, 79, 0.08);
}

.ecosystem-benefit-strip article:nth-child(2) span {
  border-color: rgba(51, 148, 255, 0.34);
  color: #35a2ff;
  background: rgba(51, 148, 255, 0.08);
}

.ecosystem-benefit-strip article:nth-child(3) span {
  border-color: rgba(10, 210, 240, 0.32);
  color: #12d4ef;
  background: rgba(10, 210, 240, 0.08);
}

.ecosystem-benefit-strip svg {
  width: 25px;
  height: 25px;
}

.ecosystem-benefit-strip div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ecosystem-benefit-strip strong {
  color: #f6f9ff;
  font-size: 0.88rem;
}

.ecosystem-benefit-strip small {
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: #909db0;
  font-size: 0.7rem;
}

:root[data-theme="light"] .ecosystem-hero {
  background:
    radial-gradient(circle at 73% 37%, rgba(44, 111, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fbff, #eef5ff);
}

:root[data-theme="light"] .ecosystem-hero h1,
:root[data-theme="light"] .ecosystem-node,
:root[data-theme="light"] .active-node strong,
:root[data-theme="light"] .ecosystem-benefit-strip strong {
  color: #07143e;
}

:root[data-theme="light"] .ecosystem-lead,
:root[data-theme="light"] .ecosystem-node small,
:root[data-theme="light"] .ecosystem-benefit-strip small {
  color: #526488;
}

:root[data-theme="light"] .ecosystem-node .node-icon,
:root[data-theme="light"] .ecosystem-benefit-strip {
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1120px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
    gap: 10px;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.7rem, 4.2vw, 4rem);
  }

  .ecosystem-map {
    height: 600px;
  }
}

@media (max-width: 1040px) {
  .mobile-header-cta {
    display: inline-flex;
    min-height: 40px;
    padding-inline: 16px;
    font-size: 0.76rem;
  }

  .mobile-header-cta::after {
    display: none;
  }
}

@media (max-width: 840px) {
  .ecosystem-hero {
    padding-top: 24px;
  }

  .ecosystem-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 22px;
  }

  .ecosystem-hero-copy {
    max-width: 680px;
  }

  .ecosystem-map {
    max-width: 720px;
    height: 600px;
    justify-self: center;
  }

  .ecosystem-benefit-strip {
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  .mobile-header-cta {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.68rem;
  }

  .header-actions {
    gap: 6px;
  }

  .ecosystem-hero {
    padding: 18px 0 12px;
  }

  .ecosystem-hero::before {
    background-size: 32px 32px;
  }

  .ecosystem-eyebrow {
    min-height: 24px;
    margin-bottom: 14px;
    padding: 4px 9px;
    font-size: 0.6rem;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.15rem, 10.4vw, 2.65rem);
    line-height: 1.08;
  }

  .ecosystem-lead {
    margin-top: 17px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .ecosystem-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .ecosystem-hero .hero-actions .button {
    width: 100%;
  }

  .ecosystem-map {
    height: 490px;
  }

  .ecosystem-wires .orbit-future {
    opacity: 0.35;
  }

  .ecosystem-hub {
    top: 38%;
    width: 92px;
  }

  .ecosystem-hub span {
    font-size: 3.15rem;
  }

  .ecosystem-node {
    width: 104px;
  }

  .ecosystem-node .node-icon {
    width: 48px;
  }

  .ecosystem-node svg {
    width: 25px;
    height: 25px;
  }

  .ecosystem-node strong {
    margin-top: 5px;
    font-size: 0.68rem;
  }

  .ecosystem-node small {
    font-size: 0.56rem;
  }

  .ecosystem-node em {
    margin-top: 4px;
    padding: 3px 5px;
    font-size: 0.43rem;
  }

  .node-pro {
    top: 0;
  }

  .node-city,
  .node-map {
    top: 22%;
  }

  .node-city { left: 0; }
  .node-map { right: 0; }

  .future-caption {
    top: 58.5%;
    width: 94%;
  }

  .future-caption::before,
  .future-caption::after {
    width: 14%;
    margin-inline: 6px;
  }

  .future-caption span {
    font-size: 0.55rem;
  }

  .future-node {
    top: 67%;
    width: 25%;
  }

  .future-node .node-icon {
    width: 40px;
  }

  .future-node svg {
    width: 21px;
    height: 21px;
  }

  .future-node strong {
    min-height: 25px;
    font-size: 0.56rem;
  }

  .future-node small {
    display: none;
  }

  .future-node em {
    font-size: 0.4rem;
    white-space: nowrap;
  }

  .node-account { left: 0; }
  .node-market { left: 25%; }
  .node-space { right: 25%; }
  .node-pack { right: 0; }

  .ecosystem-benefit-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .ecosystem-benefit-strip article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .ecosystem-benefit-strip article + article {
    border-top: 1px solid rgba(95, 133, 183, 0.18);
    border-left: 0;
  }

  .ecosystem-benefit-strip span {
    width: 36px;
    height: 36px;
  }

  .ecosystem-benefit-strip strong {
    font-size: 0.78rem;
  }

  .ecosystem-benefit-strip small {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-hub,
  .ecosystem-node {
    animation: none !important;
  }
}

/* Reference-accurate home composition */
.landing-v2 {
  background: #030810;
}

:root[data-theme="dark"] .landing-v2 {
  --background: #030810;
  --background-elevated: #07101a;
  --surface-solid: #0a111b;
  --surface-secondary: rgba(255, 255, 255, 0.04);
  --border: rgba(169, 193, 218, 0.16);
  --border-strong: rgba(244, 39, 94, 0.58);
}

.landing-v2::after {
  display: none;
}

.landing-v2 .container {
  width: min(calc(100% - 34px), 1160px);
}

.landing-v2 .site-header {
  background: rgba(3, 8, 16, 0.88);
}

.landing-v2 .header-inner {
  min-height: 64px;
}

.landing-v2 .brand-logo-wrap {
  width: 148px;
  height: 29px;
}

.landing-v2 .desktop-nav {
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.78rem;
}

.landing-v2 .button {
  min-height: 40px;
  border-radius: 5px;
  padding-inline: 18px;
  font-size: 0.84rem;
}

.landing-v2 .theme-toggle {
  display: none;
}

.v2-hero {
  min-height: 730px;
  padding-top: 34px;
  border-bottom: 1px solid var(--border);
  background: #030810;
}

.v2-hero-grid {
  grid-template-columns: minmax(350px, 0.72fr) minmax(580px, 1.28fr);
  min-height: 670px;
  gap: 28px;
}

.v2-hero-copy {
  align-self: start;
  padding-top: 80px;
  padding-bottom: 0;
}

.v2-hero .eyebrow {
  display: none;
}

.v2-hero h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.25vw, 4.55rem);
  line-height: 1.02;
}

.v2-hero .hero-lead {
  max-width: 520px;
  margin-bottom: 26px;
  color: #c8cfd8;
  font-size: 1.02rem;
  line-height: 1.7;
}

.v2-hero-media {
  width: min(100%, 580px);
  min-height: 670px;
  justify-self: end;
}

.reference-crop {
  position: absolute;
  overflow: hidden;
}

.reference-crop img,
.reference-sprite {
  position: absolute;
  max-width: none;
}

.reference-hero {
  inset: 0 0 auto 0;
  height: auto;
  aspect-ratio: 524 / 270;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 96%, transparent), linear-gradient(0deg, transparent, #000 12%, #000 96%, transparent);
}

.reference-hero img {
  left: -64.9%;
  top: -18.5%;
  width: 164.9%;
}

.reference-workspace {
  right: 0;
  bottom: 0;
  width: 91%;
  height: auto;
  aspect-ratio: 483 / 352;
  border: 1px solid rgba(153, 180, 207, 0.38);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.reference-workspace img {
  left: -73.9%;
  top: -90.1%;
  width: 178.9%;
}

.v2-section {
  padding: 42px 0 48px;
}

.v2-section + .v2-section {
  border-top: 1px solid var(--border);
}

.reference-section-title {
  margin-bottom: 20px;
}

.reference-section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 2.65rem);
  line-height: 1.08;
}

.v2-products .product-scroll-controls {
  margin: -54px 0 18px;
}

.v2-products .scroll-button,
.v2-products .scroll-button:disabled {
  width: 38px;
  height: 38px;
  opacity: 1;
}

.v2-products .products-grid {
  display: grid;
  grid-template-columns: 2.45fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding: 0 0 18px;
  border-bottom: 5px solid rgba(169, 193, 218, 0.36);
  scroll-snap-type: none;
}

.v2-products .products-grid::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25%;
  height: 5px;
  background: var(--accent);
  content: "";
}

.v2-products .products-grid {
  position: relative;
}

.v2-products .product-card,
.v2-products .product-card:first-child {
  display: flex;
  min-height: 330px;
  flex-basis: auto;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, #4a6a91);
  border-radius: 7px;
  padding: 18px;
  background: linear-gradient(155deg, rgba(10, 15, 26, 0.98), rgba(6, 12, 20, 0.98));
}

.v2-products .product-card:first-child {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(210px, 1.15fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 0 16px;
}

.v2-products .product-card:first-child .product-visual {
  grid-column: 2;
  grid-row: 1 / 5;
  height: auto;
  aspect-ratio: 235 / 186;
  align-self: center;
  margin: 0;
}

.v2-products .product-card:first-child h3,
.v2-products .product-card:first-child .product-label,
.v2-products .product-card:first-child p,
.v2-products .product-card:first-child .product-card-footer {
  grid-column: 1;
}

.v2-products .product-card:first-child h3 {
  grid-row: 1;
  align-self: end;
  margin-top: 44px;
}

.v2-products .product-card:first-child p {
  grid-row: 3;
}

.v2-products .product-card:first-child .product-label {
  grid-row: 2;
}

.v2-products .product-card:first-child .product-card-footer {
  grid-row: 4;
}

.v2-products .product-visual {
  position: relative;
  height: auto;
  aspect-ratio: 1.3;
  margin-bottom: 16px;
  border-radius: 5px;
  background: transparent;
}

.v2-products .product-visual::before,
.v2-products .product-visual::after {
  display: none;
}

.reference-sprite-workspace {
  left: -70.2%;
  top: -416.7%;
  width: 367.7%;
}

.reference-sprite-pro {
  left: -370.7%;
  top: -824.5%;
  width: 744.8%;
}

.reference-sprite-city {
  left: -452.8%;
  top: -824.5%;
  width: 691.2%;
}

.reference-sprite-map {
  left: -561.9%;
  top: -824.5%;
  width: 685.7%;
}

.v2-products .product-card h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.v2-products .product-card p {
  margin-bottom: 14px;
  color: #c0c8d2;
  font-size: 0.78rem;
  line-height: 1.55;
}

.v2-products .product-label {
  align-self: start;
  margin-bottom: 10px;
  background: transparent;
  padding: 0;
  color: var(--accent);
}

.v2-products .product-card-footer {
  justify-content: flex-start;
  margin-top: auto;
}

.process-grid {
  gap: 26px;
}

.process-grid::before {
  left: 5%;
  right: 5%;
  top: 29px;
  background: rgba(181, 194, 212, 0.42);
}

.process-grid li > span {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-color: rgba(244, 39, 94, 0.72);
  background: #07101a;
  box-shadow: 0 0 24px rgba(244, 39, 94, 0.12);
}

.process-grid li > span svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid li > span i {
  position: absolute;
  left: -8px;
  top: 17px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #19152b;
  color: #fff;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
}

.process-grid strong {
  font-size: 1rem;
}

.process-grid p {
  font-size: 0.82rem;
  line-height: 1.55;
}

.v2-benefits {
  padding-top: 30px;
}

.benefits-grid {
  gap: 10px;
}

.benefits-grid article {
  min-height: 142px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  border-radius: 7px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(14, 23, 35, 0.94), rgba(8, 14, 24, 0.94));
}

.benefits-grid article > span {
  width: 50px;
  height: 50px;
  border: 0;
  color: #ff88aa;
  font-size: 2rem;
}

.benefits-grid article > span svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-grid h3 {
  font-size: 0.95rem;
}

.benefits-grid p {
  font-size: 0.78rem;
}

.v2-utility-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(9, 16, 27, 0.92);
}

.v2-utility-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-block: 18px;
  color: #aeb8c6;
  font-size: 0.78rem;
  text-align: center;
}

.v2-utility-strip span::first-letter {
  color: var(--accent);
}

.v2-final {
  padding: 20px 0 0;
}

.v2-final-inner {
  grid-template-columns: minmax(300px, 0.85fr) auto minmax(340px, 1.15fr);
  min-height: 250px;
  gap: 24px;
  padding: 34px 42px;
  background: linear-gradient(90deg, rgba(86, 6, 31, 0.66), rgba(12, 7, 17, 0.94) 54%, #070b13);
}

.v2-final h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.reference-final {
  inset: 0 0 0 auto;
  width: 48%;
  height: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 20%);
}

.reference-final img {
  left: -99.1%;
  top: -768.8%;
  width: 199.1%;
}

.v2-final .final-actions {
  position: relative;
  z-index: 3;
}

.v2-footer {
  margin-top: 20px;
  padding: 28px 0 34px;
  background: #030810;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.8fr) 1.35fr;
  gap: 34px;
  align-items: start;
}

.v2-footer-brand p {
  max-width: 230px;
  margin: 18px 0 28px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.v2-footer-brand small {
  color: var(--text-muted);
}

.v2-footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.v2-footer-column strong {
  margin-bottom: 4px;
  color: var(--text-primary);
  font-size: 0.82rem;
}

.v2-footer-column .footer-subhead {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .v2-hero-grid {
    grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1.2fr);
  }

  .v2-products .products-grid {
    grid-template-columns: 2fr repeat(3, minmax(0, 1fr));
  }

  .v2-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 840px) {
  .v2-hero {
    min-height: auto;
  }

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

  .v2-hero-copy {
    padding-top: 20px;
  }

  .v2-hero-media {
    min-height: 530px;
  }

  .reference-hero {
    height: 250px;
  }

  .reference-workspace {
    width: 90%;
    height: 300px;
  }

  .v2-products .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .v2-products .products-grid::after {
    display: none;
  }

  .v2-products .product-card:first-child {
    display: flex;
  }

  .v2-products .product-card:first-child .product-visual,
  .v2-products .product-card:first-child h3,
  .v2-products .product-card:first-child p,
  .v2-products .product-card:first-child .product-card-footer {
    grid-column: auto;
    grid-row: auto;
  }

  .v2-products .product-card:first-child .product-visual {
    height: 118px;
    margin-bottom: 16px;
  }

  .v2-products .product-card:first-child h3 {
    margin-top: 0;
  }

  .v2-utility-strip .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-final-inner {
    grid-template-columns: 1fr;
  }

  .reference-final {
    width: 58%;
    opacity: 0.68;
  }

  .v2-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .landing-v2 .container {
    width: min(calc(100% - 24px), 1320px);
  }

  .v2-hero h1 {
    font-size: 2.45rem;
  }

  .v2-hero-media {
    min-height: 300px;
  }

  .reference-hero {
    height: 300px;
  }

  .reference-hero img {
    left: -79%;
    top: -10%;
    width: 184%;
  }

  .reference-workspace {
    display: none;
  }

  .v2-products .product-card,
  .v2-products .product-card:first-child {
    min-height: 300px;
    padding: 12px;
  }

  .v2-products .product-visual,
  .v2-products .product-card:first-child .product-visual {
    height: 105px;
  }

  .process-grid li {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .v2-utility-strip .container {
    gap: 12px;
    font-size: 0.7rem;
  }

  .v2-final-inner {
    min-height: 270px;
    padding: 26px 20px;
  }

  .reference-final {
    width: 100%;
    opacity: 0.45;
  }

  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }

  .v2-footer-brand {
    grid-column: 1 / -1;
  }
}

/* Keep the compact header action exclusive to collapsed navigation. */
.header-actions .mobile-header-cta {
  display: none;
}

@media (max-width: 1040px) {
  .header-actions .mobile-header-cta {
    display: inline-flex;
  }
}

/* Products: current portfolio and future contour */
.v2-products {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(245, 29, 79, 0.07), transparent 28%),
    radial-gradient(circle at 86% 42%, rgba(18, 196, 235, 0.06), transparent 30%),
    #030912;
}

.v2-products::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(62, 116, 181, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 116, 181, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.v2-products > .container {
  position: relative;
  z-index: 1;
}

.products-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.products-eyebrow {
  margin: 0 0 9px;
  color: #ff386a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.products-heading h2,
.future-products-heading h3 {
  margin: 0;
  color: #f8fbff;
  letter-spacing: 0;
}

.products-heading h2 {
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  line-height: 1.02;
}

.products-heading > p:last-child {
  max-width: 650px;
  margin: 16px 0 0;
  color: #9eabba;
  font-size: 1rem;
  line-height: 1.65;
}

.current-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.v2-products .product-card-current {
  --product-color: #ff2d68;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--product-color) 42%, rgba(95, 122, 164, 0.35));
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(155deg, rgba(13, 20, 33, 0.96), rgba(4, 10, 19, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.v2-products .product-card-current:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--product-color) 72%, white 5%);
  box-shadow: 0 22px 52px color-mix(in srgb, var(--product-color) 12%, transparent);
}

.v2-products .product-tone-city {
  --product-color: #4f85ff;
}

.v2-products .product-tone-map {
  --product-color: #13d7ed;
}

.product-art {
  position: relative;
  display: grid;
  width: 100%;
  height: 220px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  margin-bottom: 20px;
  color: var(--product-color);
  background:
    radial-gradient(circle at 50% 52%, color-mix(in srgb, var(--product-color) 18%, transparent), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.product-art::before {
  position: absolute;
  inset: 12% 4% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--product-color) 14%, transparent), transparent 66%);
  filter: blur(18px);
  content: "";
}

.product-art svg {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--product-color) 42%, transparent));
}

.product-art img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  filter: saturate(0.92) contrast(1.04);
  mask-image: linear-gradient(180deg, #000 0, #000 76%, transparent 100%);
}

.product-art-pro img {
  object-position: 62% center;
}

.v2-products .current-products-grid .product-card-current:first-child {
  display: flex;
  grid-template-columns: none;
  grid-template-rows: none;
}

.v2-products .current-products-grid .product-card-current:first-child > * {
  grid-column: auto;
  grid-row: auto;
}

.v2-products .current-products-grid .product-card-current:first-child h3 {
  align-self: stretch;
}

.product-art svg * {
  vector-effect: non-scaling-stroke;
}

.product-art .art-frame,
.product-art .art-strong {
  stroke-width: 1.8;
}

.product-art .art-panel {
  fill: color-mix(in srgb, var(--product-color) 7%, transparent);
}

.product-art .art-accent {
  stroke: #f7fbff;
  stroke-width: 1.5;
}

.product-art .art-grid {
  stroke: color-mix(in srgb, var(--product-color) 50%, transparent);
  stroke-width: 0.8;
}

.product-art .art-base {
  stroke: color-mix(in srgb, var(--product-color) 68%, transparent);
}

.product-art .art-pulse {
  stroke: color-mix(in srgb, var(--product-color) 38%, transparent);
  stroke-dasharray: 4 7;
}

.v2-products .product-status {
  display: inline-flex;
  width: fit-content;
  min-height: 23px;
  align-items: center;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.product-status-live {
  border: 1px solid color-mix(in srgb, var(--product-color) 58%, transparent);
  color: color-mix(in srgb, var(--product-color) 84%, white 16%);
  background: color-mix(in srgb, var(--product-color) 9%, transparent);
}

.v2-products .product-card-current h3 {
  margin: 15px 0 2px;
  color: #f8fbff;
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.v2-products .product-card-current .product-label {
  margin: 5px 0 14px;
  color: var(--product-color);
  font-size: 0.8rem;
  font-weight: 750;
}

.v2-products .product-card-current > p {
  max-width: 38ch;
  margin: 0;
  color: #b8c2cf;
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.product-chips span {
  border: 1px solid color-mix(in srgb, var(--product-color) 38%, transparent);
  border-radius: 999px;
  padding: 4px 9px;
  color: #bdeff6;
  background: color-mix(in srgb, var(--product-color) 7%, transparent);
  font-size: 0.66rem;
  font-weight: 700;
}

.v2-products .product-card-current .product-card-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

.v2-products .product-card-current .product-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--product-color);
  font-size: 0.84rem;
  font-weight: 850;
}

.v2-products .product-card-current .product-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.v2-products .product-card-current .product-link:hover::after {
  transform: translateX(4px);
}

.v2-products .product-card-current .product-link:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--product-color);
  outline-offset: 5px;
}

.future-products {
  margin-top: clamp(52px, 6vw, 78px);
  border-top: 1px solid rgba(111, 137, 171, 0.2);
  padding-top: 32px;
}

.future-products-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.future-products-heading h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.08;
}

.future-products-heading > p {
  max-width: 420px;
  margin: 0;
  color: #7f8da1;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: right;
}

.future-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.future-product-card {
  position: relative;
  min-width: 0;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(100, 126, 165, 0.2);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(15, 23, 37, 0.72), rgba(7, 13, 24, 0.62));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.future-product-card::after {
  position: absolute;
  inset: auto 16px 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(119, 138, 178, 0.44) 0 5px, transparent 5px 10px);
  content: "";
}

.future-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 151, 194, 0.38);
  background: linear-gradient(145deg, rgba(18, 28, 45, 0.8), rgba(8, 15, 27, 0.72));
}

.future-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.future-product-card .mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(122, 147, 189, 0.32);
  border-radius: 7px;
  color: #8ea6d0;
  background: rgba(93, 119, 166, 0.08);
}

.future-product-card .mini-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-status-future {
  border: 1px dashed rgba(122, 147, 189, 0.4);
  color: #8d9cb7;
  background: rgba(83, 105, 143, 0.08);
}

.future-product-card h4 {
  margin: 22px 0 9px;
  color: #dfe6f2;
  font-size: 1rem;
  line-height: 1.2;
}

.future-product-card p {
  margin: 0;
  color: #8795aa;
  font-size: 0.77rem;
  line-height: 1.55;
}

:root[data-theme="light"] .v2-products {
  background: #f4f8ff;
}

:root[data-theme="light"] .products-heading h2,
:root[data-theme="light"] .future-products-heading h3,
:root[data-theme="light"] .v2-products .product-card-current h3,
:root[data-theme="light"] .future-product-card h4 {
  color: #07143e;
}

:root[data-theme="light"] .v2-products .product-card-current,
:root[data-theme="light"] .future-product-card {
  background: rgba(255, 255, 255, 0.88);
}

:root[data-theme="light"] .v2-products .product-card-current > p,
:root[data-theme="light"] .products-heading > p:last-child,
:root[data-theme="light"] .future-product-card p {
  color: #526488;
}

@media (max-width: 980px) {
  .current-products-grid {
    gap: 12px;
  }

  .v2-products .product-card-current {
    min-height: 500px;
    padding: 16px;
  }

  .product-art {
    height: 190px;
  }

  .future-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v2-products {
    padding: 62px 0;
  }

  .products-heading {
    margin-bottom: 26px;
  }

  .current-products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-products .product-card-current {
    min-height: 0;
    padding: 18px;
  }

  .product-art {
    height: 220px;
  }

  .future-products-heading {
    display: block;
  }

  .future-products-heading > p {
    margin-top: 10px;
    text-align: left;
  }
}

/* Responsive home-page polish: stable hero geometry and denser product flow. */
.ecosystem-hero {
  padding: clamp(16px, 2.2vw, 28px) 0 22px;
}

.ecosystem-hero-grid {
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  min-height: clamp(500px, 39vw, 540px);
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px);
}

.ecosystem-hero-copy,
.ecosystem-hero h1 {
  width: auto;
  max-width: 600px;
}

.ecosystem-hero-copy {
  padding-top: 0;
}

.ecosystem-map-illustrated {
  position: relative;
  grid-area: auto;
  inset: auto;
  width: min(100%, 860px);
  max-width: 860px;
  height: auto;
  aspect-ratio: 3 / 2;
  justify-self: end;
  overflow: visible;
  transform: none;
}

.ecosystem-map-illustrated .ecosystem-art {
  inset: -5%;
  width: auto;
  -webkit-mask-image: radial-gradient(ellipse 68% 62% at 52% 50%, #000 58%, rgba(0, 0, 0, 0.72) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 62% at 52% 50%, #000 58%, rgba(0, 0, 0, 0.72) 78%, transparent 100%);
}

.ecosystem-map-illustrated .ecosystem-art img {
  object-fit: contain;
  object-position: center;
}

.ecosystem-benefit-strip {
  margin-top: 0;
}

.v2-products .product-card-current {
  min-height: 455px;
  padding: 18px;
}

.v2-products {
  padding: clamp(62px, 5vw, 76px) 0;
}

.product-art {
  height: 180px;
  margin-bottom: 16px;
}

.v2-products .product-card-current h3 {
  margin-top: 13px;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
}

.v2-products .product-card-current .product-label {
  margin-bottom: 11px;
}

.v2-products .product-card-current .product-card-footer {
  padding-top: 18px;
}

.future-products {
  margin-top: clamp(42px, 5vw, 60px);
  padding-top: 26px;
}

.future-products-grid {
  position: relative;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(100, 126, 165, 0.2);
  border-radius: 8px;
}

.future-product-card {
  min-height: 164px;
  border: 0;
  border-radius: 0;
  padding: 16px 18px;
  background: rgba(9, 16, 29, 0.52);
}

.future-product-card + .future-product-card {
  border-left: 1px solid rgba(100, 126, 165, 0.18);
}

.future-product-card::after {
  display: none;
}

.future-product-card.is-nearest {
  background: linear-gradient(145deg, rgba(31, 50, 79, 0.78), rgba(12, 23, 41, 0.72));
  box-shadow: inset 0 3px #2c8cff;
}

.future-product-card h4 {
  margin: 16px 0 7px;
}

.future-product-card p {
  max-width: 28ch;
}

:root[data-theme="light"] .future-products-grid {
  border-color: rgba(7, 20, 62, 0.12);
}

:root[data-theme="light"] .future-product-card {
  background: rgba(255, 255, 255, 0.78);
}

:root[data-theme="light"] .future-product-card + .future-product-card {
  border-left-color: rgba(7, 20, 62, 0.1);
}

:root[data-theme="light"] .future-product-card.is-nearest {
  background: linear-gradient(145deg, #ffffff, #edf5ff);
}

:root[data-theme="light"] .product-chips span {
  color: #146178;
  background: color-mix(in srgb, var(--product-color) 9%, white);
}

.v2-final p {
  max-width: 520px;
  margin: 14px 0 0;
}

@media (min-width: 761px) and (max-width: 1120px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
    min-height: clamp(470px, 52vw, 520px);
    gap: clamp(10px, 2vw, 24px);
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: auto;
    max-width: 500px;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.45rem, 4.6vw, 3.15rem);
  }

  .ecosystem-map-illustrated {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .v2-products .product-card-current {
    min-height: 430px;
  }

  .product-art {
    height: 160px;
  }
}

@media (max-width: 760px) {
  .ecosystem-hero {
    padding: 18px 0 16px;
  }

  .ecosystem-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
  }

  .ecosystem-map-illustrated {
    width: min(100%, 680px);
    margin: -4px auto -8px;
    aspect-ratio: 3 / 2;
    justify-self: center;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    inset: -4%;
  }

  .ecosystem-benefit-strip {
    margin-top: 2px;
  }

  .future-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-product-card:nth-child(odd):not(:first-child),
  .future-product-card:nth-child(even):not(:nth-child(2)) {
    border-top: 1px solid rgba(100, 126, 165, 0.18);
  }

  .future-product-card:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .ecosystem-hero-grid {
    gap: 4px;
  }

  .ecosystem-map-illustrated {
    height: auto;
    margin: -6px auto -12px;
    aspect-ratio: 3 / 4;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    inset: -2% -4%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .v2-products .product-card-current {
    min-height: 0;
  }

  .product-art {
    height: 165px;
  }

  .future-products-heading > p {
    max-width: 34ch;
  }

  .future-product-card {
    min-height: 172px;
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .ecosystem-map-illustrated {
    margin-top: -10px;
  }

  .future-products-grid {
    grid-template-columns: 1fr;
  }

  .future-product-card + .future-product-card {
    border-top: 1px solid rgba(100, 126, 165, 0.18);
    border-left: 0;
  }
}

@media (max-width: 460px) {
  .products-heading h2 {
    font-size: 2.3rem;
  }

  .products-heading > p:last-child {
    font-size: 0.88rem;
  }

  .product-art {
    height: 180px;
  }

  .v2-products .product-card-current h3 {
    font-size: 1.75rem;
  }

  .future-products-grid {
    gap: 8px;
  }

  .future-product-card {
    min-height: 215px;
    padding: 13px;
  }

  .future-product-card .mini-icon {
    width: 36px;
    height: 36px;
  }

  .future-product-card .mini-icon svg {
    width: 20px;
    height: 20px;
  }

  .product-status-future {
    padding-inline: 6px;
    font-size: 0.52rem;
  }

  .future-product-card h4 {
    margin-top: 18px;
    font-size: 0.86rem;
    overflow-wrap: anywhere;
  }

  .future-product-card p {
    font-size: 0.7rem;
  }
}

/* High-fidelity ecosystem artwork with accessible HTML labels. */
.ecosystem-map-illustrated {
  max-width: 820px;
  height: 610px;
}

.ecosystem-art {
  position: absolute;
  inset: -18px -28px -10px;
  z-index: 1;
  display: block;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 55% 50% at 50% 50%, #000 50%, rgba(0, 0, 0, 0.88) 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 55% 50% at 50% 50%, #000 50%, rgba(0, 0, 0, 0.88) 68%, transparent 100%);
}

:root[data-theme="dark"] .ecosystem-art {
  mix-blend-mode: screen;
}

.ecosystem-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.95) contrast(1.03);
}

.ecosystem-map-illustrated .ecosystem-node {
  z-index: 3;
  width: 146px;
  text-shadow: 0 2px 10px #020710, 0 2px 18px #020710;
}

.ecosystem-map-illustrated .ecosystem-node div {
  padding: 5px 8px 6px;
  background: transparent;
}

.ecosystem-map-illustrated .node-pro {
  top: 28%;
}

.ecosystem-map-illustrated .node-city,
.ecosystem-map-illustrated .node-map {
  top: 51%;
}

.ecosystem-map-illustrated .node-city {
  left: 12%;
}

.ecosystem-map-illustrated .node-map {
  right: 9%;
}

.ecosystem-map-illustrated .future-caption {
  z-index: 3;
  top: 91%;
}

.ecosystem-map-illustrated .future-node {
  z-index: 3;
  top: 84%;
}

.ecosystem-map-illustrated .future-node div {
  padding-inline: 5px;
}

@media (max-width: 840px) {
  .ecosystem-map-illustrated {
    height: 580px;
  }
}

@media (max-width: 560px) {
  .ecosystem-map-illustrated {
    height: 540px;
    margin-top: -8px;
  }

  .ecosystem-art {
    inset: -24px -18px -8px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .ecosystem-art img {
    object-fit: cover;
  }

  .ecosystem-map-illustrated .ecosystem-node {
    width: 104px;
  }

  .ecosystem-map-illustrated .ecosystem-node div {
    padding: 3px 4px 4px;
    background: transparent;
  }

  .ecosystem-map-illustrated .node-pro {
    top: 29%;
  }

  .ecosystem-map-illustrated .node-city,
  .ecosystem-map-illustrated .node-map {
    top: 54%;
  }

  .ecosystem-map-illustrated .node-city {
    left: -1%;
  }

  .ecosystem-map-illustrated .node-map {
    right: -1%;
  }

  .ecosystem-map-illustrated .future-caption {
    top: 90%;
  }

  .ecosystem-map-illustrated .future-node {
    top: 82%;
    width: 25%;
  }

.ecosystem-map-illustrated .future-node strong {
    min-height: 25px;
  }
}

/* Tighter first-screen rhythm: artwork and copy start directly below the header. */
@media (min-width: 1121px) {
  .ecosystem-hero {
    padding: 16px 0 24px;
  }

  .ecosystem-hero-grid {
    grid-template-columns: minmax(460px, 0.9fr) minmax(580px, 1.1fr);
    min-height: 580px;
    align-items: start;
    gap: clamp(18px, 2vw, 32px);
  }

  .ecosystem-hero-copy {
    max-width: 570px;
    padding-top: 48px;
  }

  .ecosystem-eyebrow {
    margin-bottom: 18px;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.8rem, 3.25vw, 3.65rem);
  }

  .ecosystem-lead {
    margin-top: 22px;
    line-height: 1.62;
  }

  .ecosystem-hero .hero-actions {
    margin-top: 24px;
  }

  .ecosystem-map-illustrated {
    height: 560px;
    align-self: start;
  }

  .ecosystem-art {
    inset: -28px -20px -12px;
  }

  .ecosystem-map-illustrated .node-pro {
    top: 27%;
  }

  .ecosystem-map-illustrated .node-city,
  .ecosystem-map-illustrated .node-map {
    top: 50%;
  }

  .ecosystem-map-illustrated .future-caption {
    top: 90%;
  }
}

@media (min-width: 1041px) {
  .landing-v2 .desktop-nav {
    gap: clamp(20px, 2.35vw, 36px);
    font-size: 0.82rem;
  }
}

@media (max-width: 560px) {
  .ecosystem-map-illustrated {
    height: 500px;
  }

  .ecosystem-art {
    top: -28px;
  }
}

@media (max-width: 360px) {
  .landing-v2 .brand-logo-wrap {
    width: 132px;
    height: 26px;
  }

  .landing-v2 .header-actions .mobile-header-cta {
    min-height: 36px;
    padding-inline: 7px;
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}

/* Shared header used by the standalone site pages. */
.landing-v2 > .header.wrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(100% - 34px, 1160px);
  margin: 14px auto 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: normal;
}

.landing-v2 > .header .nav {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(3, 3, 7, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.landing-v2 > .header .brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.landing-v2 > .header .brand img {
  display: block;
  width: 180px !important;
  max-width: 48vw;
  max-height: 64px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 0, 110, 0.32));
}

.landing-v2 > .header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.landing-v2 > .header .nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #d4d4df;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.22s ease;
}

.landing-v2 > .header .nav-links a:hover,
.landing-v2 > .header .nav-links a.active {
  color: #fff;
  background: rgba(255, 0, 110, 0.12);
  box-shadow: 0 0 18px rgba(255, 0, 110, 0.22);
}

.landing-v2 > .header .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 9px;
}

.landing-v2 > .header .login-btn,
.landing-v2 > .header .menu-btn {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: 0.22s ease;
}

.landing-v2 > .header .menu-btn {
  display: none;
}

.landing-v2 > .header .login-btn svg,
.landing-v2 > .header .menu-btn svg {
  width: 19px;
  height: 19px;
}

.landing-v2 .auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.landing-v2 .auth-modal.active {
  display: flex;
}

.landing-v2 .auth-box {
  position: relative;
  width: min(460px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 18, 28, 0.96), rgba(5, 5, 9, 0.96));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.62);
}

.landing-v2 .auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.landing-v2 .auth-logo {
  display: block;
  width: 180px;
  max-height: 64px;
  margin: 0 0 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 0, 110, 0.26));
}

.landing-v2 .auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.landing-v2 .auth-tab {
  padding: 12px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: transparent;
  font-weight: 950;
  cursor: pointer;
}

.landing-v2 .auth-tab.active {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.82), rgba(138, 44, 255, 0.65));
}

.landing-v2 .auth-panel {
  display: none;
}

.landing-v2 .auth-panel.active {
  display: block;
}

.landing-v2 .auth-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.landing-v2 .auth-note {
  color: #aaaaba;
  font-size: 14px;
  line-height: 1.55;
}

.landing-v2 .auth-form {
  display: grid;
  gap: 11px;
}

.landing-v2 .auth-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.landing-v2 .auth-submit {
  min-height: 52px;
  border: 1px solid rgba(255, 0, 110, 0.5);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff006e, #8a2cff);
  font-weight: 950;
  cursor: pointer;
}

.landing-v2 .auth-check {
  position: relative;
  display: flex;
  color: rgba(247, 247, 250, 0.66);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.landing-v2 .auth-check input {
  position: absolute;
  opacity: 0;
}

.landing-v2 .auth-check span {
  position: relative;
  display: block;
  padding-left: 30px;
}

.landing-v2 .auth-check span::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  content: "";
  background: rgba(255, 255, 255, 0.055);
}

.landing-v2 .auth-check span::after {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  opacity: 0;
  transform: rotate(45deg) scale(0.4);
}

.landing-v2 .auth-check input:checked + span::before {
  border-color: rgba(255, 0, 110, 0.85);
  background: linear-gradient(135deg, #ff006e, #8a2cff);
}

.landing-v2 .auth-check input:checked + span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.landing-v2 .auth-check a {
  border-bottom: 1px solid rgba(255, 0, 110, 0.55);
}

.landing-v2 > .header .nav.is-compact {
  position: relative;
  grid-template-columns: 1fr auto;
}

.landing-v2 > .header .nav.is-compact .menu-btn {
  display: grid;
}

.landing-v2 > .header .nav.is-compact .nav-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 30;
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 10px;
  border-radius: 24px;
  background: rgba(3, 3, 7, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 0, 110, 0.12);
}

.landing-v2 > .header .nav.is-compact.open .nav-links {
  display: flex;
}

.landing-v2 > .header .nav.is-compact .nav-links a {
  width: 100%;
  text-align: center;
}

@media (min-width: 641px) and (max-width: 900px) {
  .landing-v2 > .header .nav:not(.is-compact) {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    padding-inline: 10px;
  }

  .landing-v2 > .header .nav:not(.is-compact) .header-brand-logo {
    width: 150px;
    max-width: none;
  }

  .landing-v2 > .header .nav:not(.is-compact) .nav-links {
    gap: 2px;
  }

  .landing-v2 > .header .nav:not(.is-compact) .nav-links a {
    padding: 8px 9px;
    font-size: 11px;
  }

  .landing-v2 > .header .nav:not(.is-compact) .nav-actions {
    gap: 6px;
  }

  .landing-v2 > .header .nav:not(.is-compact) .header-theme-toggle,
  .landing-v2 > .header .nav:not(.is-compact) .login-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 680px) {
  .landing-v2 > .header.wrap {
    width: min(100% - 22px, 1160px);
  }

  .landing-v2 > .header .brand img {
    width: 180px !important;
    max-width: 48vw;
  }
}

/* Theme-aware shared header and hero artwork. */
.landing-v2 > .header .header-brand-logo {
  position: relative;
  display: block;
  width: min(180px, 48vw);
  aspect-ratio: 2048 / 398;
}

.landing-v2 > .header .header-brand-logo img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  max-width: none;
  max-height: none;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity var(--transition);
}

:root[data-theme="dark"] .landing-v2 > .header .header-logo-dark,
:root[data-theme="light"] .landing-v2 > .header .header-logo-light {
  opacity: 1;
}

.landing-v2 > .header .header-theme-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.landing-v2 > .header .header-theme-icon {
  display: grid;
  width: 19px;
  height: 19px;
  grid-area: 1 / 1;
  place-items: center;
  opacity: 0;
  transform: scale(0.72) rotate(-18deg);
  transition: opacity var(--transition), transform var(--transition);
}

.landing-v2 > .header .header-theme-icon svg {
  width: 19px;
  height: 19px;
}

:root[data-theme="dark"] .landing-v2 > .header .theme-icon-sun,
:root[data-theme="light"] .landing-v2 > .header .theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.landing-v2 > .header .mobile-theme-toggle {
  display: none;
}

:root[data-theme="light"] .landing-v2 > .header .nav {
  border-color: rgba(7, 20, 62, 0.13);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(25, 55, 112, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

:root[data-theme="light"] .landing-v2 > .header .nav-links {
  border-color: rgba(7, 20, 62, 0.09);
  background: rgba(44, 111, 255, 0.045);
}

:root[data-theme="light"] .landing-v2 > .header .nav-links a {
  color: #26345f;
}

:root[data-theme="light"] .landing-v2 > .header .nav-links a:hover,
:root[data-theme="light"] .landing-v2 > .header .nav-links a.active {
  color: #07143e;
  background: rgba(245, 29, 79, 0.09);
  box-shadow: 0 0 18px rgba(245, 29, 79, 0.12);
}

:root[data-theme="light"] .landing-v2 > .header .login-btn,
:root[data-theme="light"] .landing-v2 > .header .menu-btn,
:root[data-theme="light"] .landing-v2 > .header .header-theme-toggle {
  border-color: rgba(7, 20, 62, 0.14);
  color: #07143e;
  background: rgba(44, 111, 255, 0.055);
}

.ecosystem-art {
  opacity: 0;
  transition: opacity 260ms ease;
}

:root[data-theme="dark"] .ecosystem-art-dark,
:root[data-theme="light"] .ecosystem-art-light {
  opacity: 1;
}

:root[data-theme="dark"] .ecosystem-art-dark {
  mix-blend-mode: screen;
}

:root[data-theme="light"] .ecosystem-art-light {
  mix-blend-mode: normal;
}

:root[data-theme="light"] .ecosystem-art img {
  filter: saturate(0.98) contrast(1.02);
}

/* V6 ecosystem artwork is a seamless hero layer, not a framed illustration. */
.ecosystem-hero-grid {
  position: relative;
}

.ecosystem-map-illustrated {
  position: absolute;
  z-index: 0;
  grid-area: 1 / 1 / -1 / -1;
  top: -16px;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 100vw;
  max-width: none;
  height: calc(100% + 28px);
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.ecosystem-map-illustrated .ecosystem-art {
  inset: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0.72) 34%, #000 47%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0.72) 34%, #000 47%, #000 96%, transparent 100%);
}

.ecosystem-map-illustrated .ecosystem-art img {
  object-fit: cover;
  object-position: center;
}

.ecosystem-hero-copy {
  position: relative;
  z-index: 2;
}

@media (min-width: 841px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  }
}

@media (min-width: 841px) and (max-width: 1120px) {
  .ecosystem-hero-grid {
    grid-template-columns: 1fr;
    min-height: 580px;
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: min(46vw, 500px);
    max-width: 500px;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(76vw, 800px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.42) 16%, #000 34%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.42) 16%, #000 34%, #000 100%);
  }

  .ecosystem-map-illustrated .ecosystem-art img {
    object-fit: contain;
    object-position: right center;
  }
}

@media (min-width: 1121px) {
  .ecosystem-hero-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: min(43vw, 600px);
    max-width: 600px;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(62vw, 900px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.42) 14%, #000 30%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.42) 14%, #000 30%, #000 100%);
  }

  .ecosystem-map-illustrated .ecosystem-art img {
    object-position: center;
  }

  .ecosystem-benefit-strip {
    margin-top: -8px;
  }
}

@media (max-width: 840px) {
  .ecosystem-map-illustrated {
    position: relative;
    grid-area: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 620px);
    height: 560px;
    margin: -8px auto -12px;
    overflow: visible;
    transform: none;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    inset: -18px -5vw;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  }

  .ecosystem-map-illustrated .ecosystem-art img {
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 560px) {
  .ecosystem-map-illustrated {
    height: 480px;
    margin: -8px auto -16px;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    inset: -12px -12px;
  }

  .ecosystem-benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ecosystem-benefit-strip article {
    min-height: 86px;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 7px;
    padding: 10px 5px;
    text-align: center;
  }

  .ecosystem-benefit-strip article + article {
    border-top: 0;
    border-left: 1px solid rgba(95, 133, 183, 0.18);
  }

  .ecosystem-benefit-strip span {
    width: 34px;
    height: 34px;
  }

  .ecosystem-benefit-strip strong {
    font-size: 0.67rem;
    line-height: 1.2;
  }

  .ecosystem-benefit-strip small {
    display: none;
  }
}

:root[data-theme="light"] .ecosystem-map-illustrated .ecosystem-node {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 2px 12px rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .product-art {
  border: 1px solid rgba(44, 111, 255, 0.1);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--product-color) 11%, transparent), transparent 48%),
    #eef4ff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

:root[data-theme="light"] .product-art img {
  opacity: 0.9;
  filter: saturate(0.8) brightness(1.12) contrast(0.9);
}

:root[data-theme="light"] .landing-v2 .auth-box {
  border-color: rgba(7, 20, 62, 0.14);
  color: #07143e;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.98));
  box-shadow: 0 36px 100px rgba(25, 55, 112, 0.24);
}

:root[data-theme="light"] .landing-v2 .auth-close,
:root[data-theme="light"] .landing-v2 .auth-tab {
  color: #07143e;
}

:root[data-theme="light"] .landing-v2 .auth-title {
  color: #07143e;
}

:root[data-theme="light"] .landing-v2 .auth-note {
  color: #526488;
}

:root[data-theme="light"] .landing-v2 .auth-tabs,
:root[data-theme="light"] .landing-v2 .auth-form input,
:root[data-theme="light"] .landing-v2 .auth-close {
  border-color: rgba(7, 20, 62, 0.12);
  color: #07143e;
  background: rgba(44, 111, 255, 0.05);
}

:root[data-theme="light"] .landing-v2 .auth-check {
  color: #526488;
}

.landing-v2 > .header .nav.is-compact .header-theme-toggle {
  display: none;
}

.landing-v2 > .header .nav.is-compact .mobile-theme-toggle {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #d4d4df;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.landing-v2 > .header .nav.is-compact .theme-action-label {
  display: none;
}

:root[data-theme="dark"] .landing-v2 > .header .nav.is-compact .theme-action-light,
:root[data-theme="light"] .landing-v2 > .header .nav.is-compact .theme-action-dark {
  display: inline;
}

:root[data-theme="light"] .landing-v2 > .header .nav.is-compact .nav-links {
  background: rgba(255, 255, 255, 0.97);
}

:root[data-theme="light"] .landing-v2 > .header .nav.is-compact .mobile-theme-toggle {
  border-color: rgba(7, 20, 62, 0.11);
  color: #07143e;
  background: rgba(44, 111, 255, 0.055);
}

@media (max-width: 560px) {
  .ecosystem-map-illustrated .node-pro {
    top: 29%;
  }

  .ecosystem-map-illustrated .node-city,
  .ecosystem-map-illustrated .node-map {
    top: 77%;
  }

  .ecosystem-map-illustrated .node-city {
    left: 0;
  }

  .ecosystem-map-illustrated .node-map {
    right: 0;
  }
}

/* Clean closing CTA for both themes. */
.v2-final-inner {
  grid-template-columns: minmax(390px, 1fr) auto 180px;
  min-height: 250px;
  gap: 32px;
  border-color: rgba(255, 45, 104, 0.34);
  background: #080b14;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.v2-final h2 {
  max-width: 540px;
  margin: 0;
}

.v2-final .final-actions {
  display: grid;
  min-width: 250px;
  gap: 10px;
}

.v2-final .final-actions .button {
  width: 100%;
  min-width: 0;
}

.final-signature {
  position: relative;
  z-index: 2;
  display: grid;
  width: 168px;
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 45, 104, 0.24);
  border-radius: 50%;
  background: rgba(255, 45, 104, 0.055);
  box-shadow: inset 0 0 42px rgba(255, 45, 104, 0.08);
}

.final-signature img {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(255, 0, 94, 0.2));
}

:root[data-theme="light"] .v2-final-inner {
  border-color: rgba(44, 111, 255, 0.2);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(25, 55, 112, 0.11), inset 0 1px rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .v2-final .button-secondary {
  border-color: rgba(7, 20, 62, 0.16);
  color: #07143e;
  background: #f2f6ff;
}

:root[data-theme="light"] .final-signature {
  border-color: rgba(245, 29, 79, 0.18);
  background: #fff4f7;
  box-shadow: inset 0 0 42px rgba(245, 29, 79, 0.055);
}

:root[data-theme="light"] .v2-footer {
  color: #f8fbff;
  background: #030810;
}

:root[data-theme="light"] .v2-footer .brand-logo-dark {
  opacity: 1;
}

:root[data-theme="light"] .v2-footer .brand-logo-light {
  opacity: 0;
}

:root[data-theme="light"] .v2-footer-brand p,
:root[data-theme="light"] .v2-footer-brand small,
:root[data-theme="light"] .v2-footer-column {
  color: #8f9bad;
}

:root[data-theme="light"] .v2-footer-column strong {
  color: #f8fbff;
}

@media (max-width: 980px) {
  .v2-final-inner {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.7fr);
  }

  .final-signature {
    display: none;
  }
}

@media (max-width: 720px) {
  .v2-final-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .v2-final h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .v2-final .final-actions {
    min-width: 0;
  }
}

/* Final hero geometry override. Keep this last so legacy hero rules cannot shift it. */
.ecosystem-hero {
  padding: clamp(16px, 2.2vw, 28px) 0 22px;
}

.ecosystem-hero-grid {
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  min-height: clamp(500px, 39vw, 540px);
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px);
}

.ecosystem-hero-copy,
.ecosystem-hero h1 {
  width: auto;
  max-width: 600px;
}

.ecosystem-hero-copy {
  padding-top: 0;
}

.ecosystem-map-illustrated {
  position: relative;
  grid-area: auto;
  inset: auto;
  width: min(100%, 860px);
  max-width: 860px;
  height: auto;
  aspect-ratio: 3 / 2;
  justify-self: end;
  overflow: visible;
  transform: none;
}

.ecosystem-map-illustrated .ecosystem-art {
  inset: -5%;
  width: auto;
  -webkit-mask-image: radial-gradient(ellipse 68% 62% at 52% 50%, #000 58%, rgba(0, 0, 0, 0.72) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 62% at 52% 50%, #000 58%, rgba(0, 0, 0, 0.72) 78%, transparent 100%);
}

.ecosystem-map-illustrated .ecosystem-art img {
  object-fit: contain;
  object-position: center;
}

.ecosystem-benefit-strip {
  margin-top: 0;
}

@media (min-width: 761px) and (max-width: 1120px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
    min-height: clamp(470px, 52vw, 520px);
    gap: clamp(10px, 2vw, 24px);
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: auto;
    max-width: 500px;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.45rem, 4.6vw, 3.15rem);
  }

  .ecosystem-map-illustrated {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .ecosystem-hero {
    padding: 18px 0 16px;
  }

  .ecosystem-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
  }

  .ecosystem-map-illustrated {
    position: relative;
    grid-area: auto;
    inset: auto;
    width: min(100%, 680px);
    height: auto;
    margin: -4px auto -8px;
    aspect-ratio: 3 / 2;
    justify-self: center;
    overflow: visible;
    transform: none;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    inset: -4%;
  }

  .ecosystem-benefit-strip {
    margin-top: 2px;
  }
}

@media (max-width: 560px) {
  .ecosystem-hero-grid {
    gap: 4px;
  }

  .ecosystem-map-illustrated {
    width: 100%;
    height: auto;
    margin: -6px auto -12px;
    aspect-ratio: 3 / 4;
  }

  .ecosystem-map-illustrated .ecosystem-art {
    inset: -2% -4%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
}

@media (max-width: 360px) {
  .ecosystem-map-illustrated {
    margin-top: -10px;
  }
}

/* The ecosystem benefits close the hero instead of looking like a separate card. */
.ecosystem-benefit-strip {
  border: 0;
  border-top: 1px solid rgba(95, 133, 183, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ecosystem-benefit-strip article {
  min-height: 72px;
  padding: 14px clamp(12px, 2vw, 24px);
}

.ecosystem-benefit-strip article:first-child {
  padding-left: 0;
}

.ecosystem-benefit-strip article:last-child {
  padding-right: 0;
}

.ecosystem-benefit-strip span {
  width: 38px;
  height: 38px;
  background: transparent;
}

:root[data-theme="light"] .ecosystem-benefit-strip {
  background: transparent;
}

@media (max-width: 560px) {
  .ecosystem-benefit-strip article {
    min-height: 76px;
    padding: 9px 4px;
  }

  .ecosystem-benefit-strip article:first-child,
  .ecosystem-benefit-strip article:last-child {
    padding-inline: 4px;
  }
}

/* Transparent ecosystem artwork: the hero background now remains theme-native. */
.ecosystem-map-illustrated {
  aspect-ratio: 4 / 3;
}

.ecosystem-map-illustrated .ecosystem-art-universal {
  inset: 0;
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.ecosystem-map-illustrated .ecosystem-art-universal img {
  object-fit: contain;
  object-position: center;
  filter: none;
}

:root[data-theme="light"] .ecosystem-map-illustrated .ecosystem-art-universal img {
  filter: none;
}

@media (max-width: 760px) {
  .ecosystem-map-illustrated {
    aspect-ratio: 4 / 3;
    margin: 2px auto -4px;
  }

  .ecosystem-map-illustrated .ecosystem-art-universal {
    inset: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 560px) {
  .ecosystem-map-illustrated {
    aspect-ratio: 4 / 3;
    margin: 0 auto -2px;
  }
}

@media (min-width: 761px) {
  .ecosystem-map-illustrated {
    width: min(85%, 730px);
  }
}

@media (min-width: 681px) and (max-width: 1120px) {
  .landing-v2 .container,
  .landing-v2 > .header.wrap {
    width: min(calc(100% - 64px), 1160px);
  }
}

/* Card-based ecosystem hero. This block intentionally overrides the retired artwork layout. */
.ecosystem-hero {
  padding: clamp(28px, 4vw, 58px) 0 clamp(30px, 4vw, 54px);
  overflow: clip;
}

.ecosystem-hero-grid {
  grid-template-columns: minmax(430px, 0.88fr) minmax(580px, 1.12fr);
  min-height: clamp(600px, 47vw, 690px);
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
}

.ecosystem-hero-copy,
.ecosystem-hero h1 {
  width: auto;
  max-width: 620px;
}

.ecosystem-hero-copy {
  position: relative;
  z-index: 2;
}

.ecosystem-hero h1 {
  font-size: clamp(3rem, 4vw, 4.25rem);
  line-height: 1.08;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 4vw, 56px);
  max-width: 610px;
}

.hero-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: center;
  min-width: 0;
}

.hero-benefits article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 50%;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.hero-benefits svg,
.network-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefits div {
  min-width: 0;
}

.hero-benefits strong,
.hero-benefits small {
  display: block;
}

.hero-benefits strong {
  color: var(--text-primary);
  font-size: 0.86rem;
  line-height: 1.3;
}

.hero-benefits small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.ecosystem-network {
  position: relative;
  isolation: isolate;
  width: min(100%, 760px);
  aspect-ratio: 760 / 620;
  justify-self: end;
}

.ecosystem-network::before {
  position: absolute;
  inset: 8% 4% 5%;
  z-index: -2;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 29, 79, 0.14), transparent 30%),
    radial-gradient(circle at 27% 46%, rgba(44, 138, 255, 0.1), transparent 28%),
    radial-gradient(circle at 74% 46%, rgba(159, 71, 255, 0.1), transparent 28%);
  filter: blur(8px);
}

.network-connectors {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-connectors circle {
  fill: none;
  stroke: rgba(69, 126, 194, 0.13);
  stroke-width: 1;
  stroke-dasharray: 3 9;
}

.network-connectors path {
  fill: none;
  stroke-linecap: round;
}

.network-connectors .connection-active {
  stroke: url(#active-connection);
  stroke-width: 2;
}

.network-connectors .connection-future {
  stroke: rgba(83, 137, 199, 0.42);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.network-card {
  --node-accent: var(--accent);
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 176px;
  min-height: 122px;
  padding: 15px 12px;
  border: 1px solid color-mix(in srgb, var(--node-accent) 44%, var(--border));
  border-radius: 8px;
  color: var(--text-primary);
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 92%, var(--node-accent) 8%), var(--surface));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.045);
  text-align: center;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

a.network-card:hover,
a.network-card:focus-visible {
  border-color: var(--node-accent);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--node-accent) 22%, transparent);
  transform: translate(-50%, calc(-50% - 4px));
}

.network-card strong,
.network-card small {
  display: block;
  max-width: 100%;
}

.network-card strong {
  margin-top: 9px;
  font-size: 0.96rem;
  line-height: 1.15;
}

.network-card small {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.25;
}

.network-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--node-accent);
}

.network-core {
  left: 50%;
  top: 49.5%;
  width: 218px;
  min-height: 176px;
  border-color: color-mix(in srgb, var(--accent) 75%, white 8%);
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 86%, var(--accent) 14%), var(--surface-solid));
  box-shadow: 0 0 0 1px rgba(245, 29, 79, 0.12), 0 20px 58px rgba(245, 29, 79, 0.2);
}

.network-core::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  box-shadow: 0 0 26px color-mix(in srgb, var(--accent) 28%, transparent);
}

.core-k {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  background-color: transparent;
  background-image: url("/assets/kliper-logo-dark.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 34%, transparent);
}

.network-core strong {
  margin-top: 10px;
  font-size: 1.35rem;
}

.network-pro {
  --node-accent: #2f9cff;
  left: 50%;
  top: 12.5%;
}

.network-city {
  --node-accent: #ff2d6f;
  left: 22%;
  top: 40%;
}

.network-map {
  --node-accent: #9d57ff;
  left: 78%;
  top: 40%;
}

.network-future {
  --node-accent: #43bdf4;
  width: 138px;
  min-height: 104px;
  padding: 12px 8px;
  opacity: 0.68;
  filter: saturate(0.72);
}

.network-future strong {
  font-size: 0.74rem;
}

.network-future small {
  font-size: 0.62rem;
}

.network-future .network-icon {
  width: 30px;
  height: 30px;
}

.network-future .network-icon svg {
  width: 20px;
  height: 20px;
}

.future-my { left: 12.5%; top: 83%; }
.future-market { --node-accent: #ff3979; left: 37.5%; top: 83%; }
.future-space { --node-accent: #9d57ff; left: 62.5%; top: 83%; }
.future-pack { left: 87.5%; top: 83%; }

:root[data-theme="light"] .ecosystem-network::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(44, 111, 255, 0.12), transparent 31%),
    radial-gradient(circle at 24% 45%, rgba(17, 184, 214, 0.1), transparent 26%),
    radial-gradient(circle at 76% 45%, rgba(122, 76, 255, 0.1), transparent 26%);
}

:root[data-theme="light"] .network-connectors circle {
  stroke: rgba(44, 92, 164, 0.14);
}

:root[data-theme="light"] .network-connectors .connection-future {
  stroke: rgba(44, 92, 164, 0.32);
}

:root[data-theme="light"] .network-card {
  background: linear-gradient(145deg, #fff, color-mix(in srgb, #f4f8ff 92%, var(--node-accent) 8%));
  box-shadow: 0 14px 34px rgba(26, 60, 126, 0.11), inset 0 1px #fff;
}

:root[data-theme="light"] .network-core {
  border-color: rgba(44, 111, 255, 0.54);
  box-shadow: 0 0 0 1px rgba(44, 111, 255, 0.08), 0 20px 56px rgba(44, 111, 255, 0.16);
}

@media (max-width: 1180px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(370px, 0.86fr) minmax(500px, 1.14fr);
    min-height: 590px;
    gap: 24px;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.65rem, 4.2vw, 3.4rem);
  }

  .hero-benefits {
    gap: 12px;
  }

  .hero-benefits article {
    grid-template-columns: 36px 1fr;
    gap: 8px;
  }

  .hero-benefits article > span {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 980px) {
  .ecosystem-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 30px;
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    max-width: 760px;
  }

  .ecosystem-network {
    width: min(100%, 720px);
    justify-self: center;
  }

  .hero-benefits {
    max-width: 680px;
    margin-top: 34px;
  }
}

@media (max-width: 640px) {
  .ecosystem-hero {
    padding: 20px 0 30px;
  }

  .ecosystem-hero-grid {
    gap: 28px;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.1rem);
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }

  .hero-benefits article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    text-align: center;
  }

  .hero-benefits article > span {
    width: 38px;
    height: 38px;
  }

  .hero-benefits strong {
    font-size: 0.72rem;
  }

  .hero-benefits small {
    font-size: 0.64rem;
  }

  .ecosystem-network {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    aspect-ratio: auto;
  }

  .ecosystem-network::before {
    inset: 4% 0;
    border-radius: 20%;
  }

  .network-connectors {
    display: none;
  }

  .network-card,
  a.network-card:hover,
  a.network-card:focus-visible {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    min-height: 108px;
    padding: 12px 6px;
    transform: none;
  }

  .network-core {
    grid-column: 1 / -1;
    min-height: 138px;
    margin: 0 14%;
  }

  .core-k {
    width: 52px;
    height: 52px;
    font-size: 2.35rem;
  }

  .network-core strong {
    font-size: 1.15rem;
  }

  .network-product {
    grid-column: span 2;
  }

  .network-product strong {
    font-size: clamp(0.68rem, 2.8vw, 0.82rem);
  }

  .network-product small {
    font-size: 0.6rem;
  }

  .network-future {
    grid-column: span 3;
    min-height: 96px;
  }
}

@media (max-width: 360px) {
  .hero-benefits strong {
    font-size: 0.66rem;
  }

  .hero-benefits small {
    font-size: 0.59rem;
  }

  .network-card {
    border-radius: 7px;
  }
}

/* Final network proportion pass: compact artwork with deliberate card spacing. */
.ecosystem-hero-grid {
  grid-template-columns: minmax(440px, 0.94fr) minmax(540px, 1.06fr);
  min-height: clamp(590px, 44vw, 650px);
  gap: clamp(28px, 3vw, 48px);
}

.ecosystem-network {
  width: min(100%, 680px);
  transform: none;
}

.ecosystem-hero h1 {
  font-size: clamp(2.85rem, 3.7vw, 3.95rem);
}

.network-card {
  width: 162px;
  min-height: 114px;
}

.network-core {
  width: 202px;
  min-height: 160px;
}

.network-future {
  width: 126px;
  min-height: 96px;
}

.network-pro { top: 10.5%; }
.network-city { left: 19%; top: 38%; }
.network-map { left: 81%; top: 38%; }
.network-core { top: 48%; }
.future-my { left: 10.5%; top: 88%; }
.future-market { left: 36.8%; top: 88%; }
.future-space { left: 63.2%; top: 88%; }
.future-pack { left: 89.5%; top: 88%; }

@media (max-width: 1180px) {
  .ecosystem-hero-grid {
    min-height: 540px;
  }

  .network-card {
    width: 148px;
    min-height: 108px;
  }

  .network-core {
    width: 184px;
    min-height: 150px;
  }

  .network-future {
    width: 114px;
    min-height: 90px;
  }
}

@media (max-width: 980px) {
  .ecosystem-hero-grid {
    min-height: 0;
  }

  .ecosystem-network {
    width: min(100%, 660px);
    margin-block: -18px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .ecosystem-network {
    margin-block: 0;
    transform: none;
  }

  .network-card,
  a.network-card:hover,
  a.network-card:focus-visible {
    left: auto;
    top: auto;
    width: auto;
    min-height: 94px;
    padding: 9px 5px;
  }

  .network-core {
    min-height: 118px;
  }

  .network-future {
    min-height: 82px;
  }

  .network-icon {
    width: 30px;
    height: 30px;
  }

  .network-icon svg {
    width: 19px;
    height: 19px;
  }
}

/* Reference-matched network: one dominant PRO core, three side products, three lower cards. */
.ecosystem-network {
  width: min(100%, 700px);
}

.network-core {
  left: 50%;
  top: 49%;
  width: 204px;
  min-height: 162px;
}

.network-city {
  --node-accent: #ff2d6f;
  left: 50%;
  top: 13%;
  width: 158px;
  min-height: 108px;
}

.network-map {
  --node-accent: #2f9cff;
  left: 18%;
  top: 45%;
  width: 152px;
  min-height: 106px;
}

.network-market {
  --node-accent: #a75cff;
  left: 82%;
  top: 45%;
  width: 152px;
  min-height: 106px;
}

.network-planned {
  opacity: 0.78;
}

.network-future {
  width: 128px;
  min-height: 92px;
}

.future-space { left: 20%; top: 86%; }
.future-my { left: 50%; top: 86%; }
.future-pack { left: 80%; top: 86%; }

.network-status {
  position: absolute;
  left: 50%;
  top: -11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 3px 11px;
  border: 1px solid color-mix(in srgb, var(--node-accent) 45%, var(--border));
  border-radius: 999px;
  color: var(--text-secondary);
  background: var(--background-elevated);
  font-size: 0.58rem;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.network-status-core {
  --node-accent: var(--accent);
  min-height: 25px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .network-core {
    width: 208px;
    min-height: 170px;
  }

  .network-city {
    width: 164px;
    min-height: 116px;
  }

  .network-map,
  .network-market {
    width: 156px;
    min-height: 114px;
  }

  .network-future {
    width: 124px;
    min-height: 94px;
  }
}

@media (max-width: 640px) {
  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .ecosystem-network {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .network-core,
  .network-city,
  .network-map,
  .network-market,
  .network-future {
    left: auto;
    top: auto;
    width: auto;
  }

  .network-core {
    min-height: 130px;
  }

  .network-city,
  .network-map,
  .network-market {
    grid-column: span 2;
    min-height: 98px;
  }

  .network-future {
    grid-column: span 2;
    min-height: 86px;
  }

  .network-status {
    top: -8px;
    padding-inline: 7px;
    font-size: 0.5rem;
  }
}

@media (max-width: 1100px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 28px;
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: 100%;
    max-width: 760px;
    min-width: 0;
  }

  .ecosystem-network {
    grid-column: 1;
    width: min(100%, 660px);
    margin-block: -18px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .ecosystem-network {
    grid-column: 1;
    width: 100%;
    margin-block: 0;
    justify-self: stretch;
  }

  .ecosystem-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.5rem);
    line-height: 1.06;
  }

  .ecosystem-lead {
    margin-top: 16px;
  }

  .ecosystem-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .ecosystem-hero .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 8px;
    font-size: 0.7rem;
  }

  .hero-benefits {
    margin-top: 20px;
  }

  .hero-benefits article > span {
    width: 34px;
    height: 34px;
  }

  .network-core {
    min-height: 108px;
    margin-inline: 18%;
  }

  .network-city,
  .network-map,
  .network-market {
    min-height: 82px;
  }

  .network-future {
    min-height: 74px;
  }

  .core-k {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .network-core strong {
    margin-top: 7px;
    font-size: 1rem;
  }

  .network-card strong {
    margin-top: 5px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .ecosystem-hero-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    min-height: 560px;
    gap: 16px;
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: auto;
    max-width: 480px;
  }

  .ecosystem-network {
    grid-column: auto;
    width: 100%;
    margin-block: 0;
    justify-self: end;
    transform: scale(0.82);
    transform-origin: center;
  }
}

/* Reference-led home product system: orbit hero, cinematic cards, compact mobile rows. */
.ecosystem-network {
  position: relative;
  display: block;
  width: min(100%, 660px);
  aspect-ratio: 1.36;
  min-height: 0;
  margin: 0;
  justify-self: end;
  overflow: visible;
  transform: none;
}

.ecosystem-network::before {
  inset: 4% 1%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 56%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 48%);
  filter: blur(8px);
}

.network-connectors {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-connectors .network-orbit {
  fill: none;
  stroke: url(#active-connection);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  opacity: 0.42;
}

.network-connectors .network-orbit-outer {
  opacity: 0.58;
}

.network-connectors .connection-active {
  fill: none;
  stroke: url(#active-connection);
  stroke-width: 1.2;
  stroke-dasharray: 4 5;
  opacity: 0.66;
}

.network-brand-core {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 3;
  display: grid;
  width: clamp(120px, 11vw, 154px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, #a749ff 76%, white 8%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(25, 14, 54, 0.98), rgba(3, 9, 19, 0.98) 72%);
  box-shadow: 0 0 0 7px rgba(167, 73, 255, 0.035), 0 0 34px rgba(167, 73, 255, 0.24), inset 0 0 24px rgba(255, 31, 97, 0.08);
  transform: translate(-50%, -50%);
}

.network-brand-mark {
  display: block;
  width: 66%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(255, 31, 97, 0.38));
}

.network-brand-mark img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

.orbit-product {
  --orbit-color: #2f9cff;
  position: absolute;
  z-index: 4;
  display: block;
  width: 180px;
  height: 62px;
  color: var(--text-primary);
  text-align: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.orbit-product-pro { left: 50%; top: 6.7%; --orbit-color: #2f9cff; }
.orbit-product-city { left: 14.16%; top: 64.25%; --orbit-color: #ff3c7f; }
.orbit-product-map { left: 85.84%; top: 64.25%; --orbit-color: #9a5cff; }

.orbit-product-icon {
  display: grid;
  width: 62px;
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--orbit-color) 80%, white 10%);
  border-radius: 50%;
  color: color-mix(in srgb, var(--orbit-color) 84%, white 16%);
  background: color-mix(in srgb, var(--orbit-color) 9%, rgba(4, 10, 19, 0.96));
  box-shadow: 0 0 22px color-mix(in srgb, var(--orbit-color) 24%, transparent), inset 0 0 18px color-mix(in srgb, var(--orbit-color) 8%, transparent);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.orbit-product:hover .orbit-product-icon,
.orbit-product:focus-visible .orbit-product-icon {
  transform: translateY(-3px);
  box-shadow: 0 0 30px color-mix(in srgb, var(--orbit-color) 38%, transparent), inset 0 0 20px color-mix(in srgb, var(--orbit-color) 12%, transparent);
}

.orbit-product:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--orbit-color);
  outline-offset: 5px;
}

.orbit-product-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbit-product strong {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  display: block;
  width: 180px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.1;
  transform: translateX(-50%);
}

.orbit-product small {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  display: block;
  width: 160px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.68rem;
  line-height: 1.35;
  transform: translateX(-50%);
}

:root[data-theme="light"] .network-brand-core {
  background: radial-gradient(circle at 50% 42%, #ffffff, #eef3ff 74%);
}

:root[data-theme="light"] .orbit-product-icon {
  background: color-mix(in srgb, var(--orbit-color) 7%, white);
}

.v2-products {
  background: #030810;
}

.products-list-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(104, 131, 169, 0.2);
}

.products-list-heading::before {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2f9cff;
  box-shadow: 0 0 9px #2f9cff;
  content: "";
}

.products-list-heading h2,
.products-list-heading h3 {
  flex: 1;
  color: #f8fbff;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.2;
}

.future-products-overview-status {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(122, 147, 189, 0.25);
  border-radius: 5px;
  padding: 4px 9px;
  color: #8d9cb7;
  background: rgba(83, 105, 143, 0.09);
  font-size: 0.64rem;
  line-height: 1;
}

.current-products-grid {
  gap: 12px;
}

.v2-products .product-card-current {
  --product-color: #2f9cff;
  min-height: 340px;
  padding: 20px;
  isolation: isolate;
  border-color: color-mix(in srgb, var(--product-color) 32%, rgba(81, 105, 141, 0.34));
  background: #07101c;
}

.v2-products .product-tone-city { --product-color: #ff3c7f; }
.v2-products .product-tone-map { --product-color: #9a5cff; }

.v2-products .product-card-current::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 8, 17, 0.98) 0%, rgba(2, 8, 17, 0.9) 39%, rgba(2, 8, 17, 0.44) 73%, rgba(2, 8, 17, 0.2) 100%);
  content: "";
  pointer-events: none;
}

.v2-products .product-card-current::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(0deg, #030912 0%, transparent 100%);
  content: "";
  pointer-events: none;
}

.v2-products .product-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: none;
}

.v2-products .product-art::before {
  display: none;
}

.v2-products .product-art img {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.05) contrast(1.04) brightness(0.78);
  -webkit-mask-image: none;
  mask-image: none;
}

.v2-products .product-art-city img { object-position: 58% center; }
.v2-products .product-art-map img { object-position: 60% center; }

.v2-products .product-card-current > :not(.product-art) {
  position: relative;
  z-index: 2;
}

.product-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--product-color) 42%, transparent);
  border-radius: 7px;
  color: var(--product-color);
  background: color-mix(in srgb, var(--product-color) 10%, rgba(2, 8, 17, 0.9));
  box-shadow: 0 0 20px color-mix(in srgb, var(--product-color) 20%, transparent);
}

.product-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v2-products .product-status-live,
.v2-products .product-chips {
  display: none;
}

.v2-products .product-card-current h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.v2-products .current-products-grid .product-card-current:first-child h3 {
  margin: 18px 0 0;
  align-self: auto;
}

.v2-products .product-card-current .product-label {
  min-height: 1.35em;
  margin: 7px 0 18px;
  color: #c7d0dc;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.v2-products .product-card-current > p {
  max-width: 31ch;
  color: #c5ced9;
  font-size: 0.94rem;
  line-height: 1.6;
}

.v2-products .product-card-current .product-card-footer {
  padding-top: 17px;
}

.v2-products .product-card-current .product-link {
  font-size: 0.88rem;
}

:root[data-theme="light"] .v2-products .product-card-current h3 {
  color: #f8fbff;
}

:root[data-theme="light"] .v2-products .product-card-current .product-label {
  color: #d5dde7;
}

:root[data-theme="light"] .v2-products .product-card-current > p {
  color: #cbd4df;
}

.future-products {
  margin-top: 32px;
  border-top: 0;
  padding-top: 0;
}

.future-products-grid {
  gap: 8px;
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.future-product-card {
  min-height: 152px;
  border: 1px solid rgba(100, 126, 165, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(12, 20, 33, 0.82), rgba(5, 11, 20, 0.92));
}

.future-product-card + .future-product-card {
  border-left: 1px solid rgba(100, 126, 165, 0.2);
}

.future-product-card.is-nearest {
  border-color: rgba(47, 156, 255, 0.3);
  background: linear-gradient(145deg, rgba(11, 26, 44, 0.9), rgba(5, 12, 22, 0.94));
  box-shadow: none;
}

.future-product-card .mini-icon {
  width: 38px;
  height: 38px;
  border: 0;
  color: #2f9cff;
  background: rgba(47, 156, 255, 0.09);
  box-shadow: 0 0 16px rgba(47, 156, 255, 0.13);
}

.future-product-card:nth-child(2) .mini-icon { color: #ff3c7f; background: rgba(255, 60, 127, 0.09); }
.future-product-card:nth-child(3) .mini-icon { color: #9a5cff; background: rgba(154, 92, 255, 0.09); }
.future-product-card:nth-child(4) .mini-icon { color: #397cff; background: rgba(57, 124, 255, 0.09); }

.future-product-card h4 {
  margin: 14px 0 7px;
  font-size: 0.9rem;
}

.future-product-card p {
  font-size: 0.72rem;
  line-height: 1.45;
}

@media (max-width: 1100px) and (min-width: 721px) {
  .ecosystem-network {
    width: min(100%, 600px);
    margin: 0;
    transform: none;
  }
}

@media (max-width: 720px) {
  .ecosystem-network {
    display: block;
    width: 100%;
    aspect-ratio: 1.18;
    margin: -4px 0 0;
  }

  .ecosystem-network::before {
    inset: 5% 0;
  }

  .network-brand-core {
    top: 53%;
    width: clamp(96px, 30vw, 118px);
    min-height: 0;
    margin: 0;
  }

  .orbit-product {
    width: 108px;
  }

  .orbit-product-pro { left: 50%; top: 13%; }
  .orbit-product-city { left: 17%; top: 65%; }
  .orbit-product-map { left: 83%; top: 65%; }

  .orbit-product-icon {
    width: 48px;
  }

  .orbit-product-icon svg {
    width: 24px;
    height: 24px;
  }

  .orbit-product strong {
    margin-top: 7px;
    font-size: 0.68rem;
  }

  .orbit-product small {
    max-width: 100px;
    font-size: 0.58rem;
  }

  .products-list-heading {
    margin-bottom: 10px;
    padding-top: 15px;
  }

  .products-list-heading h2,
  .products-list-heading h3 {
    font-size: 0.92rem;
  }

  .current-products-grid,
  .future-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    overflow: visible;
  }

  .v2-products .product-card-current {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    grid-template-rows: auto auto;
    min-height: 64px;
    align-items: center;
    gap: 1px 10px;
    border-color: rgba(93, 119, 157, 0.28);
    border-radius: 7px;
    padding: 9px 10px;
    background: rgba(7, 14, 25, 0.92);
  }

  .v2-products .current-products-grid .product-card-current:first-child {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    grid-template-rows: auto auto;
    min-height: 64px;
    padding: 9px 10px;
  }

  .v2-products .current-products-grid .product-card-current:first-child > * {
    grid-column: auto;
    grid-row: auto;
  }

  .v2-products .current-products-grid .product-card-current:first-child > .product-card-icon {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .v2-products .current-products-grid .product-card-current:first-child h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: end;
    font-size: 0.75rem;
  }

  .v2-products .current-products-grid .product-card-current:first-child .product-label {
    grid-column: 2;
    grid-row: 2;
  }

  .v2-products .current-products-grid .product-card-current:first-child .product-card-footer {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .v2-products .product-card-current::before,
  .v2-products .product-card-current::after,
  .v2-products .product-art,
  .v2-products .product-card-current > p,
  .v2-products .product-status-live,
  .v2-products .product-chips {
    display: none;
  }

  .v2-products .product-card-current > .product-card-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
  }

  .product-card-icon svg {
    width: 23px;
    height: 23px;
  }

  .v2-products .product-card-current h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: end;
    font-size: 0.75rem;
  }

  .v2-products .product-card-current .product-label {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 0 0;
    align-self: start;
    color: #8d98a8;
    font-size: 0.62rem;
  }

  .v2-products .product-card-current .product-card-footer {
    position: static;
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: stretch;
    margin: 0;
    padding: 0;
  }

  .v2-products .product-card-current .product-link {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .v2-products .product-card-current .product-link::after {
    color: #d4dce8;
    font-size: 1.05rem;
    content: "›";
  }

  .future-products {
    margin-top: 24px;
  }

  .future-product-card,
  .future-product-card.is-nearest {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    min-height: 64px;
    align-items: center;
    gap: 1px 10px;
    border: 1px solid rgba(93, 119, 157, 0.24);
    border-radius: 7px;
    padding: 9px 10px;
    background: rgba(7, 14, 25, 0.72);
    box-shadow: none;
  }

  .future-product-card::after {
    position: static;
    display: block;
    grid-column: 3;
    grid-row: 1 / 3;
    width: auto;
    height: auto;
    color: #8693a6;
    background: none;
    font-size: 1.05rem;
    content: "›";
  }

  .future-product-top {
    display: contents;
  }

  .future-product-card .mini-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
  }

  .future-product-card .product-status-future {
    display: none;
  }

  .future-product-card h4 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: end;
    font-size: 0.74rem;
  }

  .future-product-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 0 0;
    align-self: start;
    overflow: hidden;
    color: #8390a2;
    font-size: 0.6rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .orbit-product-city { left: 18%; }
  .orbit-product-map { left: 82%; }
  .orbit-product { width: 96px; }
  .orbit-product small { font-size: 0.54rem; }
}

:root[data-theme="light"] .v2-products {
  background: #f4f8ff;
}

:root[data-theme="light"] .products-list-heading h2,
:root[data-theme="light"] .products-list-heading h3 {
  color: #07143e;
}

.landing-v2 .nav-links a[aria-current="page"] {
  color: var(--text-primary);
  box-shadow: inset 0 -2px var(--accent);
}

.v2-products .product-card-current {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.v2-products .product-card-current:focus-visible {
  border-color: var(--product-color);
  outline: 3px solid color-mix(in srgb, var(--product-color) 64%, transparent);
  outline-offset: 4px;
}

.home-proof {
  padding: 0 0 clamp(34px, 5vw, 64px);
  background: #030810;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(104, 131, 169, 0.2);
  border-radius: 8px;
  background: rgba(7, 14, 25, 0.74);
}

.home-proof article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}

.home-proof article + article {
  border-left: 1px solid rgba(104, 131, 169, 0.18);
}

.home-proof strong {
  color: var(--accent);
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.home-proof span {
  max-width: 24ch;
  color: #aeb9c8;
  font-size: 0.78rem;
  line-height: 1.45;
}

:root[data-theme="light"] .home-proof {
  background: #f4f8ff;
}

:root[data-theme="light"] .home-proof-grid {
  border-color: rgba(7, 20, 62, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .home-proof span {
  color: #526488;
}

.landing-v2 .button {
  min-height: 44px;
}

@media (min-width: 721px) {
  .v2-products .current-products-grid .product-card-current:first-child {
    gap: normal;
    padding: 20px;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .current-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-products .current-products-grid .product-card-current:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .v2-products .current-products-grid .product-card-current:last-child .product-art img {
    object-position: 72% center;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .v2-final-inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
    min-height: 250px;
  }

  .v2-final .final-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .final-signature {
    display: none;
  }
}

@media (max-width: 720px) {
  :root[data-theme="light"] .v2-products .product-card-current,
  :root[data-theme="light"] .future-product-card,
  :root[data-theme="light"] .future-product-card.is-nearest {
    border-color: rgba(7, 20, 62, 0.12);
    background: rgba(255, 255, 255, 0.9);
  }

  :root[data-theme="light"] .v2-products .product-card-current h3,
  :root[data-theme="light"] .future-product-card h4 {
    color: #07143e;
  }

  .orbit-product small {
    font-size: 0.65rem;
  }

  .v2-products .product-card-current .product-label {
    min-height: 0;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .future-product-card h4 {
    font-size: 0.78rem;
  }

  .future-product-card p {
    font-size: 0.66rem;
  }

  .future-product-card::after {
    display: none;
    content: "";
  }

  .home-proof {
    padding-bottom: 36px;
  }

  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 16px;
  }

  .home-proof article + article {
    border-top: 1px solid rgba(104, 131, 169, 0.18);
    border-left: 0;
  }

  .home-proof strong {
    font-size: 1.55rem;
  }

  .home-proof span {
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .ecosystem-hero .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* Readable horizontal carousel for products that are still in development. */
.future-products-heading-actions,
.future-slider-controls {
  display: flex;
  align-items: center;
}

.future-products-heading-actions {
  gap: 12px;
}

.future-slider-controls {
  gap: 7px;
}

.future-slider-button {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(108, 133, 171, 0.34);
  border-radius: 50%;
  color: #d8e1ed;
  background: rgba(9, 17, 29, 0.9);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.future-slider-button:hover:not(:disabled),
.future-slider-button:focus-visible {
  border-color: rgba(47, 156, 255, 0.72);
  color: #ffffff;
  background: rgba(47, 156, 255, 0.14);
}

.future-slider-button:focus-visible {
  outline: 3px solid rgba(47, 156, 255, 0.32);
  outline-offset: 2px;
}

.future-slider-button:disabled {
  opacity: 0.28;
  cursor: default;
}

.future-slider-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.future-products-grid {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 14px;
  border: 0;
  border-radius: 0;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(111, 137, 176, 0.26) transparent;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.future-products-grid.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.future-products-grid:focus-visible {
  border-radius: 6px;
  outline: 2px solid rgba(47, 156, 255, 0.5);
  outline-offset: 4px;
}

.future-products-grid::-webkit-scrollbar {
  height: 3px;
}

.future-products-grid::-webkit-scrollbar-track {
  background: transparent;
}

.future-products-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(111, 137, 176, 0.26);
}

.future-products-grid:hover::-webkit-scrollbar-thumb,
.future-products-grid.is-dragging::-webkit-scrollbar-thumb {
  background: rgba(111, 137, 176, 0.5);
}

.future-product-card,
.future-product-card.is-nearest {
  display: flex;
  min-width: 0;
  min-height: 224px;
  flex: 0 0 clamp(290px, 29vw, 340px);
  flex-direction: column;
  align-items: stretch;
  border: 1px solid rgba(100, 126, 165, 0.24);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(12, 20, 33, 0.9), rgba(5, 11, 20, 0.96));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.future-product-card.is-nearest {
  border-color: rgba(47, 156, 255, 0.38);
  background: linear-gradient(145deg, rgba(11, 26, 44, 0.96), rgba(5, 12, 22, 0.98));
}

.future-product-card + .future-product-card {
  border-left: 1px solid rgba(100, 126, 165, 0.24);
}

.future-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.future-product-card .product-status-future {
  display: inline-flex;
}

.future-product-card h4 {
  margin: 18px 0 9px;
  font-size: 1rem;
  line-height: 1.2;
}

.future-product-card p {
  max-width: 34ch;
  margin: 0;
  overflow: visible;
  color: #a8b5c8;
  font-size: 0.84rem;
  line-height: 1.55;
  white-space: normal;
}

:root[data-theme="light"] .future-slider-button {
  border-color: rgba(7, 20, 62, 0.18);
  color: #17366d;
  background: rgba(255, 255, 255, 0.88);
}

:root[data-theme="light"] .future-product-card,
:root[data-theme="light"] .future-product-card.is-nearest {
  border-color: rgba(7, 20, 62, 0.13);
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 720px) {
  .future-products-heading-actions {
    gap: 8px;
  }

  .future-products-overview-status {
    display: none;
  }

  .future-slider-button {
    width: 34px;
    height: 34px;
  }

  .future-products-grid {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    margin-inline: -2px;
    padding: 2px 2px 12px;
  }

  .future-product-card,
  .future-product-card.is-nearest {
    display: flex;
    min-height: 214px;
    flex: 0 0 calc(100% - 34px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(100, 126, 165, 0.24);
    border-radius: 8px;
    padding: 17px;
  }

  .future-product-card + .future-product-card {
    border-top: 1px solid rgba(100, 126, 165, 0.24);
    border-left: 1px solid rgba(100, 126, 165, 0.24);
  }

  .future-product-top {
    display: flex;
  }

  .future-product-card .product-status-future {
    display: inline-flex;
  }

  .future-product-card h4 {
    margin: 17px 0 8px;
    align-self: auto;
    font-size: 0.94rem;
  }

  .future-product-card p {
    margin: 0;
    overflow: visible;
    color: #a8b5c8;
    font-size: 0.8rem;
    line-height: 1.5;
    text-overflow: clip;
    white-space: normal;
  }

  :root[data-theme="light"] .future-product-card p {
    color: #526488;
  }
}

/* Tablet hero: keep the approved desktop layout, but stop squeezing both columns. */
@media (min-width: 641px) and (max-width: 900px) {
  .ecosystem-hero {
    padding: 30px 0 34px;
  }

  .ecosystem-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 18px;
  }

  .ecosystem-hero-copy,
  .ecosystem-hero h1 {
    width: 100%;
    max-width: 720px;
    min-width: 0;
  }

  .ecosystem-hero h1 {
    max-width: 680px;
    font-size: clamp(2.75rem, 6.4vw, 3.45rem);
  }

  .ecosystem-lead {
    max-width: 600px;
  }

  .ecosystem-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
  }

  .hero-benefits {
    max-width: 640px;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-benefits article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
  }

  .hero-benefits article > span {
    width: 36px;
    height: 36px;
  }

  .ecosystem-network {
    width: min(100%, 640px);
    margin: -8px auto -18px;
    justify-self: center;
    transform: none;
  }
}

/* Keep the first screen complete on wide tablets and compact laptop windows. */
@media (min-width: 901px) and (max-height: 760px) {
  .ecosystem-hero {
    padding: 12px 0 16px;
  }

  .ecosystem-hero-grid {
    min-height: max(480px, calc(100vh - 140px));
    min-height: max(480px, calc(100svh - 140px));
    gap: clamp(20px, 2.5vw, 36px);
  }
}

/* Light theme refinement: neutral surfaces, brand-led actions, quieter depth. */
:root[data-theme="light"] .landing-v2,
:root[data-theme="light"] .v2-products,
:root[data-theme="light"] .home-proof {
  background: var(--background);
}

:root[data-theme="light"] .ecosystem-hero {
  background:
    radial-gradient(circle at 73% 37%, rgba(36, 116, 216, 0.08), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(232, 23, 85, 0.055), transparent 26%),
    var(--background);
}

:root[data-theme="light"] .landing-v2 > .header .nav {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(22, 34, 66, 0.085), inset 0 1px rgba(255, 255, 255, 0.8);
}

:root[data-theme="light"] .landing-v2 > .header .nav-links {
  border-color: var(--border);
  background: #f4f6f9;
}

:root[data-theme="light"] .landing-v2 > .header .nav-links a {
  color: #3c4863;
}

:root[data-theme="light"] .landing-v2 > .header .nav-links a:hover,
:root[data-theme="light"] .landing-v2 > .header .nav-links a.active {
  color: var(--text-primary);
  background: rgba(232, 23, 85, 0.075);
  box-shadow: inset 0 -2px var(--accent);
}

:root[data-theme="light"] .landing-v2 > .header .login-btn,
:root[data-theme="light"] .landing-v2 > .header .menu-btn,
:root[data-theme="light"] .landing-v2 > .header .header-theme-toggle {
  border-color: var(--border);
  color: var(--text-primary);
  background: #f5f7fa;
}

:root[data-theme="light"] .future-product-card,
:root[data-theme="light"] .future-product-card.is-nearest,
:root[data-theme="light"] .home-proof-grid {
  border-color: var(--border);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(22, 34, 66, 0.055);
}

:root[data-theme="light"] .future-product-card + .future-product-card {
  border-left-color: var(--border);
}

:root[data-theme="light"] .future-product-card p,
:root[data-theme="light"] .home-proof span,
:root[data-theme="light"] .products-heading > p:last-child {
  color: var(--text-muted);
}

:root[data-theme="light"] .future-slider-button,
:root[data-theme="light"] .v2-final .button-secondary {
  border-color: var(--border);
  color: var(--text-primary);
  background: #f3f5f8;
}

:root[data-theme="light"] .v2-final-inner {
  border-color: var(--border);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(22, 34, 66, 0.07);
}

/* Compact first-screen actions without changing the approved hero layout. */
.ecosystem-lead {
  max-width: 510px;
  margin-top: 24px;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.58;
}

.ecosystem-hero .hero-actions {
  gap: 10px;
  margin-top: 24px;
}

.ecosystem-hero .hero-actions .button {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 0.88rem;
}

@media (min-width: 641px) and (max-width: 900px) {
  .ecosystem-lead {
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .ecosystem-hero .hero-actions {
    margin-top: 20px;
  }

  .ecosystem-hero .hero-actions .button {
    min-height: 46px;
  }
}

@media (max-width: 640px) {
  .ecosystem-lead {
    margin-top: 15px;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .ecosystem-hero .hero-actions {
    margin-top: 18px;
  }

  .ecosystem-hero .hero-actions .button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }
}

/* KLIPER.CITY offline publication */
.publication-product {
  --publication-accent: #14c9be;
  position: relative;
  min-height: 260px;
  margin-top: 12px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid color-mix(in srgb, var(--publication-accent) 58%, transparent);
  border-radius: 8px;
  background: #050d17;
  cursor: pointer;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.publication-product:hover,
.publication-product:focus-within {
  border-color: color-mix(in srgb, var(--publication-accent) 78%, white 4%);
  box-shadow: 0 22px 52px color-mix(in srgb, var(--publication-accent) 12%, transparent);
  transform: translateY(-5px);
}

.publication-product::before,
.publication-product::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.publication-product::before {
  background: linear-gradient(90deg, rgba(2, 9, 17, 0.99) 0%, rgba(2, 9, 17, 0.94) 34%, rgba(2, 9, 17, 0.47) 63%, rgba(2, 9, 17, 0.18) 100%);
}

.publication-product::after {
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(1, 7, 13, 0.78), transparent);
}

.publication-product-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.82);
  transition: transform 320ms ease, filter 320ms ease;
}

.publication-product:hover .publication-product-bg,
.publication-product:focus-within .publication-product-bg {
  filter: saturate(0.98) brightness(0.88);
  transform: scale(1.025);
}

.publication-product-hit-area {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.publication-product-hit-area:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--publication-accent) 72%, white 8%);
  outline-offset: -4px;
}

.publication-product-copy {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: min(62%, 720px);
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  pointer-events: none;
}

.publication-product-kicker {
  color: var(--publication-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.publication-product h3 {
  max-width: 16ch;
  margin: 12px 0 0;
  color: #f8fbff;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.publication-product p {
  max-width: 60ch;
  margin: 16px 0 0;
  color: #d2d9e2;
  font-size: 0.9rem;
  line-height: 1.55;
}

.publication-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  pointer-events: auto;
}

.publication-product-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--publication-accent) 66%, transparent);
  border-radius: 7px;
  padding: 10px 17px;
  color: var(--publication-accent);
  background: rgba(3, 14, 23, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.publication-product-button-primary {
  border-color: var(--publication-accent);
  color: #021313;
  background: var(--publication-accent);
}

.publication-product-button:hover,
.publication-product-button:focus-visible {
  border-color: #57e6de;
  color: #ffffff;
  background: rgba(20, 201, 190, 0.22);
  transform: translateY(-1px);
}

.publication-product-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.publication-product-cover {
  position: absolute;
  right: clamp(22px, 5vw, 74px);
  bottom: -29%;
  z-index: 2;
  width: clamp(210px, 23%, 300px);
  aspect-ratio: 2 / 3;
  transform: rotate(4deg);
  transform-origin: center bottom;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.48));
  pointer-events: none;
  transition: transform 320ms ease, filter 320ms ease;
}

.publication-product:hover .publication-product-cover,
.publication-product:focus-within .publication-product-cover {
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.56));
  transform: translateY(-6px) rotate(3deg);
}

.publication-product-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 980px) {
  .publication-product,
  .publication-product-copy {
    min-height: 240px;
  }

  .publication-product-copy {
    max-width: 68%;
    padding: 26px;
  }

  .publication-product-cover {
    right: 18px;
    bottom: -24%;
    width: clamp(190px, 27%, 250px);
  }

  .publication-product h3 {
    font-size: clamp(1.7rem, 4vw, 2.25rem);
  }
}

@media (max-width: 720px) {
  .publication-product {
    min-height: 0;
    margin-top: 6px;
  }

  .publication-product::before {
    background: linear-gradient(180deg, rgba(2, 9, 17, 0.98) 0%, rgba(2, 9, 17, 0.92) 56%, rgba(2, 9, 17, 0.42) 100%);
  }

  .publication-product-bg {
    object-position: 70% center;
    filter: saturate(0.85) brightness(0.66);
  }

  .publication-product-copy {
    min-height: 0;
    max-width: none;
    padding: 20px 20px 0;
  }

  .publication-product-kicker {
    font-size: 0.62rem;
  }

  .publication-product h3 {
    max-width: 13ch;
    margin-top: 9px;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .publication-product p {
    max-width: 38ch;
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .publication-product-actions {
    width: min(100%, 270px);
    flex-direction: column;
    gap: 7px;
    margin-top: 15px;
  }

  .publication-product-button {
    min-height: 40px;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 0.69rem;
  }

  .publication-product-cover {
    position: relative;
    right: auto;
    bottom: auto;
    width: clamp(140px, 43vw, 180px);
    margin: -36px -7px -46px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .publication-product,
  .publication-product-bg,
  .publication-product-cover,
  .publication-product-button {
    transition: none;
  }

  .publication-product:hover,
  .publication-product:focus-within,
  .publication-product:hover .publication-product-bg,
  .publication-product:focus-within .publication-product-bg,
  .publication-product:hover .publication-product-cover,
  .publication-product:focus-within .publication-product-cover {
    transform: none;
  }
}

/* Homepage platform message and complete product orbit. */
.ecosystem-hero-copy {
  max-width: 620px;
}

.ecosystem-hero-copy h1 {
  width: 100%;
  max-width: none;
  font-size: 4rem;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.ecosystem-lead {
  max-width: 520px;
  font-size: 0.88rem;
}

.ecosystem-network {
  width: min(100%, 680px);
  aspect-ratio: 1.28;
}

.network-connectors .connection-future {
  fill: none;
  stroke: url(#active-connection);
  stroke-width: 0.75;
  stroke-dasharray: 2 8;
  opacity: 0.2;
}

.orbit-future {
  --orbit-color: #9a7bcf;
  position: absolute;
  z-index: 2;
  display: block;
  width: 112px;
  height: 42px;
  color: color-mix(in srgb, var(--text-secondary) 72%, var(--orbit-color) 28%);
  text-align: center;
  transform: translate(-50%, -50%);
}

.orbit-future-market { left: 21.25%; top: 24.45%; --orbit-color: #a477cc; }
.orbit-future-space { left: 78.75%; top: 24.45%; --orbit-color: #7483c8; }
.orbit-future-account { left: 34.06%; top: 96.15%; --orbit-color: #608bc1; }
.orbit-future-pack { left: 65.94%; top: 96.15%; --orbit-color: #8071bd; }

.orbit-future-icon {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--orbit-color) 46%, transparent);
  border-radius: 50%;
  color: color-mix(in srgb, var(--orbit-color) 70%, var(--text-secondary) 30%);
  background: color-mix(in srgb, var(--orbit-color) 4%, rgba(4, 10, 19, 0.78));
  box-shadow: 0 0 14px color-mix(in srgb, var(--orbit-color) 8%, transparent);
}

.orbit-future-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbit-future strong {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  display: block;
  width: 112px;
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.1;
  transform: translateX(-50%);
}

:root[data-theme="light"] .orbit-future-icon {
  background: color-mix(in srgb, var(--orbit-color) 5%, white);
}

@media (max-width: 1180px) and (min-width: 901px) {
  .ecosystem-hero-copy h1 {
    font-size: 3.35rem;
  }

  .ecosystem-network {
    width: min(100%, 620px);
  }
}

@media (max-width: 900px) and (min-width: 721px) {
  .ecosystem-hero-copy h1 {
    font-size: 3.15rem;
  }
}

@media (max-width: 720px) {
  .ecosystem-hero-copy h1 {
    font-size: 2.5rem;
  }

  .ecosystem-lead {
    max-width: 34ch;
  }

  .ecosystem-network {
    aspect-ratio: 1.05;
    margin-top: 2px;
  }

  .network-brand-core {
    top: 53%;
  }

  .orbit-product {
    height: 48px;
  }

  .orbit-product-pro { top: 14.5%; }
  .orbit-product-city { left: 14.16%; top: 61.7%; }
  .orbit-product-map { left: 85.84%; top: 61.7%; }

  .orbit-product strong {
    top: calc(100% + 7px);
    width: 108px;
    margin: 0;
  }

  .orbit-product small {
    top: calc(100% + 24px);
    width: 100px;
    margin: 0;
    line-height: 1.3;
  }

  .orbit-product-pro small {
    width: 150px;
    white-space: nowrap;
  }

  .orbit-future {
    width: 80px;
    height: 34px;
  }

  .orbit-future-market { left: 21.25%; top: 29.05%; }
  .orbit-future-space { left: 78.75%; top: 29.05%; }
  .orbit-future-account { left: 34.06%; top: 87.9%; }
  .orbit-future-pack { left: 65.94%; top: 87.9%; }

  .orbit-future-icon {
    width: 34px;
  }

  .orbit-future-icon svg {
    width: 17px;
    height: 17px;
  }

  .orbit-future strong {
    top: calc(100% + 5px);
    width: 60px;
    margin: 0;
    font-size: 0.54rem;
  }
}

@media (max-width: 380px) {
  .ecosystem-hero-copy h1 {
    font-size: 2.25rem;
  }

  .orbit-product strong {
    width: 100px;
    font-size: 0.64rem;
  }

  .orbit-product small {
    width: 90px;
    font-size: 0.53rem;
    line-height: 1.25;
  }
}

@media (max-width: 640px) {
  .ecosystem-lead {
    font-size: 0.84rem;
  }
}
