:root {
  --navy-950: #06111f;
  --navy-900: #08192e;
  --navy-850: #0b203a;
  --navy-800: #0d2a4f;
  --blue-600: #1578ff;
  --blue-500: #1f86ff;
  --blue-400: #45a3ff;
  --green-500: #19c878;
  --green-400: #35df97;
  --cyan-400: #13d0d2;
  --amber-400: #ffc847;
  --pink-400: #cf5cff;
  --ink: #111827;
  --muted: #59657a;
  --muted-2: #8090a8;
  --line: #dce8f7;
  --soft: #f4f8ff;
  --white: #ffffff;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-lg: 0 28px 80px rgba(3, 18, 41, 0.22);
  --shadow-md: 0 18px 45px rgba(20, 52, 91, 0.14);
  --shadow-soft: 0 12px 30px rgba(9, 39, 84, 0.08);
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.lightbox-open { overflow: hidden; }

html.cookie-consent-open,
html.cookie-consent-open body {
  overflow: hidden;
}

html.cookie-consent-open .site-header,
html.cookie-consent-open main,
html.cookie-consent-open .site-footer {
  filter: blur(10px) saturate(0.86);
  pointer-events: none;
  user-select: none;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(53, 223, 151, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 20%, rgba(21, 120, 255, 0.22), transparent 28rem),
    rgba(6, 17, 31, 0.62);
  backdrop-filter: blur(12px);
}

html.cookie-consent-open .cookie-consent {
  display: flex;
}

.cookie-consent-card {
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
    rgba(7, 18, 33, 0.88);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

.cookie-consent-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(53, 223, 151, 0.3);
  border-radius: 999px;
  color: #dfffee;
  background: rgba(53, 223, 151, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.cookie-consent-card p {
  margin: 0;
  color: rgba(238, 246, 255, 0.78);
  line-height: 1.65;
}

.cookie-consent-details {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
}

.cookie-consent-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.94rem;
  font-weight: 750;
}

.cookie-consent-details span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  box-shadow: 0 0 0 6px rgba(53, 223, 151, 0.12);
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-actions .btn {
  flex: 1 1 210px;
  min-width: 0;
}

.cookie-consent-actions .btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.cookie-consent-actions .btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 3px;
}

.cookie-consent-link {
  margin-top: 16px !important;
  font-size: 0.9rem;
}

.cookie-consent-link a {
  color: var(--green-400);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(53, 223, 151, 0.9);
  outline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--white);
  color: var(--navy-900);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  color: rgba(255,255,255,0.9);
  transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  background: rgba(6, 17, 31, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(6, 17, 31, 0.9);
  border-bottom-color: rgba(255,255,255,0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(255,255,255,0.7);
  overflow: hidden;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.12rem;
}

.text-keyword {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: 800 !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-wrap: inherit !important;
  text-transform: inherit !important;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav .language-switcher {
  margin-left: 2px;
}

.main-nav a:hover { color: #fff; }

.main-nav .nav-cta {
  display: none;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 3px;
  min-height: 34px;
  padding: 3px;
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}

.language-option {
  min-width: 38px;
  min-height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-option:hover,
.language-option.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  box-shadow: 0 10px 22px rgba(21,120,255,0.2);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), #0f6fff 44%, var(--green-500));
  box-shadow: 0 14px 34px rgba(21, 120, 255, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(21, 120, 255, 0.42);
}

.btn-ghost {
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.38);
}

.btn-large {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 17px;
}

.header-actions .btn {
  min-height: 40px;
  padding-inline: 14px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.header-actions .btn-ghost {
  color: rgba(255,255,255,0.9);
  background: transparent;
  border-color: transparent;
}

.header-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}

.header-actions .btn-primary {
  box-shadow: 0 10px 24px rgba(21,120,255,0.32);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 20%, rgba(53,223,151,0.2), transparent 36%),
    rgba(255,255,255,0.09);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  appearance: none;
  -webkit-appearance: none;
  backdrop-filter: blur(14px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  background:
    radial-gradient(circle at 70% 20%, rgba(53,223,151,0.28), transparent 36%),
    rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.34);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) { transform: translate(-50%, -8px); }
.menu-toggle span:nth-child(2) { transform: translate(-50%, -1px); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, 6px); }

.menu-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(21,120,255,0.96), rgba(25,200,120,0.96));
  border-color: rgba(255,255,255,0.42);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -1px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -1px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 840px;
  padding: 150px 0 170px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 18%, rgba(25, 200, 120, 0.18), transparent 28%),
    radial-gradient(circle at 20% 16%, rgba(21, 120, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #06111f 0%, #071a31 48%, #0a2e57 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(19,208,210,0.17), transparent 28%);
  background-size: 68px 68px, 68px 68px, cover;
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -18%;
  bottom: -28%;
  width: 62%;
  height: 54%;
  background: radial-gradient(circle, rgba(21,120,255,0.24), transparent 68%);
  filter: blur(20px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy h1 {
  margin: 22px 0 24px;
  max-width: 720px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-copy h1::selection,
.hero-lead::selection {
  background: rgba(53,223,151,0.35);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--green-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: #08301f;
  background: linear-gradient(135deg, #bfffe0, var(--green-400));
  box-shadow: 0 10px 24px rgba(25, 200, 120, 0.2);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  min-width: 29px;
  border-radius: 50%;
  background: transparent;
}

.pulse-dot::before,
.pulse-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pulse-dot::before {
  z-index: 1;
  background: var(--green-400);
}

.pulse-dot::after {
  background: rgba(53, 223, 151, 0.28);
  animation: pulse 1.75s ease infinite;
}

@keyframes pulse {
  0% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  70% { opacity: 0; transform: translate(-50%, -50%) scale(3.2); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(3.2); }
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.76);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 0;
}

.hero-app-cta {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.hero-app-cta span {
  max-width: 260px;
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-buttons > .btn-secondary {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 34px rgba(2,10,25,0.18);
  backdrop-filter: blur(14px);
}

.hero-buttons > .btn-secondary:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 42px rgba(2,10,25,0.24);
}

.hero-language-note {
  display: none;
}

html[lang="en"] .hero-language-note {
  display: block;
}

.hero-support {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 620px;
  overflow: visible;
  isolation: isolate;
}

.hero-device-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 96%);
  height: min(620px, 96%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 44%, rgba(21,120,255,0.3), transparent 36%),
    radial-gradient(circle at 36% 62%, rgba(25,200,120,0.24), transparent 34%),
    radial-gradient(circle, rgba(255,255,255,0.08), transparent 66%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
  z-index: -2;
}

.hero-device-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), transparent 58%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 34px 90px rgba(0,0,0,0.18);
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: -1;
}

.map-card {
  position: absolute;
  inset: 60px 20px 60px 10px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,247,255,0.88));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.75);
  transform: perspective(1000px) rotateY(-7deg) rotateX(3deg);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 54px 0 0;
  background:
    linear-gradient(90deg, transparent 47%, rgba(89,116,145,0.12) 48%, transparent 49%),
    linear-gradient(0deg, transparent 47%, rgba(89,116,145,0.12) 48%, transparent 49%),
    radial-gradient(circle at 20% 42%, rgba(25,200,120,0.12), transparent 16%),
    radial-gradient(circle at 68% 40%, rgba(21,120,255,0.12), transparent 18%),
    #f8fbff;
  background-size: 112px 112px, 112px 112px, cover, cover, cover;
}

.map-card-top {
  position: relative;
  z-index: 2;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(7,20,38,0.95);
  color: #fff;
}

.map-card-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.map-card-top p {
  margin-left: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255,255,255,0.72);
}

.mock-map {
  position: absolute;
  inset: 54px 0 0;
}

.ring {
  position: absolute;
  left: 26%;
  top: 26%;
  border-radius: 44% 56% 50% 48%;
  border: 4px solid;
  transform: rotate(-9deg);
}

.ring-a {
  width: 43%;
  height: 33%;
  border-color: rgba(21,120,255,0.72);
  background: rgba(21,120,255,0.12);
}

.ring-b {
  left: 19%;
  top: 20%;
  width: 58%;
  height: 44%;
  border-color: rgba(21,120,255,0.5);
  background: rgba(21,120,255,0.09);
}

.ring-c {
  left: 12%;
  top: 13%;
  width: 73%;
  height: 55%;
  border-color: rgba(25,200,120,0.6);
  background: rgba(25,200,120,0.08);
}

.pin {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(25,200,120,0.12), 0 10px 24px rgba(14,78,143,0.28);
}

.pin-main {
  left: 48%;
  top: 42%;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  border: 3px solid #fff;
}

.pin-store {
  width: 20px;
  height: 20px;
  background: var(--green-500);
  border: 3px solid #fff;
}

.pin-store.a { left: 18%; top: 28%; }
.pin-store.b { right: 17%; top: 30%; }
.pin-store.c { left: 40%; bottom: 22%; }

.heat {
  position: absolute;
  width: 24%;
  height: 18%;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.62;
}

.h1 { left: 21%; top: 52%; background: #ffc847; }
.h2 { right: 14%; top: 44%; background: #35df97; }
.h3 { right: 28%; bottom: 21%; background: #1f86ff; }

.glass {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(198,220,249,0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.map-card-panel {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 220px;
  padding: 18px;
  border-radius: 22px;
}

.map-card-panel span,
.showcase-text span {
  display: block;
  color: var(--green-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-card-panel strong {
  display: block;
  margin: 7px 0 12px;
  color: var(--navy-900);
  line-height: 1.25;
}

.score-line {
  height: 8px;
  border-radius: 999px;
  background: #dce8f7;
  overflow: hidden;
}

.score-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-500), var(--blue-600));
}

.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(180deg, #111827, #05070c);
  border: 9px solid #071121;
  box-shadow: 0 34px 80px rgba(2, 10, 25, 0.46), 0 0 0 1px rgba(255,255,255,0.08);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.phone::before {
  content: none;
}

.phone-main {
  width: 306px;
  aspect-ratio: 800 / 1496;
  left: 50%;
  top: 24px;
  z-index: 3;
  transform: translateX(10%) rotate(4deg);
}

.phone-secondary {
  width: 252px;
  aspect-ratio: 800 / 1496;
  left: 50%;
  top: 118px;
  z-index: 2;
  transform: translateX(-92%) rotate(-5deg);
  opacity: 0.98;
}

.hero-insight {
  position: absolute;
  z-index: 5;
  width: min(240px, 44%);
  padding: 16px 18px;
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 18, 33, 0.68);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 54px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
}

.hero-insight span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-400);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-insight strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.35;
}

.hero-visual-desktop {
  display: grid;
  min-height: 560px;
  place-items: center;
}

.desktop-preview {
  position: relative;
  width: min(740px, 100%);
  overflow: visible;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(229,239,252,0.22), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 42px 96px rgba(2, 10, 25, 0.38);
}

.desktop-preview::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 2;
}

.desktop-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -54px;
  width: 210px;
  height: 54px;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 45%),
    linear-gradient(135deg, #101f34, #071221);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 0;
  transform: translateX(-50%);
  box-shadow: 0 26px 52px rgba(0,0,0,0.28);
  z-index: -1;
}

.desktop-preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.76);
  background: rgba(7,18,33,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px 22px 0 0;
}

.desktop-preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.26);
}

.desktop-preview-top strong {
  margin-left: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: #071221;
}

.desktop-map-placeholder {
  overflow: hidden;
  display: grid;
  place-items: center;
}

.desktop-map-placeholder img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transform: none;
  background: #071221;
}

.phone-overlap {
  width: 178px;
  right: -6px;
  bottom: 12px;
  left: auto;
  top: auto;
  z-index: 4;
  transform: rotate(5deg);
}

.hero-phone-preview {
  pointer-events: none;
}

.insight-left {
  left: 3%;
  top: 86px;
}

.insight-right {
  right: 0;
  bottom: 96px;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
  background: linear-gradient(135deg, rgba(21,120,255,0.95), rgba(25,200,120,0.95));
  box-shadow: 0 18px 38px rgba(6, 32, 67, 0.28);
  border: 1px solid rgba(255,255,255,0.32);
}

.badge-left { left: 0; top: 150px; }
.badge-right { right: 0; bottom: 120px; }

.data-strip {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  margin-bottom: -1px;
  background: linear-gradient(to bottom, transparent 0 38px, #f7fbff 38px 100%);
}

.journey-strip {
  position: relative;
  z-index: 5;
  padding: 74px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(21,120,255,0.18), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(25,200,120,0.16), transparent 30%),
    linear-gradient(135deg, #06111f, #08213d);
}

.journey-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1.48fr);
  gap: 38px;
  align-items: center;
  margin-bottom: 28px;
}

.journey-heading h2 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.journey-board {
  display: grid;
  gap: 18px;
}

.journey-board-vertical {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.journey-tree {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 12%, rgba(21,120,255,0.18), transparent 32%),
    radial-gradient(circle at 84% 20%, rgba(53,223,151,0.15), transparent 30%),
    rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 34px 90px rgba(0,0,0,0.22);
}

.journey-tree::before {
  content: none;
}

.journey-branches,
.journey-merge,
.journey-trunk {
  z-index: 2;
}

.journey-fiber {
  position: absolute;
  inset: 30px 34px 28px;
  z-index: 1;
  width: calc(100% - 68px);
  height: calc(100% - 58px);
  pointer-events: none;
  overflow: visible;
}

.journey-fiber-channel,
.journey-fiber-signal {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-fiber-channel {
  stroke: rgba(4, 10, 18, 0.42);
  stroke-width: 3px;
  filter: none;
}

.journey-fiber-signal {
  stroke: rgba(119,255,191,0.98);
  stroke-width: 3px;
  stroke-dasharray: 16 74;
  stroke-dashoffset: 90;
  opacity: 1;
  filter: drop-shadow(0 0 7px rgba(53,223,151,0.36));
  animation: journeyFiberSignal 2.8s linear infinite;
}

.journey-fiber-signal-branch {
  animation-delay: 0s;
}

.journey-fiber-signal-trunk {
  animation-delay: 1.95s;
}

.journey-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 86px);
  align-items: stretch;
  padding-bottom: 70px;
}

.journey-track {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.journey-branch,
.journey-trunk {
  position: relative;
  overflow: visible;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.journey-trunk {
  width: 100%;
  margin: 0 auto;
}

.journey-track::before {
  content: none;
}

.journey-branch::after {
  content: none;
  position: absolute;
  left: 23px;
  bottom: -30px;
  width: 3px;
  height: 30px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(4,10,18,0.34), rgba(255,255,255,0.2), rgba(4,10,18,0.34)),
    linear-gradient(180deg, transparent 0 34%, rgba(53,223,151,0) 41%, rgba(119,255,191,0.98) 50%, rgba(53,223,151,0) 59%, transparent 100%);
  background-size: 100% 100%, 100% 260%;
  background-position: 0 0, 0 -220%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 8px rgba(255,255,255,0.08), 0 0 18px rgba(53,223,151,0.08);
  animation: journeySignalDown 5.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: 0.55s;
}

.journey-track-copy,
.journey-branch-steps {
  position: relative;
  z-index: 1;
}

.journey-track-local::before { animation-delay: 1.1s; }

.journey-merge {
  position: relative;
  width: calc(100% - 46px);
  height: 44px;
  margin: 0 auto;
}

.journey-merge::before,
.journey-merge::after {
  content: none;
  position: absolute;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(4,10,18,0.34), rgba(255,255,255,0.2), rgba(4,10,18,0.34)),
    linear-gradient(90deg, transparent 0, rgba(119,255,191,0.98) 50%, transparent 100%),
    linear-gradient(270deg, transparent 0, rgba(119,255,191,0.98) 50%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 38% 100%, 38% 100%;
  background-position: 0 0, -42% 0, 142% 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 8px rgba(255,255,255,0.08), 0 0 18px rgba(53,223,151,0.08);
  animation: journeySignalMerge 5.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: 1.05s;
}

.journey-merge::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.journey-merge::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background:
    linear-gradient(180deg, rgba(4,10,18,0.34), rgba(255,255,255,0.2), rgba(4,10,18,0.34)),
    linear-gradient(180deg, transparent 0 34%, rgba(53,223,151,0) 41%, rgba(119,255,191,0.98) 50%, rgba(53,223,151,0) 59%, transparent 100%);
  background-size: 100% 100%, 100% 260%;
  background-position: 0 0, 0 -220%;
  animation: journeySignalDown 5.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: 1.7s;
  transform: translateX(-50%);
}

.journey-trunk::after {
  content: none;
}

.journey-track-copy,
.journey-steps,
.journey-bridge {
  position: relative;
  z-index: 1;
}

.journey-track-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-400);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-track-copy strong {
  display: block;
  color: #fff;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.journey-steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps::before {
  content: none;
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 3px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(4,10,18,0.34), rgba(255,255,255,0.2), rgba(4,10,18,0.34)),
    linear-gradient(180deg, transparent 0 34%, rgba(53,223,151,0) 41%, rgba(119,255,191,0.98) 50%, rgba(53,223,151,0) 59%, transparent 100%);
  background-size: 100% 100%, 100% 260%;
  background-position: 0 0, 0 -220%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 8px rgba(255,255,255,0.08), 0 0 18px rgba(53,223,151,0.08);
  animation: journeySignalDown 5.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.journey-steps li > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 12px 26px rgba(21,120,255,0.24);
  font-size: 0.82rem;
  font-weight: 950;
}

.journey-steps li > div {
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 20px;
  color: rgba(255,255,255,0.84);
  background: rgba(8,23,42,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.journey-steps li.is-shared > div {
  border-color: rgba(53,223,151,0.32);
  background: linear-gradient(135deg, rgba(21,120,255,0.12), rgba(53,223,151,0.09));
}

.journey-branch-steps li > div,
.journey-trunk-steps li > div {
  background: rgba(8,23,42,0.78);
  backdrop-filter: blur(12px);
}

.journey-branch-steps::before {
  bottom: -30px;
}

.journey-trunk-steps {
  z-index: 1;
}

.journey-trunk-steps::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2.15s;
}

.journey-trunk-steps li {
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: center;
}

.journey-trunk-steps li > span {
  grid-column: 2;
}

.journey-trunk-steps li > div {
  grid-column: 3;
}

.journey-trunk-steps li > span {
  box-shadow: 0 0 0 3px rgba(6,17,31,0.82), 0 0 18px rgba(53,223,151,0.34), 0 14px 28px rgba(21,120,255,0.22);
}

.journey-steps strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.journey-steps p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
  line-height: 1.48;
}

.journey-bridge {
  display: grid;
  align-content: center;
  justify-self: center;
  max-width: 620px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.journey-bridge::before,
.journey-bridge::after {
  content: none;
}

.journey-bridge::before { margin-bottom: 22px; }
.journey-bridge::after { margin-top: 22px; }

.journey-bridge span {
  display: inline-flex;
  justify-self: center;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-400);
  background: rgba(53,223,151,0.1);
  border: 1px solid rgba(53,223,151,0.18);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-bridge strong {
  color: rgba(255,255,255,0.82);
  line-height: 1.34;
  letter-spacing: -0.03em;
}

@keyframes journeyLine {
  0% { width: 0; opacity: 0.4; }
  18% { opacity: 1; }
  70% { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0.35; }
}

@keyframes journeyVerticalLine {
  0% { clip-path: inset(0 0 100% 0); opacity: 0.42; }
  55% { clip-path: inset(0 0 0 0); opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 0.58; }
}

@keyframes journeyBarFlow {
  0% { background-position: 0 0; opacity: 0.78; }
  50% { opacity: 1; }
  100% { background-position: 200% 200%; opacity: 0.78; }
}

@keyframes journeySignalDown {
  0% { background-position: 0 0, 0 -220%; opacity: 0.86; }
  100% { background-position: 0 0, 0 220%; opacity: 0.86; }
}

@keyframes journeySignalMerge {
  0% { background-position: 0 0, -42% 0, 142% 0; opacity: 0.86; }
  100% { background-position: 0 0, 50% 0, 50% 0; opacity: 0.86; }
}

@keyframes journeyFiberSignal {
  0% { stroke-dashoffset: 90; opacity: 1; }
  100% { stroke-dashoffset: -90; opacity: 1; }
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(200,219,242,0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.strip-grid div {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #e6effa;
}

.strip-grid span {
  display: block;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-grid strong {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
}

.audience-section {
  position: relative;
  margin-top: -86px;
  padding: 0 0 52px;
  background: linear-gradient(180deg, transparent 0 86px, #f7fbff 86px 100%);
  scroll-margin-top: 110px;
  z-index: 2;
}

.audience-panel {
  display: grid;
  gap: 30px;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 12%, rgba(21,120,255,0.13), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(25,200,120,0.13), transparent 28%),
    #ffffff;
  border: 1px solid #e2ecf8;
  box-shadow: 0 26px 80px rgba(8, 31, 66, 0.14);
}

.audience-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 0.76fr);
  gap: 40px;
  align-items: center;
}

.audience-copy .section-preview-accent {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.audience-copy > .section-kicker,
.audience-copy > h2,
.audience-copy > p:not(.section-kicker) {
  grid-column: 2;
}

.audience-copy h2 {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--navy-950);
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.audience-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.profile-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr));
  gap: 7px;
  margin-top: 2px;
  padding: 12px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(25,200,120,0.1), transparent 32%),
    rgba(247,251,255,0.86);
  border: 1px solid #e3edf9;
}

.profile-table span {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr);
  column-gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 12px;
  color: #35506f;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(21,120,255,0.08);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1.22;
}

.profile-table span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
}

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

.profile-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0%, rgba(25,200,120,0.11), transparent 30%),
    rgba(255,255,255,0.7);
  border: 1px solid #e3edf9;
}

.profile-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 13px 15px 13px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(135deg, var(--blue-600), #0f6fff 44%, var(--green-500));
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 19px;
  box-shadow: 0 18px 44px rgba(21, 120, 255, 0.32);
  cursor: pointer;
  list-style: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.profile-section summary:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 22px 54px rgba(21, 120, 255, 0.38);
}

.profile-section summary::-webkit-details-marker {
  display: none;
}

.profile-section summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--blue-600);
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.profile-section[open] summary::after {
  content: "−";
}

.profile-section summary span {
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.25;
}

.profile-section summary small {
  margin-left: auto;
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}

.profile-section:not([open]) .profile-table {
  display: none;
}

.profile-section-heading {
  display: grid;
  gap: 8px;
}

.profile-section-heading .section-kicker,
.profile-section-heading h3,
.profile-section-heading p {
  margin: 0;
}

.profile-section-heading h3 {
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.profile-section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.45;
}

.usecase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 206px;
  padding: 24px;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e4eefb;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.usecase-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21,120,255,0.09), transparent 66%);
}

.usecase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,120,255,0.25);
  box-shadow: var(--shadow-md);
}

.usecase-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue-600);
  background: #eaf3ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.usecase-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.12rem;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.usecase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.section {
  padding: 112px 0;
  background: #fff;
}

#funkcje {
  padding-top: 74px;
}

#model {
  padding-bottom: 66px;
}

.section-light {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.two-col,
.product-grid,
.impact-grid,
.tech-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading-with-preview {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  column-gap: 42px;
  align-items: center;
}

.section-heading-with-preview > .section-kicker,
.section-heading-with-preview > h2,
.section-heading-with-preview > p {
  grid-column: 1;
}

.section-heading-with-preview .section-preview-accent {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
  width: min(460px, 100%);
  margin-top: 0;
}

.section-preview-accent {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #071221;
  border: 1px solid rgba(15,45,85,0.12);
  box-shadow: 0 24px 70px rgba(8,31,66,0.16);
}

.section-preview-accent img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.section-preview-accent figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(7,18,33,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.section-heading .section-preview-accent {
  width: min(440px, 100%);
  margin-top: 22px;
}

.section-heading.section-heading-with-preview .section-preview-accent {
  width: min(460px, 100%);
  margin-top: 0;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.cta-section h2 {
  margin: 12px 0 16px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

.section p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.problem-stack {
  display: grid;
  gap: 16px;
}

.problem-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5eef9;
  box-shadow: var(--shadow-soft);
}

.problem-card.active {
  background: linear-gradient(135deg, #071a31, #0e396b);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 30px 70px rgba(7,26,49,0.22);
}

.problem-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--blue-600);
  background: #eff6ff;
  border-radius: 14px;
  font-weight: 900;
}

.problem-card.active span {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
}

.problem-card.active h3,
.problem-card.active p {
  color: #fff;
}

.problem-card.active p { opacity: 0.72; }

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

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

.feature-card,
.model-card,
.step,
.impact-card,
.lead-form {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e5eef9;
  box-shadow: var(--shadow-soft);
}

.feature-card::before,
.model-card::before,
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feature-card:hover,
.model-card:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before,
.model-card:hover::before,
.step:hover::before {
  opacity: 1;
}

.feature-card,
.model-card,
.step {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usecase-card > span,
.usecase-card > h3,
.usecase-card > p,
.feature-card > .icon,
.feature-card > h3,
.feature-card > p,
.model-card > span,
.model-card > h3,
.model-card > p,
.layer-card > strong,
.layer-card > span {
  position: relative;
  z-index: 1;
}

.feature-card,
.model-card,
.layer-card {
  display: flex;
  flex-direction: column;
}

.card-preview {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(21,120,255,0.14);
  box-shadow: 0 16px 38px rgba(8,31,66,0.12);
}

.card-preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.card-preview figcaption {
  padding: 8px 9px 9px;
  color: rgba(17,34,55,0.72);
  background: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.card-preview-mobile {
  display: block;
  width: min(168px, 42%);
  align-self: flex-end;
}

.card-preview-mobile img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.card-preview-crop-top img {
  height: auto;
  object-position: center top;
  transform: none;
}

.card-preview img,
.app-showcase-device img,
.section-preview-accent img {
  cursor: zoom-in;
  touch-action: manipulation;
}

.card-preview,
.section-preview-accent {
  touch-action: manipulation;
}

.hero img {
  cursor: default;
}

.screen-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(2,10,25,0.78);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.screen-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.screen-lightbox-panel {
  position: relative;
  width: min(min(1180px, calc(100vw - 36px)), calc(min(86vh, 980px) * var(--screen-lightbox-ratio, 0.56)));
  max-width: min(1180px, calc(100vw - 36px));
  max-height: min(86vh, 980px);
  overflow: visible;
  border-radius: 28px;
  background: #071221;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 36px 110px rgba(0,0,0,0.46);
}

.screen-lightbox.is-loading .screen-lightbox-panel {
  min-width: min(360px, calc(100vw - 36px));
  min-height: 240px;
}

.screen-lightbox-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
  gap: 12px;
  padding: 28px;
  color: rgba(238,246,255,0.88);
  background:
    radial-gradient(circle at 20% 15%, rgba(21,120,255,0.18), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(25,200,120,0.18), transparent 34%),
    rgba(7,18,33,0.92);
  font-size: 0.95rem;
  font-weight: 800;
}

.screen-lightbox.is-loading .screen-lightbox-loader {
  display: flex;
}

.screen-lightbox-loader .app-bootstrap-spinner {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(122,167,255,0.24);
  border-top-color: #7aa7ff;
  border-radius: 50%;
  animation: app-bootstrap-spin 900ms linear infinite;
}

.screen-lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: min(86vh, 980px);
  object-fit: contain;
  border-radius: inherit;
}

.screen-lightbox.is-loading img {
  visibility: hidden;
}

.screen-lightbox-caption {
  position: absolute;
  left: 16px;
  right: 64px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(255,255,255,0.9);
  background: rgba(7,18,33,0.72);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.screen-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(7,18,33,0.74);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

@keyframes app-bootstrap-spin {
  to {
    transform: rotate(360deg);
  }
}

.feature-card .card-preview-mobile {
  margin-top: auto;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  font-size: 1.35rem;
  font-weight: 900;
}

.icon-blue { color: var(--blue-600); background: #eaf3ff; }
.icon-green { color: var(--green-500); background: #eafbf3; }
.icon-amber { color: #b87800; background: #fff6df; }
.icon-pink { color: #9d2ee8; background: #f5eaff; }
.icon-neutral { color: #263449; background: #f0f4f9; }

.feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.feature-grid-release .feature-card {
  min-height: 326px;
}

.feature-grid-release .feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 168px);
  column-gap: 22px;
  align-items: start;
}

.feature-card-new,
.layer-card-new {
  border-color: rgba(25, 200, 120, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 200, 120, 0.12), transparent 40%),
    #fff;
}

.feature-card-new .new-badge {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.layer-card-new .new-badge {
  margin-bottom: 12px;
  color: #08301f !important;
}

.feature-grid-release .feature-card > .icon,
.feature-grid-release .feature-card > h3,
.feature-grid-release .feature-card > p {
  grid-column: 1;
}

.feature-grid-release .feature-card .card-preview-mobile {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  margin: 0;
  width: 100%;
}

.feature-grid-release .feature-card .card-preview-narrow {
  width: 86%;
}

.product-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(25,200,120,0.18), transparent 24%),
    radial-gradient(circle at 24% 70%, rgba(21,120,255,0.22), transparent 28%),
    linear-gradient(135deg, #06111f, #071c34 54%, #09294c);
  overflow: hidden;
}

.product-section .section h2,
.product-section h2,
.product-section h3 {
  color: #fff;
}

.product-section p {
  color: rgba(255,255,255,0.72);
}

.product-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 16px;
}

.tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  min-height: 42px;
  padding: 0 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.tab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.tab:hover,
#product-release:checked ~ .product-grid label[for="product-release"],
#product-heatmaps:checked ~ .product-grid label[for="product-heatmaps"],
#product-competition:checked ~ .product-grid label[for="product-competition"],
#product-reports:checked ~ .product-grid label[for="product-reports"],
#product-compare:checked ~ .product-grid label[for="product-compare"] {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 12px 28px rgba(21,120,255,0.18);
  transform: translateY(-1px);
}

.tab:hover::before,
#product-release:checked ~ .product-grid label[for="product-release"]::before,
#product-heatmaps:checked ~ .product-grid label[for="product-heatmaps"]::before,
#product-competition:checked ~ .product-grid label[for="product-competition"]::before,
#product-reports:checked ~ .product-grid label[for="product-reports"]::before,
#product-compare:checked ~ .product-grid label[for="product-compare"]::before {
  opacity: 1;
}

.showcase-text-stack {
  display: grid;
}

.product-new-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(25, 200, 120, 0.22);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
}

.product-new-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.showcase-text {
  display: none;
  grid-area: 1 / 1;
  padding: 24px;
  border-radius: 24px;
  color: var(--navy-950);
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.showcase-text.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

#product-release:checked ~ .product-grid [data-product-copy="release"],
#product-heatmaps:checked ~ .product-grid [data-product-copy="heatmaps"],
#product-competition:checked ~ .product-grid [data-product-copy="competition"],
#product-reports:checked ~ .product-grid [data-product-copy="reports"],
#product-compare:checked ~ .product-grid [data-product-copy="compare"] {
  display: block;
}

.showcase-text h3 {
  margin-top: 8px;
  color: var(--navy-950);
  font-size: 1.5rem;
}

.showcase-text p {
  margin-bottom: 0;
  color: #566174;
}

.showcase {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
}

.showcase-phone {
  position: relative;
  width: min(330px, 70vw);
  aspect-ratio: 706 / 1536;
  z-index: 2;
  transform: rotate(2deg);
}

.showcase-phone img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.showcase-phone img.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.showcase-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,120,255,0.28), transparent 64%);
  filter: blur(10px);
}

.app-showcase-device {
  position: relative;
  z-index: 2;
  width: min(360px, 84vw);
  aspect-ratio: 800 / 1496;
  box-sizing: content-box;
  overflow: hidden;
  border: 8px solid #071121;
  border-radius: 42px;
  background: #071121;
  box-shadow: 0 34px 92px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.14);
}

.app-showcase-device::before {
  content: none;
}

.product-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: contain;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transform: translateY(8px) scale(0.985);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

#product-release:checked ~ .product-grid [data-product-image="release"],
#product-heatmaps:checked ~ .product-grid [data-product-image="heatmaps"],
#product-competition:checked ~ .product-grid [data-product-image="competition"],
#product-reports:checked ~ .product-grid [data-product-image="reports"],
#product-compare:checked ~ .product-grid [data-product-image="compare"] {
  opacity: 1;
  pointer-events: none;
  transform: translateY(0) scale(1);
}

#product-compare:checked ~ .product-grid .app-showcase-device {
  aspect-ratio: 687 / 1496;
}

.desktop-showcase-frame {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 32px 90px rgba(0,0,0,0.28);
}

.desktop-showcase-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.desktop-showcase-frame img.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.product-layer-panel {
  margin-top: 34px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(53,223,151,0.13), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(21,120,255,0.18), transparent 30%),
    rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

.product-layer-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.product-layer-heading h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.product-layer-heading p:not(.section-kicker) {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.product-layer-grid .layer-card {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.product-section .product-layer-grid .layer-card strong {
  color: #fff;
}

.product-section .product-layer-grid .layer-card span {
  color: rgba(255,255,255,0.68);
}

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

.step span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 18px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  box-shadow: 0 16px 28px rgba(21,120,255,0.22);
}

.step p,
.model-card p { margin-bottom: 0; }

.model-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-600);
  background: #eaf3ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-card-available {
  background:
    linear-gradient(180deg, rgba(25,200,120,0.08), transparent 44%),
    #fff;
  border-color: rgba(25,200,120,0.26);
}

.model-card-available::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--green-500), var(--blue-600));
}

.model-card-available > span {
  color: #0f8750;
  background: #eafbf3;
}

.model-card-upcoming {
  background:
    linear-gradient(180deg, rgba(21,120,255,0.055), transparent 42%),
    rgba(255,255,255,0.78);
  border-color: rgba(21,120,255,0.14);
}

.model-card-upcoming > span {
  color: #5b6f8d;
  background: #eef4fb;
}

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

.story-switcher {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(21,120,255,0.08), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(25,200,120,0.1), transparent 30%),
    #fff;
  border: 1px solid #e5eef9;
  box-shadow: var(--shadow-soft);
}

.story-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.story-tabs {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #dbe9fb;
}

.story-tab {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #526177;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.story-tab:hover,
#story-franchise:checked ~ .story-tabs label[for="story-franchise"],
#story-local:checked ~ .story-tabs label[for="story-local"] {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  box-shadow: 0 14px 28px rgba(21,120,255,0.18);
  transform: translateY(-1px);
}

.story-panel {
  display: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

#story-franchise:checked ~ .story-panels [data-story-panel="franchise"],
#story-local:checked ~ .story-panels [data-story-panel="local"] {
  display: grid;
}

.story-panel-copy,
.story-step {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e5eef9;
  box-shadow: 0 18px 42px rgba(18, 43, 77, 0.08);
}

.story-panel-copy {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 10% 12%, rgba(21,120,255,0.12), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.story-panel-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.story-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  opacity: 0;
  transform: translateY(14px);
}

#story-franchise:checked ~ .story-panels [data-story-panel="franchise"] .story-step,
#story-local:checked ~ .story-panels [data-story-panel="local"] .story-step {
  animation: storyStepIn 0.42s ease forwards;
}

.story-step:nth-child(2) { animation-delay: 95ms; }
.story-step:nth-child(3) { animation-delay: 190ms; }
.story-step:nth-child(4) { animation-delay: 285ms; }

.story-step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  box-shadow: 0 14px 24px rgba(21,120,255,0.18);
}

.story-step strong {
  display: block;
  color: var(--navy-950);
  letter-spacing: -0.03em;
}

.story-step p {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

@keyframes storyStepIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-card,
.layer-card,
.tech-value-board article {
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e5eef9;
  box-shadow: var(--shadow-soft);
}

.story-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-600);
  background: #eaf3ff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

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

.layer-card strong,
.tech-value-board strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.layer-card span,
.tech-value-board span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.research-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(21,120,255,0.09), transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(25,200,120,0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.research-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: start;
}

.research-copy {
  display: grid;
  gap: 18px;
}

.research-copy h2 {
  margin-bottom: 0;
}

.research-copy > p {
  margin: 0;
}

.research-score-card {
  position: relative;
  isolation: isolate;
  margin-top: 12px;
  padding: 30px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(53,223,151,0.3), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(21,120,255,0.26), transparent 34%),
    linear-gradient(135deg, var(--navy-950), #0b2d52);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow-lg);
}

.research-score-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -52px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53,223,151,0.22), transparent 68%);
  z-index: -1;
}

.research-score-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-400);
  background: rgba(53,223,151,0.12);
  border: 1px solid rgba(53,223,151,0.2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-score-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.research-score-card p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.72);
}

.method-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  counter-reset: methods;
}

.method-card {
  position: relative;
  min-height: 214px;
  padding: 24px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #e1ecfa;
  box-shadow: var(--shadow-soft);
  counter-increment: methods;
}

.method-card::before {
  content: counter(methods, decimal-leading-zero);
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(21,120,255,0.09);
  font-size: 3.6rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.method-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  opacity: 0.72;
}

.method-card-wide {
  grid-column: 1 / -1;
  min-height: 190px;
  background:
    radial-gradient(circle at 88% 16%, rgba(25,200,120,0.14), transparent 32%),
    linear-gradient(135deg, #ffffff, #f5faff);
}

.method-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-600);
  background: #eaf3ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-card h3,
.method-card p {
  position: relative;
  z-index: 1;
}

.method-card h3 {
  max-width: 430px;
  margin-bottom: 10px;
}

.method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.tech-value-board {
  display: grid;
  gap: 14px;
}

.tech-value-board article {
  color: var(--ink);
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.18);
}

.tech-section .tech-value-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-section .tech-value-board article {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 56px rgba(0,0,0,0.14);
}

.tech-section .tech-value-board strong {
  color: #fff;
}

.tech-section .tech-value-board span {
  color: rgba(255,255,255,0.7);
}

.impact-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(21,120,255,0.1), transparent 25%),
    radial-gradient(circle at 82% 35%, rgba(25,200,120,0.16), transparent 27%),
    linear-gradient(180deg, rgba(244,248,255,0.92), rgba(255,255,255,0.98));
}

.impact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 42px;
}

.impact-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background:
    radial-gradient(circle at 86% 12%, rgba(53,223,151,0.24), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(21,120,255,0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #0b2b50 58%, #0d3a68);
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.impact-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,223,151,0.22), transparent 64%);
  z-index: -1;
}

.impact-card .section-kicker {
  color: var(--green-400);
}

.impact-card h2 {
  margin-bottom: 18px;
}

.impact-card h2,
.impact-card p { color: #fff; }
.impact-card p { opacity: 0.78; }

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: stretch;
}

.audience-list div {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: start;
  padding: 24px 22px 22px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.96));
  border: 1px solid #e5eef9;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-list div::before {
  content: "";
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 18px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(21,120,255,0.14), rgba(25,200,120,0.16));
  box-shadow: inset 0 0 0 1px rgba(21,120,255,0.12);
}

.audience-list div::after {
  position: absolute;
  top: 34px;
  left: 35px;
  color: var(--blue-600);
  font-size: 1.05rem;
  font-weight: 950;
}

.audience-list div:nth-child(1)::after { content: "01"; }
.audience-list div:nth-child(2)::after { content: "02"; }
.audience-list div:nth-child(3)::after { content: "03"; }
.audience-list div:nth-child(4)::after { content: "04"; }
.audience-list div:nth-child(5)::after { content: "05"; }
.audience-list div:nth-child(6)::after { content: "06"; }

.audience-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(21,120,255,0.28);
  box-shadow: var(--shadow-md);
}

.audience-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.audience-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.tech-section {
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(21,120,255,0.16), transparent 26%),
    linear-gradient(135deg, #06111f, #09233f);
}

.tech-section h2,
.tech-section p { color: #fff; }
.tech-section p { color: rgba(255,255,255,0.74); }
.tech-section code,
.cta-note code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(21,120,255,0.12);
  color: var(--blue-400);
}

.tech-board {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.tech-chip {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
}

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

.roadmap-section {
  padding-top: 84px;
  background:
    radial-gradient(circle at 18% 18%, rgba(21,120,255,0.08), transparent 24%),
    radial-gradient(circle at 84% 42%, rgba(25,200,120,0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.roadmap-section .section-heading p {
  margin-inline: auto;
  max-width: 760px;
}

.roadmap-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 23px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-600), var(--green-500));
  opacity: 0.34;
}

.roadmap-item {
  position: relative;
  margin-left: 58px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #e5eef9;
  box-shadow: var(--shadow-soft);
}

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -46px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  box-shadow: 0 0 0 8px rgba(21,120,255,0.12), 0 12px 24px rgba(21,120,255,0.22);
}

.roadmap-item span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--blue-600);
  background: #eaf3ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roadmap-item p {
  margin-bottom: 0;
}

.roadmap-item.is-completed {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,251,255,0.82));
  border-color: rgba(180,195,215,0.42);
  box-shadow: 0 12px 30px rgba(31,54,82,0.06);
  filter: saturate(0.74);
}

.roadmap-item.is-completed h3,
.roadmap-item.is-completed p {
  color: #607086;
}

.roadmap-item.is-completed span {
  color: #748298;
  background: #eef3f8;
}

.roadmap-item.is-completed::before {
  background: linear-gradient(135deg, #b9c7d8, #d6e0ea);
  box-shadow: 0 0 0 8px rgba(148,163,184,0.11), 0 10px 22px rgba(71,85,105,0.12);
}

.roadmap-item.is-current {
  background: linear-gradient(135deg, #071a31, #0e396b);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 30px 70px rgba(7,26,49,0.22);
}

.roadmap-item.is-current h3,
.roadmap-item.is-current p {
  color: #fff;
}

.roadmap-item.is-current p {
  opacity: 0.76;
}

.roadmap-item-large {
  padding: 34px;
  border-radius: 32px;
}

.roadmap-item-large h3 {
  max-width: 820px;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.roadmap-item-large p {
  max-width: 860px;
  font-size: 1.02rem;
}

.cta-section {
  color: #fff;
  background:
    radial-gradient(circle at 16% 22%, rgba(25,200,120,0.2), transparent 24%),
    radial-gradient(circle at 78% 40%, rgba(21,120,255,0.2), transparent 26%),
    linear-gradient(135deg, #06111f, #0a2b4f);
}

.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.74); }

.cta-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  line-height: 1.55;
}

.cta-note a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(53,223,151,0.65);
  text-underline-offset: 4px;
}

.lead-form {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy-950);
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d9e6f5;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--navy-950);
  background: #f8fbff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form textarea { resize: vertical; }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(21,120,255,0.12);
  background: #fff;
}

.lead-form .btn { width: 100%; }

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green-500);
  font-weight: 850;
  text-align: center;
}

.lead-form .form-status {
  color: #0f8750;
}

.form-status.is-pending {
  color: var(--blue-600);
}

.lead-form .form-status.is-pending {
  color: var(--blue-600);
}

.form-status.is-error {
  color: #dc2626;
}

.lead-form .form-status.is-error {
  color: #dc2626;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255,255,255,0.72);
  background: #040b15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand { color: #fff; margin-bottom: 16px; }

.site-footer p {
  margin: 0;
  line-height: 1.65;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,0.72);
}

.site-footer a:hover { color: #fff; }

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(21,120,255,0.14), transparent 34%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 42%);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  color: #fff;
  background: rgba(6,17,31,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

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

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.legal-nav a:hover { color: #fff; }

.legal-main {
  padding: 74px 0 88px;
}

.legal-article {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(15, 45, 85, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-md);
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--blue-600);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-article h1 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.legal-date {
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 700;
}

.legal-note {
  margin: 0 0 32px;
  padding: 16px 18px;
  border: 1px solid rgba(255,200,71,0.42);
  border-radius: var(--radius-md);
  color: #754d00;
  background: rgba(255,200,71,0.16);
  line-height: 1.6;
}

.legal-article h2 {
  margin: 34px 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: -0.03em;
}

.legal-article p,
.legal-article li {
  color: #334155;
  line-height: 1.75;
}

.legal-article ol,
.legal-article ul {
  padding-left: 1.35rem;
}

.legal-article a {
  color: var(--blue-600);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

@media (max-width: 1100px) {
  .header-actions { display: none; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-copy { grid-template-columns: 1fr; }
  .section-heading-with-preview {
    grid-template-columns: 1fr;
  }
  .section-heading-with-preview .section-preview-accent {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    margin-top: 20px;
  }
  .audience-copy .section-preview-accent {
    grid-column: auto;
    grid-row: auto;
  }
  .audience-copy > .section-kicker,
  .audience-copy > h2,
  .audience-copy > p:not(.section-kicker) {
    grid-column: auto;
  }
  .usecase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .layer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow, .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .two-col, .research-grid, .product-grid, .impact-grid, .tech-grid, .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 690px; }
  .hero-visual-desktop { min-height: auto; }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .main-nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .header-actions .btn {
    padding-inline: 16px;
  }

  .phone-main {
    width: 286px;
    transform: translateX(-7%) rotate(3deg);
  }

  .phone-secondary {
    width: 238px;
    transform: translateX(-88%) rotate(-4deg);
  }

  .insight-right {
    right: 3%;
  }
}

@media (hover: none), (pointer: coarse) {
  .feature-card:hover,
  .model-card:hover,
  .step:hover,
  .btn:hover,
  .tab:hover,
  .story-tab:hover {
    transform: none;
  }

  .feature-card:hover::before,
  .model-card:hover::before,
  .step:hover::before {
    opacity: 0;
  }
}

@media (max-width: 860px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .header-inner {
    position: relative;
    gap: 10px;
  }
  .site-header { padding: 12px 0; }
  .menu-toggle {
    display: block;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(360px, calc(100vw - 28px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 18% 0%, rgba(21,120,255,0.18), transparent 34%),
      radial-gradient(circle at 88% 14%, rgba(25,200,120,0.18), transparent 32%),
      rgba(6,17,31,0.97);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 24px 70px rgba(0,0,0,0.34);
    backdrop-filter: blur(22px);
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
    text-align: center;
  }
  .main-nav a:not(.nav-cta)::after {
    content: none;
  }
  .main-nav a:hover {
    background: rgba(255,255,255,0.12);
  }
  .main-nav .nav-cta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-600), #0f6fff 44%, var(--green-500));
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 16px 32px rgba(21,120,255,0.28);
  }
  .main-nav .language-switcher {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 2px 0 0;
    min-height: 38px;
    padding: 4px;
    border-radius: 16px;
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
  }
  .main-nav .language-option {
    min-width: 42px;
    min-height: 30px;
    padding: 0 10px;
  }
  .hero {
    min-height: auto;
    padding: 116px 0 128px;
  }
  .audience-section {
    margin-top: -56px;
    padding-bottom: 56px;
    background: linear-gradient(180deg, transparent 0 56px, #f7fbff 56px 100%);
  }
  .audience-panel {
    padding: 24px;
    border-radius: 28px;
  }
  .audience-copy {
    grid-template-columns: 1fr;
  }
  .audience-copy .section-preview-accent,
  .audience-copy > .section-kicker,
  .audience-copy > h2,
  .audience-copy > p:not(.section-kicker) {
    grid-column: 1;
  }
  .audience-copy .section-preview-accent {
    grid-row: auto;
  }
  .hero-grid { gap: 34px; }
  .hero-copy h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-metrics, .strip-grid { grid-template-columns: 1fr; }
  .journey-heading,
  .journey-board-vertical {
    grid-template-columns: 1fr;
  }
  .product-layer-heading,
  .tech-section .tech-value-board {
    grid-template-columns: 1fr;
  }
  .journey-strip {
    padding: 62px 0 70px;
  }
  .journey-tree {
    max-width: none;
    padding: 18px;
    border-radius: 28px;
    overflow: hidden;
  }
  .journey-tree::before,
  .journey-track::before {
    animation: none;
    opacity: 0.16;
    transform: none;
  }
  .journey-fiber {
    display: block;
    inset: 18px 18px 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
  }
  .journey-fiber-signal {
    display: none;
  }
  .journey-fiber-channel {
    stroke: rgba(119,255,191,0.2);
    stroke-width: 2.5px;
    filter: none;
  }
  .journey-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 58px;
  }
  .journey-branch,
  .journey-trunk {
    width: 100%;
  }
  .journey-branch::after {
    content: none;
  }
  .journey-branch-steps::before {
    content: none;
  }
  .journey-bridge {
    min-height: auto;
    text-align: center;
  }
  .journey-merge {
    display: none;
  }
  .journey-trunk-steps li {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
  }
  .journey-trunk-steps li > span,
  .journey-trunk-steps li > div {
    grid-column: auto;
  }
  .journey-steps li > div {
    min-height: auto;
  }
  .hero-visual { min-height: 580px; }
  .phone-main {
    width: min(270px, 44vw);
    left: 50%;
    top: 22px;
    right: auto;
    transform: translateX(8%) rotate(3deg);
  }
  .phone-secondary {
    width: min(220px, 38vw);
    left: 50%;
    top: 124px;
    bottom: auto;
    transform: translateX(-92%) rotate(-4deg);
  }
  .hero-insight {
    width: min(220px, 42%);
  }
  .floating-badge { display: none; }
  .data-strip {
    margin-top: -24px;
    background: linear-gradient(to bottom, transparent 0 24px, #f7fbff 24px 100%);
  }
  .section { padding: 82px 0; }
  #funkcje { padding-top: 62px; }
  #model { padding-bottom: 54px; }
  .roadmap-section { padding-top: 68px; }
  .audience-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-name { font-size: 1rem; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
  }
  .hero-buttons > .btn,
  .hero-app-cta {
    flex: 1 1 0;
    min-width: 0;
  }
  .hero-app-cta {
    display: grid;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding-inline: 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .hero-app-cta span {
    display: none;
  }
  .hero-metrics div { padding: 16px; }
  .feature-grid,
  .workflow,
  .model-grid,
  .story-grid,
  .usecase-grid,
  .layer-grid,
  .method-stack {
    grid-template-columns: 1fr;
  }
  .method-card-wide {
    grid-column: auto;
  }
  .research-score-card,
  .method-card {
    padding: 22px;
    border-radius: 24px;
  }
  .profile-section {
    padding: 14px;
    border-radius: 22px;
  }
  .profile-section summary {
    align-items: flex-start;
  }
  .profile-section summary small {
    display: none;
  }
  .profile-table {
    padding: 10px;
    border-radius: 18px;
  }
  .story-switcher {
    padding: 12px;
    border-radius: 26px;
  }
  .story-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .journey-track {
    padding: 14px;
    border-radius: 24px;
  }
  .journey-tree {
    padding: 16px;
    border-radius: 26px;
  }
  .journey-track-copy strong {
    font-size: 0.98rem;
    line-height: 1.28;
  }
  .journey-track-copy span {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
  .journey-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
  }
  .journey-steps::before {
    left: 20px;
  }
  .journey-branch::after {
    left: 20px;
  }
  .journey-branch-steps::before {
    bottom: -28px;
  }
  .journey-trunk-steps::before {
    left: 20px;
    transform: none;
  }
  .journey-trunk-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
  }
  .journey-trunk-steps li > span,
  .journey-trunk-steps li > div {
    grid-column: auto;
  }
  .journey-steps li > span {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    font-size: 0.72rem;
  }
  .journey-steps li > div {
    min-height: auto;
    padding: 12px;
    border-radius: 16px;
  }
  .journey-steps strong {
    font-size: 0.95rem;
  }
  .journey-steps p {
    font-size: 0.8rem;
    line-height: 1.42;
  }
  .product-layer-panel {
    padding: 18px;
    border-radius: 26px;
  }
  .story-panel {
    grid-template-columns: 1fr;
  }
  .story-panel-copy,
  .story-step {
    padding: 22px;
  }
  .story-panel-copy {
    min-height: clamp(234px, 54vw, 286px);
    align-content: center;
  }
  .story-steps .story-step:first-child {
    min-height: clamp(158px, 42vw, 204px);
  }
  .story-step {
    grid-template-columns: 1fr;
  }
  .story-step p {
    grid-column: 1;
  }
  .story-step span {
    margin-bottom: 14px;
  }
  .feature-grid-release .feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(126px, 138px);
    column-gap: 16px;
    min-height: 292px;
    padding: 22px;
  }
  .feature-grid-release .feature-card .card-preview-mobile {
    align-self: center;
    justify-self: end;
  }
  .feature-grid-release .feature-card:nth-child(even) > .icon,
  .feature-grid-release .feature-card:nth-child(even) > h3,
  .feature-grid-release .feature-card:nth-child(even) > p {
    grid-column: 2;
  }
  .feature-grid-release .feature-card:nth-child(even) .card-preview-mobile {
    grid-column: 1;
    justify-self: start;
  }
  .showcase { min-height: 560px; }
  .showcase-phone { width: min(300px, 84vw); }
  .desktop-preview-grid { grid-template-columns: 1fr; }
  .phone { border-width: 8px; border-radius: 36px; }
  .map-card-panel { right: 18px; left: 18px; width: auto; }
  .impact-card {
    padding: 32px;
  }
  .audience-list div {
    min-height: auto;
    padding: 22px;
  }
  .roadmap-item {
    margin-left: 44px;
    padding: 22px;
  }
  .roadmap-item-large {
    padding: 26px;
    border-radius: 28px;
  }
  .roadmap-item::before {
    left: -36px;
  }
  .roadmap-timeline::before {
    left: 17px;
  }
  .cta-note { font-size: 0.92rem; }

  @supports (grid-template-rows: subgrid) {
    .journey-branches {
      grid-template-rows: auto auto auto;
      align-items: stretch;
    }

    .journey-branch {
      display: grid;
      grid-row: 1 / span 3;
      grid-template-rows: subgrid;
      row-gap: 14px;
    }

    .journey-branch-steps {
      display: contents;
    }

    .journey-branch .journey-track-copy {
      grid-row: 1;
    }

    .journey-branch .journey-branch-steps li:nth-child(1) {
      grid-row: 2;
    }

    .journey-branch .journey-branch-steps li:nth-child(2) {
      grid-row: 3;
    }
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-grid {
    overflow: hidden;
  }

  .hero-copy {
    overflow: visible;
  }

  .hero-copy .section-kicker {
    margin-left: 18px;
  }

  .hero {
    padding-bottom: 112px;
  }

  .hero-visual {
    display: none;
  }

  .desktop-preview {
    width: 100%;
  }

  .phone-overlap {
    position: absolute;
    right: 8px;
    bottom: -8px;
    width: min(128px, 34vw);
  }

  .phone-overlap {
    display: none;
  }

  .phone-main,
  .phone-secondary {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: 100%;
    min-width: 0;
    transform: none !important;
  }

  .phone-main {
    width: min(42vw, 178px);
    order: 2;
  }

  .phone-secondary {
    width: min(38vw, 158px);
    order: 1;
    margin-top: 36px;
  }

  .hero-device-glow {
    width: min(520px, 100%);
    height: min(520px, 100vw);
  }

  .hero-device-orbit {
    width: min(410px, 86%);
  }

  .hero-insight {
    display: none;
  }

  .phone img,
  .showcase-phone img {
    width: 100%;
    display: block;
  }

  .product-grid {
    display: block;
  }

  .showcase {
    min-height: auto;
    margin: 32px auto 0;
  }

  .showcase-phone {
    width: min(86vw, 340px);
    max-width: 100%;
    margin-inline: auto;
    transform: none;
  }

  .showcase-glow {
    width: min(86vw, 360px);
    height: min(86vw, 360px);
  }

}

@media (max-width: 420px) {
  .brand-name {
    display: inline;
    font-size: 0.95rem;
    letter-spacing: -0.045em;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .language-option {
    min-width: 32px;
    padding-inline: 7px;
    font-size: 0.72rem;
  }

  .hero {
    padding-bottom: 100px;
  }

  .hero-visual {
    gap: 8px;
    min-height: auto;
    padding-top: 20px;
  }

  .phone-main {
    width: min(43vw, 156px);
  }

  .phone-secondary {
    display: block;
    width: min(38vw, 138px);
    margin-top: 30px;
  }

}

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