/* LeylekTAG product page — corporate tokens + product accent */
:root {
  color-scheme: dark;
  --bg-0: #060b14;
  --bg-1: #0b1220;
  --bg-2: #111a2b;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fa;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --brand: #0066ff;
  --brand-soft: rgba(0, 102, 255, 0.12);
  --leylek: #22d3ee;
  --leylek-soft: rgba(34, 211, 238, 0.12);
  --leylek-border: rgba(34, 211, 238, 0.22);
  --container: 1120px;
  --nav-height: 72px;
  --space-3: 24px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --radius-lg: 16px;
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "SF Mono", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--leylek);
  outline-offset: 2px;
}

.product-nav-links a:focus-visible {
  color: var(--text);
  background: var(--surface);
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--space-3)));
  margin: 0 auto;
}

.product-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease,
    border-color 0.4s ease;
}

.product-nav.is-scrolled {
  background: rgba(6, 11, 20, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.product-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1rem;
}

.product-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-nav-links a {
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 1.25rem 0 0;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--leylek);
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-5);
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr min(320px, 38%);
  gap: var(--space-5);
  align-items: center;
}

.product-hero-copy {
  min-width: 0;
}

/* ── Phase 10B: Hero motion backdrop (CSS-only) ── */
.hero-motion-backdrop {
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-gradient-field {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    135deg,
    #060b14 0%,
    #0b1220 22%,
    rgba(34, 211, 238, 0.08) 42%,
    #081528 58%,
    #0066ff 72%,
    #060b14 100%
  );
  background-size: 240% 240%;
  opacity: 0.42;
  animation: heroGradientBreath 10s ease-in-out infinite;
}

@keyframes heroGradientBreath {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
  animation: heroNodePulse 4.5s ease-in-out infinite;
}

.hero-node--1 { top: 18%; left: 12%; animation-delay: 0s; }
.hero-node--2 { top: 62%; left: 8%; animation-delay: 0.8s; }
.hero-node--3 { top: 28%; right: 14%; animation-delay: 1.6s; }
.hero-node--4 { bottom: 22%; right: 20%; animation-delay: 2.2s; }
.hero-node--5 { bottom: 12%; left: 38%; animation-delay: 3s; width: 4px; height: 4px; opacity: 0.7; }

@keyframes heroNodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

/* ── Hero phone mockup (premium CSS/SVG app UI — no screenshots) ── */
.phone-mockup {
  position: relative;
  justify-self: end;
  width: min(100%, 300px);
  margin: 0 auto;
}

.phone-glow {
  position: absolute;
  inset: 8% -12% -8%;
  background:
    radial-gradient(ellipse at 45% 55%, rgba(34, 211, 238, 0.22), transparent 58%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 102, 255, 0.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  transform-origin: 50% 55%;
  animation: phoneGlowBreath 9s ease-in-out infinite;
}

@keyframes phoneGlowBreath {
  0%, 100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

.phone-device {
  position: relative;
  z-index: 1;
}

.phone-side-btn {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(180deg, #2a3548, #141c2a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.phone-side-btn--silent {
  left: -3px;
  top: 18%;
  width: 3px;
  height: 14px;
}

.phone-side-btn--vol-up {
  left: -3px;
  top: 26%;
  width: 3px;
  height: 28px;
}

.phone-side-btn--vol-down {
  left: -3px;
  top: 36%;
  width: 3px;
  height: 28px;
}

.phone-side-btn--power {
  right: -3px;
  top: 28%;
  width: 3px;
  height: 42px;
}

.phone-frame {
  position: relative;
  padding: 11px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, transparent 42%),
    linear-gradient(165deg, #2a3448 0%, #121a28 38%, #0a1018 100%);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.06) inset,
    0 -1px 0 rgba(0, 0, 0, 0.4) inset,
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.phone-bezel {
  padding: 2px;
  border-radius: 34px;
  background: linear-gradient(180deg, #05080f, #10182a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #060b14;
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 9 / 19.2;
  min-height: 420px;
}

.app-status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 0;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(245, 247, 250, 0.92);
  pointer-events: none;
}

.app-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-signal,
.app-wifi,
.app-battery {
  display: block;
  border-radius: 1px;
  background: rgba(245, 247, 250, 0.88);
}

.app-signal {
  width: 14px;
  height: 8px;
  clip-path: polygon(0 100%, 25% 55%, 50% 75%, 75% 35%, 100% 55%, 100% 100%);
  background: linear-gradient(90deg, rgba(245, 247, 250, 0.95), rgba(245, 247, 250, 0.55));
}

.app-wifi {
  width: 10px;
  height: 8px;
  border-radius: 999px 999px 0 0;
  border: 2px solid rgba(245, 247, 250, 0.88);
  border-bottom: none;
  background: transparent;
}

.app-battery {
  width: 16px;
  height: 8px;
  border: 1px solid rgba(245, 247, 250, 0.75);
  border-radius: 2px;
  position: relative;
}

.app-battery::after {
  content: "";
  position: absolute;
  inset: 1px 3px 1px 1px;
  border-radius: 1px;
  background: rgba(245, 247, 250, 0.88);
}

.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  width: 34%;
  min-width: 88px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

.phone-island-cam {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2840, #05080f 65%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.phone-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: phoneSlideRoute 15s ease-in-out infinite;
}

.phone-slide--qr {
  animation-name: phoneSlideQr;
}

.phone-slide--trust {
  animation-name: phoneSlideTrust;
}

@keyframes phoneSlideRoute {
  0%, 28% { opacity: 1; z-index: 3; }
  33%, 100% { opacity: 0; z-index: 1; }
}

@keyframes phoneSlideQr {
  0%, 31% { opacity: 0; z-index: 1; }
  33%, 61% { opacity: 1; z-index: 3; }
  66%, 100% { opacity: 0; z-index: 1; }
}

@keyframes phoneSlideTrust {
  0%, 64% { opacity: 0; z-index: 1; }
  66%, 94% { opacity: 1; z-index: 3; }
  100% { opacity: 0; z-index: 1; }
}

.phone-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.phone-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  animation: phoneDotPulse 15s ease-in-out infinite;
}

.phone-carousel-dot--2 {
  animation-delay: 5s;
}

.phone-carousel-dot--3 {
  animation-delay: 10s;
}

@keyframes phoneDotPulse {
  0%, 28% { background: var(--leylek); transform: scale(1.15); }
  33%, 100% { background: rgba(255, 255, 255, 0.18); transform: scale(1); }
}

.phone-carousel-dot--2 {
  animation-name: phoneDotPulse2;
}

@keyframes phoneDotPulse2 {
  0%, 31% { background: rgba(255, 255, 255, 0.18); transform: scale(1); }
  33%, 61% { background: var(--leylek); transform: scale(1.15); }
  66%, 100% { background: rgba(255, 255, 255, 0.18); transform: scale(1); }
}

.phone-carousel-dot--3 {
  animation-name: phoneDotPulse3;
}

@keyframes phoneDotPulse3 {
  0%, 64% { background: rgba(255, 255, 255, 0.18); transform: scale(1); }
  66%, 94% { background: var(--leylek); transform: scale(1.15); }
  100% { background: rgba(255, 255, 255, 0.18); transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-slide,
  .phone-carousel-dot {
    animation: none !important;
  }

  .phone-slide--route {
    opacity: 1;
    z-index: 3;
  }

  .phone-slide--qr,
  .phone-slide--trust {
    opacity: 0;
    z-index: 1;
  }

  .phone-carousel-dot--1 {
    background: var(--leylek);
  }

  .mock-live-dot {
    animation: none !important;
  }

  .app-qr-scanline {
    animation: none !important;
    display: none;
  }
}

.phone-screen-reflection {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.03) 22%,
    transparent 42%
  );
  mix-blend-mode: soft-light;
  animation: glassSheen 3.6s ease-in-out infinite;
}

@keyframes glassSheen {
  0%, 100% {
    opacity: 0.55;
    transform: translateX(-2%) skewX(-2deg);
  }
  50% {
    opacity: 0.95;
    transform: translateX(3%) skewX(-2deg);
  }
}

.phone-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 32%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.app-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 36px 0.75rem 0.35rem;
  position: relative;
  z-index: 2;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(16, 26, 43, 0.88);
  border: 1px solid var(--border);
}

.mock-pill--live {
  color: var(--leylek);
  border-color: var(--leylek-border);
  background: rgba(34, 211, 238, 0.1);
}

.mock-pill--role {
  color: rgba(186, 201, 222, 0.92);
  border-color: rgba(30, 58, 95, 0.85);
}

.mock-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--leylek);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.65);
  animation: mockLivePulse 2s ease-in-out infinite;
}

@keyframes mockLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.app-map-layer {
  flex: 1;
  min-height: 0;
  margin: 0 0.35rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.55);
}

.app-map-layer--dim {
  opacity: 0.45;
  filter: saturate(0.7);
}

.app-map-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
}

.app-route-flow {
  stroke-dasharray: 14 220;
  animation: routeFlowLight 4.2s linear infinite;
}

@keyframes routeFlowLight {
  to {
    stroke-dashoffset: -234;
  }
}

.app-map-node {
  transform-box: fill-box;
  transform-origin: center;
  animation: mapNodePulse 3.6s ease-in-out infinite;
}

.app-map-node--dest {
  animation-delay: 1.2s;
}

@keyframes mapNodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.82;
  }
}

.app-sheet {
  padding: 0.45rem 0.65rem 0.35rem;
  display: grid;
  gap: 0.35rem;
}

.app-route-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.58rem;
  color: var(--text-muted);
}

.app-route-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.app-route-dot--origin {
  background: var(--leylek);
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.45);
}

.app-route-dot--dest {
  background: var(--brand);
}

.app-route-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 11px;
  border: 1px solid rgba(30, 58, 95, 0.75);
  background: rgba(16, 26, 43, 0.92);
  font-size: 0.6rem;
}

.mock-card-body {
  flex: 1;
  min-width: 0;
}

.mock-card strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.62rem;
}

.mock-card small {
  display: block;
  color: var(--text-dim);
  font-size: 0.55rem;
  margin-top: 0.1rem;
}

.mock-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #041018;
  background: linear-gradient(145deg, #22d3ee, #3b82f6);
  flex-shrink: 0;
}

.mock-avatar--lg {
  width: 32px;
  height: 32px;
  font-size: 0.68rem;
}

.mock-avatar--driver {
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leylek);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
  flex-shrink: 0;
}

.mock-dot--trust {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.45);
}

.app-offer-card {
  border-color: rgba(34, 211, 238, 0.35);
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.08), rgba(16, 26, 43, 0.95));
}

.app-offer-cta {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 700;
  color: #041018;
  background: var(--leylek);
  flex-shrink: 0;
}

.app-qr-overlay {
  position: absolute;
  inset: 36px 0 52px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 0.75rem;
}

.app-qr-frame {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 14px;
  border: 2px dashed rgba(34, 211, 238, 0.55);
  background: rgba(8, 17, 31, 0.82);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.app-qr-scanline {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.85), transparent);
  animation: qrScan 2.8s ease-in-out infinite;
}

@keyframes qrScan {
  0%, 100% { top: 12%; opacity: 0.4; }
  50% { top: 82%; opacity: 1; }
}

.app-qr-card {
  width: 100%;
}

.app-qr-hint {
  margin: 0;
  font-size: 0.55rem;
  color: var(--text-dim);
  text-align: center;
}

.app-trust-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 2.5rem 0.85rem 0.5rem;
  text-align: center;
}

.app-trust-shield svg {
  width: 44px;
  height: 44px;
}

.app-trust-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.app-trust-copy {
  margin: 0;
  font-size: 0.58rem;
  color: var(--text-dim);
  max-width: 16em;
  line-height: 1.45;
}

.app-trust-profiles {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
}

.app-trust-link {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leylek), var(--brand));
}

.app-trust-card {
  width: 100%;
  margin-top: 0.25rem;
}

.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0.35rem 0.5rem 0.65rem;
  margin-top: auto;
  border-top: 1px solid rgba(30, 58, 95, 0.65);
  background: rgba(8, 13, 24, 0.96);
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 42px;
}

.app-nav-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
}

.app-nav-icon--map {
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.12) 45%),
    rgba(255, 255, 255, 0.12);
}

.app-nav-icon--offers::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.app-nav-icon--trust {
  clip-path: polygon(50% 8%, 88% 28%, 88% 68%, 50% 92%, 12% 68%, 12% 28%);
  background: rgba(255, 255, 255, 0.16);
}

.app-nav-icon--profile {
  border-radius: 50%;
}

.app-nav-label {
  font-size: 0.48rem;
  color: var(--text-dim);
  font-weight: 600;
}

.app-nav-item--active .app-nav-icon {
  background: var(--leylek);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
}

.app-nav-item--active .app-nav-label {
  color: var(--leylek);
}

.mock-card--qr svg,
.app-qr-glyph {
  flex-shrink: 0;
}

/* ── Flow visual cards ── */
.flow-visual-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.flow-visual-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 100%;
}

.flow-visual-card--accent {
  border-color: var(--leylek-border);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.06), var(--surface));
}

.flow-visual-icon {
  color: var(--leylek);
  margin-bottom: 0.65rem;
}

.flow-icon {
  width: 36px;
  height: 36px;
}

.flow-visual-mock {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.flow-visual-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

.flow-visual-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.flow-mini {
  position: relative;
}

.flow-mini--qr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 36px;
}

.flow-mini--qr span {
  aspect-ratio: 1;
  border-radius: 2px;
  border: 1.5px solid var(--leylek);
  opacity: 0.7;
}

.flow-mini--trust {
  width: 40px;
  height: 40px;
}

.flow-mini-ring {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--leylek);
  opacity: 0.35;
}

.flow-mini-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leylek);
  font-size: 1rem;
  font-weight: 700;
}

.flow-mini--match {
  display: flex;
  align-items: center;
  gap: 4px;
}

.flow-mini--match span:first-child,
.flow-mini--match span:last-child {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--leylek);
}

.flow-mini-link {
  width: 16px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

.flow-mini--route svg {
  width: 72px;
  height: 36px;
}

.flow-mini--notify {
  position: relative;
  width: 28px;
  height: 32px;
}

.flow-mini-bell {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px 4px 8px 8px;
  border: 2px solid var(--text-muted);
  border-top: none;
}

.flow-mini-bell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 4px;
  border-radius: 4px 4px 0 0;
  border: 2px solid var(--text-muted);
  border-bottom: none;
}

.flow-mini-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leylek);
}

/* ── Premium architecture diagram ── */
.arch-diagram-premium {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 102, 255, 0.08), transparent),
    var(--bg-2);
}

.arch-layer {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
}

.arch-layer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.arch-layer-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.arch-layer-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.arch-chip {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.arch-chip--primary {
  border-color: var(--leylek-border);
  color: var(--leylek);
  background: var(--leylek-soft);
}

.arch-connector {
  display: flex;
  justify-content: center;
  height: 28px;
  position: relative;
}

.arch-connector span {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--leylek-border), var(--brand-soft));
  border-radius: 1px;
}

.arch-connector--split {
  justify-content: space-around;
  padding: 0 25%;
}

.arch-layer--client {
  border-color: rgba(34, 211, 238, 0.2);
}

/* ── Journey timeline ── */
.journey-timeline-wrap {
  position: relative;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 0;
  position: relative;
  min-width: min(100%, 960px);
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--leylek-border), var(--brand), var(--leylek-border));
  z-index: 0;
}

.journey-timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.35rem;
}

.journey-timeline-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  border: 2px solid var(--leylek-border);
  background: var(--bg-1);
  box-shadow: 0 0 0 4px var(--bg-1);
}

.journey-icon {
  width: 24px;
  height: 24px;
  color: var(--leylek);
}

.journey-timeline-num {
  position: absolute;
  bottom: -6px;
  right: -4px;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--leylek);
  background: var(--bg-2);
  border: 1px solid var(--leylek-border);
}

.journey-timeline-body h3 {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
}

.journey-timeline-body p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Engineering narrative (Phase 6) ── */
.architecture-intro {
  margin-bottom: var(--space-3);
}

.architecture-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.architecture-stat {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.architecture-stat-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.architecture-stat-value {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--leylek);
}

.arch-diagram-premium--engineering {
  margin-top: 0;
}

.arch-diagram-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.arch-diagram-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.arch-diagram-note {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.engineering-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.principle-card {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.principle-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--leylek);
}

.principle-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.engineering-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.infra-layers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.infra-layer-tile {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 100%;
}

.infra-layer-tile--accent {
  border-color: var(--leylek-border);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.05), var(--surface));
}

.infra-layer-tile h3 {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.infra-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.infra-chip {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.infra-layer-tile--accent .infra-chip {
  color: var(--leylek);
  border-color: var(--leylek-border);
}

.infra-flow-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: var(--space-3);
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px dashed var(--border);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.infra-flow-arrow {
  color: var(--leylek);
  font-size: 1.1rem;
}

.scale-roadmap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scale-roadmap-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.scale-roadmap-list li:last-child {
  border-bottom: none;
}

.scale-roadmap-list strong {
  font-size: 0.92rem;
  color: var(--text);
}

.scale-roadmap-list span:not(.roadmap-tag) {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.engineering-disclaimer {
  margin: var(--space-3) 0 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── Partner / investor confidence (Phase 7) ── */
.confidence-grid {
  display: grid;
  gap: var(--space-3);
}

.confidence-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.confidence-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 100%;
}

.confidence-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: var(--text);
}

.confidence-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.confidence-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.value-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.value-pillar {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  border-left: 3px solid var(--leylek);
}

.value-pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--leylek);
}

.value-pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.investor-context-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.investor-point {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.investor-point:last-of-type {
  border-bottom: none;
}

.investor-point strong {
  font-size: 0.92rem;
  color: var(--text);
}

.investor-point span {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.confidence-disclaimer {
  margin-top: var(--space-5);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.06);
}

.confidence-disclaimer p {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.confidence-disclaimer p:last-child {
  margin-bottom: 0;
}

.confidence-disclaimer strong {
  color: var(--text);
}

.confidence-disclaimer a {
  color: var(--leylek);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--leylek-soft);
  color: var(--leylek);
  border: 1px solid var(--leylek-border);
}

.product-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.product-hero .lead {
  max-width: 640px;
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.product-hero .note {
  max-width: 640px;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-leylek {
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  color: #041018;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.btn-leylek:hover {
  transform: scale(1.02);
  filter: brightness(1.04);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.32);
}

.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: var(--surface);
}

.btn-outline:hover {
  border-color: var(--leylek-border);
  color: var(--leylek);
}

.section {
  padding: var(--space-6) 0;
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card,
.flow-visual-card,
.confidence-card,
.value-pillar,
.principle-card,
.infra-layer-tile,
.overview-col,
.scale-roadmap-list li {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover,
  .flow-visual-card:hover,
  .confidence-card:hover,
  .value-pillar:hover,
  .principle-card:hover,
  .infra-layer-tile:hover,
  .overview-col:hover,
  .scale-roadmap-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    border-color: rgba(34, 211, 238, 0.18);
  }
}

.section-crosslink {
  color: var(--leylek);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-crosslink:hover {
  filter: brightness(1.1);
}

.section-alt {
  background: var(--bg-1);
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-5);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leylek);
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.025em;
  font-weight: 600;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 65ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.product-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-card.leylek-accent {
  border-color: var(--leylek-border);
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.06), var(--surface));
}

.overview-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.overview-col h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--leylek);
}

.overview-col p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.arch-diagram {
  margin-top: var(--space-3);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow-x: auto;
}

.arch-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.arch-row:last-child {
  margin-bottom: 0;
}

.arch-label {
  flex: 0 0 120px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.arch-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.arch-node {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.arch-node.highlight {
  border-color: var(--leylek);
  color: var(--leylek);
  background: var(--leylek-soft);
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  counter-reset: journey;
}

.journey-step {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.journey-step::before {
  counter-increment: journey;
  content: counter(journey, decimal-leading-zero);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--leylek);
}

.journey-step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

.journey-step p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.roadmap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.roadmap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.roadmap-tag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.cta-band {
  text-align: center;
  padding: var(--space-6) var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--leylek-border);
  background: linear-gradient(160deg, var(--leylek-soft), var(--bg-2));
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 520px;
  color: var(--text-muted);
}

.legal-links {
  margin-top: var(--space-5);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.legal-links h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.legal-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.legal-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: var(--leylek);
}

.product-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: var(--space-5);
  color: var(--text-dim);
  font-size: 0.82rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

#download {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

@media (max-width: 900px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    order: -1;
    max-width: 260px;
  }

  .phone-screen {
    min-height: 380px;
  }

  .flow-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-timeline {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    row-gap: 1.5rem;
  }

  .journey-timeline::before {
    display: none;
  }

  .arch-layer-row {
    grid-template-columns: 1fr;
  }

  .architecture-stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .engineering-principles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .infra-layers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .confidence-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .value-pillars-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .overview-cols,
  .journey,
  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .product-nav-inner {
    flex-wrap: wrap;
    align-items: stretch;
    min-height: auto;
    padding: 0.65rem 0;
    gap: 0.5rem;
  }

  .product-nav nav {
    width: 100%;
    overflow: hidden;
  }

  .product-nav-links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.25rem;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-nav-links::-webkit-scrollbar {
    display: none;
  }

  .product-nav-links a {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .flow-visual-grid {
    grid-template-columns: 1fr;
  }

  .architecture-stat-row,
  .engineering-principles-grid,
  .infra-layers-grid,
  .confidence-grid--4 {
    grid-template-columns: 1fr;
  }

  .journey-timeline {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .card-grid,
  .card-grid-2,
  .overview-cols,
  .journey,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .arch-label {
    flex: 0 0 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark--animate .kk-finder-frame,
  .brand-mark--animate .kk-finder-module,
  .brand-mark--animate .kk-k-stroke,
  .brand-mark--animate .kk-node,
  .hero-gradient-field,
  .hero-node,
  .phone-glow,
  .phone-slide,
  .phone-carousel-dot,
  .mock-live-dot,
  .app-qr-scanline,
  .phone-screen-reflection,
  .app-route-flow,
  .app-map-node {
    animation: none !important;
  }

  .phone-slide--route {
    opacity: 1;
    z-index: 3;
  }

  .phone-slide--qr,
  .phone-slide--trust {
    opacity: 0;
    z-index: 1;
  }

  .phone-carousel-dot--1 {
    background: var(--leylek);
  }

  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-card,
  .flow-visual-card,
  .confidence-card,
  .value-pillar,
  .principle-card,
  .infra-layer-tile,
  .overview-col,
  .scale-roadmap-list li,
  .btn-leylek,
  .product-nav {
    transition: none;
  }

  .btn-leylek:hover {
    transform: none;
    box-shadow: none;
  }
}
