/* Leylek Yolculuk product page ? foundation tokens + product theme hooks only. */
@import url("/assets/brand/public-foundation.89416c4b774437e3.css");
@import url("/assets/public-chrome.7c8883ddfddeaf74.css");
@import url("/assets/product-page-foundation.04847343a9a06398.css");

:root {
  /* Product theme extension (A3 hooks) ? do not rewrite corporate semantics globally. */
  --theme-product-accent: var(--theme-leylek-accent);
  --theme-product-accent-soft: var(--theme-leylek-accent-soft);
  --leylek: var(--theme-leylek-accent);
  --leylek-soft: var(--theme-leylek-accent-soft);
  --leylek-border: rgba(34, 211, 238, 0.2);
  --brand-focus: var(--leylek);
  --brand-data: var(--leylek);
  --cyan: var(--leylek);
  --cyan-soft: var(--leylek-soft);
  --glow-focus: rgba(34, 211, 238, 0.22);
  --focus-ring: 2px solid var(--brand-focus);

  /* Product layout / optical overrides */
  --container: 1180px;
  --container-product: var(--container);
  --brand-mark-product-size: 32px;
  --icon-color: var(--brand-data);
  --icon-bg: var(--leylek-soft);
  --icon-radius: var(--radius-sm);
  --text-heading-1: clamp(1.6rem, 2.8vw, 2.1rem);

  /* Product Experience V2 ? composition utilities */
  --product-hero-copy-max: 36rem;
  --product-phone-glow-opacity: 0.55;
  --product-appendix-opacity: 0.92;
  --product-surface-quiet: transparent;
  --product-border-quiet: var(--border-subtle);
}

*,
*::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-body);
  font-weight: var(--weight-regular);
  background: var(--bg-0);
  color: var(--text);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-normal);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.skip-link {
  position: absolute;
  left: var(--space-2);
  top: var(--space-2);
  z-index: 200;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-semibold);
  border: 1px solid var(--border-strong);
  transform: translateY(-160%);
  transition: transform var(--motion-duration-fast) var(--motion-ease-standard);
}

.skip-link:focus {
  transform: translateY(0);
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.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.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background var(--motion-duration-base) var(--motion-ease-standard),
    border-color var(--motion-duration-base) var(--motion-ease-standard);
}

.product-nav.is-scrolled {
  background: rgba(6, 11, 20, 0.94);
  border-bottom-color: var(--border-strong);
}

.product-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--nav-height);
}

.product-nav .brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--brand-lockup-gap);
  padding: var(--brand-clear-space) 0;
  text-decoration: none;
  color: inherit;
}

.brand-text-compact {
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-normal);
}

.product-nav-links a {
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  transition:
    color var(--motion-duration-fast) var(--motion-ease-standard),
    background var(--motion-duration-fast) var(--motion-ease-standard);
}

.product-nav .brand-mark--raster,
.product-nav img.brand-mark {
  width: var(--brand-mark-product-size);
  height: var(--brand-mark-product-size);
  object-fit: contain;
  object-position: center;
  border-radius: 7px;
  flex-shrink: 0;
}

.product-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1023px) {
  .product-nav-links:not(.is-open) {
    display: none;
  }

  .product-nav {
    position: sticky;
  }

  .product-nav-links.is-open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 130;
    gap: 0;
    margin: 0;
    padding: 0.5rem 1rem 0.85rem;
    list-style: none;
    background: #060b14;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.45);
  }

  .product-nav-links.is-open a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.65rem;
    border-radius: var(--radius-sm);
    color: #f8fafc;
    background: transparent;
  }

  .product-nav-links.is-open a:hover,
  .product-nav-links.is-open a:focus-visible {
    background: rgba(34, 211, 238, 0.12);
    color: #fff;
  }
}

.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-section-md) 0 var(--space-section-sm);
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, min(440px, 46%));
  gap: var(--space-7, 2rem);
  align-items: center;
}

.product-hero-copy {
  min-width: 0;
  max-width: var(--product-hero-copy-max);
}

/* ?? 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.04) 42%,
    #081528 58%,
    rgba(0, 102, 255, 0.55) 72%,
    #060b14 100%
  );
  background-size: 140% 140%;
  background-position: 30% 50%;
  opacity: 0.28;
  /* Static ambient field ? no infinite breathing (Motion V2) */
}

.hero-node {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.18);
  opacity: var(--motion-opacity-muted);
  /* Static markers ? no infinite pulse */
}

.hero-node--1 { top: 18%; left: 12%; }
.hero-node--2 { top: 62%; left: 8%; }
.hero-node--3 { top: 28%; right: 14%; }
.hero-node--4 { bottom: 22%; right: 20%; }
.hero-node--5 { bottom: 12%; left: 38%; width: 4px; height: 4px; opacity: 0.55; }

/* ?? 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: 10% -8% -6%;
  background:
    radial-gradient(ellipse at 45% 55%, rgba(34, 211, 238, 0.05), transparent 60%),
    radial-gradient(ellipse at 70% 30%, var(--glow-hero), transparent 55%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  opacity: var(--product-phone-glow-opacity);
  /* Static soft wash ? no infinite breath */
}

.phone-frame {
  position: relative;
  padding: 10px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(165deg, #243044 0%, #121a28 42%, #0a1018 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 40px rgba(0, 0, 0, 0.38);
}

.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::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0.04) 38%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.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 22s 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 22s 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.11) 0%,
    rgba(255, 255, 255, 0.02) 22%,
    transparent 42%
  );
  mix-blend-mode: soft-light;
  opacity: 0.5;
  /* Static glass highlight ? no shimmer loop */
}

.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: var(--badge-padding-y) var(--badge-padding-x);
  border-radius: var(--badge-radius);
  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 4px rgba(34, 211, 238, 0.28);
  /* Live indicator is static ? status, not decoration */
}

.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;
  stroke-dashoffset: 0;
  /* Static route dash ? no infinite flow */
}

.app-map-node {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 1;
}

.app-map-node--dest {
  opacity: 0.92;
}

.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%;
  top: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.55), transparent);
  opacity: 0.65;
  /* Static scan cue ? no loop */
}

.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: var(--space-3);
  border-radius: var(--card-radius);
  border: 1px solid var(--product-border-quiet);
  background: var(--product-surface-quiet);
  min-height: 100%;
}

.flow-visual-card--accent {
  border-color: var(--border);
  background: var(--surface);
}

.flow-visual-icon {
  color: var(--icon-color);
  margin-bottom: 0.65rem;
}

.flow-icon,
.journey-icon,
.ui-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  stroke-width: var(--icon-stroke);
  flex-shrink: 0;
}

.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: 1px;
  background: var(--border-subtle);
  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: 52px;
  height: 52px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-1);
  box-shadow: none;
}

.journey-icon {
  width: 24px;
  height: 24px;
  color: var(--icon-color);
}

.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: var(--space-3) 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  background: transparent;
}

.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: var(--space-3) 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  background: transparent;
  min-height: 0;
}

.infra-layer-tile--accent {
  border-color: transparent;
  border-top-color: var(--border-subtle);
  background: transparent;
}

.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-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.confidence-card {
  padding: var(--space-3) 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  background: transparent;
  min-height: 0;
}

.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: var(--space-3) 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  background: transparent;
}

.value-pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.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-family: var(--font-ui);
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  background: var(--leylek-soft);
  color: var(--leylek);
  border: 1px solid var(--leylek-border);
}

/* LYK-WEB-C2 ? Leylek product lockup (stork + typeset wordmark) */
.lyk-product-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.85rem;
  max-width: 100%;
}

.lyk-product-symbol {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.lyk-product-lockup-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-hero h1.lyk-product-wordmark {
  margin: 0;
}

.lyk-product-wordmark--text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--text);
}

.product-hero--cinematic .lyk-product-lockup {
  margin-bottom: 1.1rem;
}

.product-hero--cinematic .product-hero-headline {
  margin: 0 0 0.65rem;
  max-width: 18ch;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.product-hero-brand-line {
  margin: 0 0 0.85rem;
  font-family: var(--font-ui);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold, 600);
  letter-spacing: 0.01em;
  color: var(--leylek, #22d3ee);
}

.product-hero-free {
  margin: 0 0 1rem;
  font-size: var(--text-body);
  font-weight: var(--weight-medium, 500);
  color: var(--text);
}

.product-hero-primary-cta {
  min-height: 44px;
  padding-inline: 1.35rem;
}

.lyk-product-endorsement {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: var(--weight-medium, 500);
  color: var(--text-muted);
  max-width: 28rem;
  text-transform: none;
  letter-spacing: normal;
}

.lyk-product-lockup--compact {
  gap: 0.55rem;
  margin: 0;
}

.lyk-product-lockup--compact .lyk-product-symbol {
  width: 32px;
  height: 32px;
}

.lyk-product-wordmark-text {
  font-weight: var(--weight-semibold);
  font-size: 1rem;
  line-height: 1.2;
}

@media (max-width: 430px) {
  .lyk-product-symbol {
    width: 48px;
    height: 48px;
  }

  .lyk-product-endorsement {
    font-size: 0.78rem;
  }
}

.product-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: var(--text-display-xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}

.product-hero .lead {
  max-width: var(--prose);
  margin: 0 0 0.75rem;
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  line-height: var(--leading-body);
}

.product-hero .lead.lead-secondary {
  font-size: var(--text-body);
  color: var(--text-dim);
  margin-bottom: 1.1rem;
  max-width: 52ch;
}

.product-hero .note {
  max-width: 640px;
  margin: 1rem 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.product-hero-meta {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.product-hero-meta-link {
  color: var(--text-muted);
  text-decoration: none;
}

.product-hero-meta-link:hover {
  color: var(--leylek);
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-hero-actions--store {
  margin-bottom: 0.15rem;
}

.product-hero-actions--store .btn-leylek {
  min-width: 12rem;
}

.btn-outline-store {
  border-color: var(--leylek-border);
  color: var(--leylek);
}

.btn-outline-store:hover {
  border-color: var(--leylek);
  background: var(--leylek-soft);
  color: var(--text);
}

.cta-band-secondary {
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.cta-band-secondary a {
  color: var(--text-muted);
}

.cta-band-secondary a:hover {
  color: var(--leylek);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-family: var(--font-ui);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--tracking-normal);
  text-transform: none;
  transition: var(--transition-control);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: var(--btn-disabled-opacity);
  pointer-events: none;
}

.btn-leylek {
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  color: #041018;
  transition: var(--transition-control);
}

.btn-leylek:hover {
  transform: translateY(var(--hover-lift));
  filter: brightness(1.02);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.16);
}

.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-section-md) 0;
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.section-reveal {
  /* Visible by default so content remains readable if JS fails. */
  opacity: 1;
  transform: none;
}

html.lyk-reveal-armed .section-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(var(--motion-distance-md));
  transition:
    opacity var(--motion-duration-slow) var(--motion-ease-emphasized),
    transform var(--motion-duration-slow) var(--motion-ease-emphasized);
}

html.lyk-reveal-armed .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: var(--transition-control);
}

@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(var(--hover-lift));
    border-color: rgba(34, 211, 238, 0.18);
  }
}

.section-crosslink {
  color: var(--leylek);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-crosslink:hover {
  opacity: var(--link-hover-opacity);
}

.section-alt {
  background: var(--bg-1);
  padding: var(--space-section-lg) 0;
}

.section-header {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-ui);
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--leylek);
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: var(--text-heading-1);
  letter-spacing: var(--tracking-heading);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-heading);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: var(--prose);
  line-height: 1.55;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

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

.product-card {
  padding: var(--pad-card-tight);
  border-radius: var(--card-radius);
  border: 1px solid var(--product-border-quiet);
  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(--border);
  background: var(--surface);
}

.overview-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.overview-col {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  border-radius: 0;
}

.overview-col h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.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: var(--space-3) 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  background: transparent;
}

.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-5) var(--space-4);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.product-hero-actions--center {
  justify-content: center;
}

.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: var(--space-4) 0 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  background: transparent;
}

.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);
}

.store-trust-card {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  background: transparent;
  max-width: 640px;
}

.store-trust-card--compact {
  margin: 1.1rem auto 0;
  max-width: 520px;
  text-align: left;
}

.store-trust-card h2 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.store-trust-developer {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.store-trust-note {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.store-trust-card--compact .store-trust-note {
  margin-bottom: 0;
}

.store-trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 0.85rem 1.25rem;
}

.store-trust-group h3 {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.store-trust-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.store-trust-group a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.store-trust-group a:hover,
.store-trust-group a:focus-visible {
  color: var(--leylek);
  outline: none;
}

.store-trust-email {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

#store-trust {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

@media (max-width: 640px) {
  .store-trust-grid {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}

.faq-item {
  border-radius: var(--card-radius);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--border);
  background: var(--surface-hover);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 44px;
  padding: 0.85rem 1.05rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform var(--motion-duration-base) var(--motion-ease-standard);
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.2rem;
}

.faq-item summary:hover {
  color: var(--leylek);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--brand-focus);
  outline-offset: -2px;
  border-radius: var(--radius-lg);
}

.faq-answer {
  padding: 0 1.05rem 1rem;
  max-width: 62ch;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.faq-answer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: var(--leylek);
  outline: none;
}

.faq-answer a:focus-visible {
  outline: 2px solid var(--brand-focus);
  outline-offset: 2px;
}

.faq-email {
  color: var(--text-dim);
  font-size: 0.85rem;
}

#faq {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after {
    transition: none;
  }
}

#who-for,
#partner-value,
#engineering-principles,
#infrastructure-layers,
#scale-roadmap,
#architecture {
  opacity: var(--product-appendix-opacity);
}

#who-for .section-header,
#partner-value .section-header,
#engineering-principles .section-header,
#infrastructure-layers .section-header,
#scale-roadmap .section-header,
#architecture .section-header {
  margin-bottom: var(--space-4);
}

#who-for.section,
#partner-value.section,
#engineering-principles.section,
#infrastructure-layers.section,
#scale-roadmap.section,
#architecture.section {
  padding: var(--space-section-sm) 0;
}

.section-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.product-footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4) 0;
  margin-top: var(--space-5);
  color: var(--text-dim);
  font-size: 0.82rem;
}

@media (hover: hover) and (pointer: fine) {
  .overview-col:hover,
  .confidence-card:hover,
  .value-pillar:hover,
  .principle-card:hover,
  .infra-layer-tile:hover {
    transform: none;
    border-color: inherit;
  }
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

#indir,
#final-store {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

@media (max-width: 900px) {
  .product-hero {
    padding: var(--space-5) 0 var(--space-4);
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .product-hero--cinematic .lyk-journey-stage {
    order: 2;
    max-width: 100%;
  }

  .product-hero--cinematic .product-hero-copy {
    order: 1;
  }

  .product-hero--cinematic .product-hero-headline {
    max-width: none;
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .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;
  }

  .confidence-grid--3 {
    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) {
  /* A5: mobile disclosure via .kk-chrome-toggle ? no horizontal-scroll nav */
  .product-nav-inner.kk-chrome-inner {
    flex-wrap: nowrap;
    align-items: center;
    min-height: var(--nav-height);
    padding: 0;
    gap: var(--space-2);
  }

  .flow-visual-grid {
    grid-template-columns: 1fr;
  }

  .architecture-stat-row,
  .engineering-principles-grid,
  .infra-layers-grid,
  .confidence-grid--4,
  .confidence-grid--3 {
    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,
  .lyk-route-path--flow,
  .lyk-meet-pulse,
  .lyk-node-ring,
  .lyk-trust-mark,
  .lyk-origin-path {
    animation: none !important;
  }

  .lyk-route-path--flow {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .lyk-meet-pulse,
  .lyk-node-ring {
    opacity: 0.45;
  }

  .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 !important;
  }

  .btn-leylek:hover,
  .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: none;
    box-shadow: none;
  }
}

/* ?? LYK-WEB-C3 ? Cinematic journey stage + store conversion ?? */
.lyk-journey-stage {
  justify-self: end;
  width: min(100%, 440px);
  aspect-ratio: 480 / 420;
  margin: 0;
}

.lyk-journey-stage-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.lyk-journey-svg {
  display: block;
  width: 100%;
  height: auto;
}

.lyk-journey-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 240, 0.72);
  pointer-events: none;
}

.lyk-route-path--flow {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: lykC3RouteDraw 4.8s var(--motion-ease-emphasized, ease) infinite;
}

.lyk-meet-pulse {
  stroke-width: 1.5;
  opacity: 0.55;
  transform-origin: 214px 204px;
  animation: lykC3MeetPulse 5.5s var(--motion-ease-standard, ease) infinite;
}

.lyk-node-ring {
  animation: lykC3MeetPulse 6.5s var(--motion-ease-standard, ease) infinite;
}

.lyk-trust-mark {
  opacity: 0.92;
  animation: lykC3TrustIn 5.5s var(--motion-ease-standard, ease) infinite;
}

@keyframes lykC3RouteDraw {
  0% { stroke-dashoffset: 420; opacity: 0.35; }
  35% { stroke-dashoffset: 0; opacity: 1; }
  70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 420; opacity: 0.35; }
}

@keyframes lykC3MeetPulse {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

@keyframes lykC3TrustIn {
  0%, 20% { opacity: 0.35; }
  40%, 70% { opacity: 1; }
  100% { opacity: 0.35; }
}

html[data-lyk-motion="paused"] .lyk-route-path--flow,
html[data-lyk-motion="paused"] .lyk-meet-pulse,
html[data-lyk-motion="paused"] .lyk-node-ring,
html[data-lyk-motion="paused"] .lyk-trust-mark {
  animation: none !important;
}

html[data-lyk-motion="paused"] .lyk-route-path--flow {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  opacity: 1;
}

html[data-lyk-motion="paused"] .lyk-meet-pulse,
html[data-lyk-motion="paused"] .lyk-node-ring,
html[data-lyk-motion="paused"] .lyk-trust-mark {
  opacity: 0.85;
  transform: none;
}

.lyk-store-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0.85rem 0 0.35rem;
}

.lyk-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 0.5rem;
  outline-offset: 3px;
}

.lyk-store-badge-link img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.lyk-store-badge-link--apple {
  order: 0;
}

.lyk-store-badge-link--google {
  order: 1;
}

.cta-band .lyk-store-group {
  justify-content: center;
  margin-top: 1.25rem;
}

.lyk-sticky-download {
  display: none;
}

@media (max-width: 768px) {
  .lyk-sticky-download:not([hidden]) {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(6, 11, 20, 0.94);
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    backdrop-filter: blur(10px);
  }

  body.lyk-sticky-download-active {
    padding-bottom: calc(var(--lyk-sticky-pad, 4.75rem) + env(safe-area-inset-bottom, 0px));
  }

  .lyk-sticky-download-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--leylek, #22d3ee);
    color: #041018;
    font-weight: var(--weight-semibold, 600);
    text-decoration: none;
    white-space: nowrap;
  }

  .lyk-sticky-download-stores {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
  }

  .lyk-sticky-download-stores a {
    color: rgba(226, 232, 240, 0.92);
    text-decoration: underline;
    text-underline-offset: 2px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .lyk-store-badge-link img {
    height: 42px;
  }

  .lyk-journey-caption {
    font-size: 0.72rem;
  }
}

/* ?? LYK-WEB-C5 ? Matching flow cinematic storytelling ?? */
.lyk-matching-story {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.lyk-matching-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-7, 2rem);
  align-items: start;
}

.lyk-matching-stage {
  width: 100%;
  aspect-ratio: 640 / 360;
}

.lyk-matching-stage-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 16px 36px rgba(0, 0, 0, 0.32);
}

.lyk-matching-svg {
  display: block;
  width: 100%;
  height: auto;
}

.lyk-matching-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.75rem;
  margin: 0;
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.7);
}

.lyk-matching-acts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lyk-matching-act h3 {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0 0 0.45rem;
  font-size: var(--text-body-lg, 1.125rem);
}

.lyk-matching-act-num {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--leylek, #22d3ee);
}

.lyk-matching-act p {
  margin: 0;
  color: var(--text-muted);
  line-height: var(--leading-body);
}

.lyk-matching-act-lead {
  margin-bottom: 0.75rem !important;
}

.lyk-match-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lyk-match-path {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.85rem;
  background: rgba(8, 17, 31, 0.55);
}

.lyk-match-path h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.lyk-match-path--normal {
  border-color: rgba(34, 211, 238, 0.35);
}

.lyk-match-path--hizli {
  border-color: rgba(56, 189, 248, 0.28);
}

.lyk-match-pulse {
  opacity: 0.45;
  transform-origin: 360px 150px;
  animation: lykC5MatchPulse 5.5s var(--motion-ease-standard, ease) infinite;
}

.lyk-match-branch--normal {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: lykC5BranchDraw 5.5s var(--motion-ease-emphasized, ease) infinite;
}

@keyframes lykC5MatchPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

@keyframes lykC5BranchDraw {
  0% { stroke-dashoffset: 280; opacity: 0.45; }
  35% { stroke-dashoffset: 0; opacity: 1; }
  70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 280; opacity: 0.45; }
}

html[data-lyk-motion="paused"] .lyk-match-pulse,
html[data-lyk-motion="paused"] .lyk-match-branch--normal {
  animation-play-state: paused;
}

@media (max-width: 900px) {
  .lyk-matching-layout {
    grid-template-columns: 1fr;
  }

  .lyk-matching-stage {
    order: 2;
  }

  .lyk-matching-acts {
    order: 1;
  }
}

@media (max-width: 560px) {
  .lyk-match-paths {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lyk-match-pulse,
  .lyk-match-branch--normal {
    animation: none !important;
  }

  .lyk-match-branch--normal {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .lyk-match-pulse {
    opacity: 0.45;
  }
}

/* ?? LYK-WEB-C6 post-match feature passage ?? */
.lyk-postmatch {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.lyk-feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, rgba(8, 17, 31, 0.72), rgba(6, 11, 20, 0.88));
}

.lyk-feature-block--flip {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.lyk-feature-block--flip .lyk-feature-copy {
  order: 2;
}

.lyk-feature-block--flip .lyk-feature-visual {
  order: 1;
}

.lyk-feature-copy h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  color: #f8fafc;
}

.lyk-feature-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(103, 232, 249, 0.82);
}

.lyk-feature-copy > p:not(.lyk-feature-kicker):not(.lyk-feature-aside) {
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.55;
}

.lyk-feature-aside {
  margin: 0.75rem 0 0;
  padding: 0.7rem 0.85rem;
  border-left: 2px solid rgba(34, 211, 238, 0.35);
  color: rgba(203, 213, 225, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lyk-feature-visual {
  margin: 0;
  aspect-ratio: 420 / 220;
  border-radius: 1rem;
  overflow: hidden;
}

.lyk-feature-svg {
  display: block;
  width: 100%;
  height: auto;
}

.lyk-guven-link {
  stroke-dasharray: 80;
  animation: lykC6ConsentLink 4.8s var(--motion-ease-standard, ease) infinite;
}

.lyk-net-node {
  opacity: 0.85;
  animation: lykC6NetPulse 5.2s var(--motion-ease-standard, ease) infinite;
}

.lyk-net-node:nth-child(3) { animation-delay: 0.4s; }
.lyk-net-node:nth-child(4) { animation-delay: 0.8s; }
.lyk-net-node:nth-child(5) { animation-delay: 1.2s; }
.lyk-net-node:nth-child(6) { animation-delay: 1.6s; }

.lyk-qr-ring {
  transform-origin: 210px 105px;
  animation: lykC6QrRing 7s linear infinite;
}

.lyk-nav-route {
  stroke-dasharray: 420;
  animation: lykC6RouteDraw 6s var(--motion-ease-emphasized, ease) infinite;
}

.lyk-nav-meet {
  animation: lykC6MeetPulse 6s var(--motion-ease-standard, ease) infinite;
}

@keyframes lykC6ConsentLink {
  0%, 100% { opacity: 0.35; stroke-dashoffset: 40; }
  50% { opacity: 1; stroke-dashoffset: 0; }
}

@keyframes lykC6NetPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes lykC6QrRing {
  to { transform: rotate(360deg); }
}

@keyframes lykC6RouteDraw {
  0% { stroke-dashoffset: 420; opacity: 0.4; }
  40%, 70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.55; }
}

@keyframes lykC6MeetPulse {
  0%, 100% { opacity: 0.65; }
  45%, 60% { opacity: 1; }
}

.lyk-safety-summary {
  margin-top: 0.25rem;
}

.lyk-safety-summary-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #e2e8f0;
}

html[data-lyk-motion="paused"] .lyk-guven-link,
html[data-lyk-motion="paused"] .lyk-net-node,
html[data-lyk-motion="paused"] .lyk-qr-ring,
html[data-lyk-motion="paused"] .lyk-nav-route,
html[data-lyk-motion="paused"] .lyk-nav-meet {
  animation: none !important;
}

html[data-lyk-motion="paused"] .lyk-guven-link,
html[data-lyk-motion="paused"] .lyk-nav-route {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  opacity: 1;
}

html[data-lyk-motion="paused"] .lyk-qr-ring {
  transform: none;
  opacity: 0.35;
}

@media (max-width: 900px) {
  .lyk-feature-block,
  .lyk-feature-block--flip {
    grid-template-columns: 1fr;
  }

  .lyk-feature-block--flip .lyk-feature-copy,
  .lyk-feature-block--flip .lyk-feature-visual {
    order: initial;
  }
}

@media (max-width: 480px) {
  .lyk-feature-block {
    padding: 0.85rem;
  }

  .lyk-feature-kicker {
    font-size: 0.78rem;
  }

  .lyk-feature-aside {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lyk-guven-link,
  .lyk-net-node,
  .lyk-qr-ring,
  .lyk-nav-route,
  .lyk-nav-meet {
    animation: none !important;
  }

  .lyk-guven-link,
  .lyk-nav-route {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .lyk-qr-ring {
    transform: none;
    opacity: 0.35;
  }

  .lyk-net-node,
  .lyk-nav-meet {
    opacity: 0.9;
  }
}

/* ?? LYK-WEB-C7 ? Responsive / motion / visual polish closure ?? */
.lyk-postmatch,
.lyk-feature-block,
#guven,
#guven-agi,
#karekodum,
#navigasyon,
#overview,
#faq,
#final-cta {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.product-nav .nav-toggle.kk-chrome-toggle,
.product-nav .kk-chrome-toggle {
  flex: 0 0 auto;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.product-hero--cinematic .lead {
  max-width: 34rem;
  line-height: 1.55;
}

.product-hero-brand-line {
  line-height: 1.35;
}

.lyk-feature-kicker {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  color: rgba(148, 226, 245, 0.9);
}

.lyk-feature-copy > p:not(.lyk-feature-kicker):not(.lyk-feature-aside) {
  max-width: 38rem;
}

.lyk-safety-summary .card-grid {
  gap: 0.85rem;
}

.lyk-safety-summary .product-card {
  background: rgba(8, 17, 31, 0.42);
}

/* Ambient loops only while story is on-screen (JS marks .lyk-ambient-active). */
.lyk-journey-stage:not(.lyk-ambient-active) .lyk-route-path--flow,
.lyk-journey-stage:not(.lyk-ambient-active) .lyk-meet-pulse,
.lyk-journey-stage:not(.lyk-ambient-active) .lyk-node-ring,
.lyk-journey-stage:not(.lyk-ambient-active) .lyk-trust-mark,
.lyk-matching-stage:not(.lyk-ambient-active) .lyk-match-pulse,
.lyk-matching-stage:not(.lyk-ambient-active) .lyk-match-branch--normal,
.lyk-feature-visual:not(.lyk-ambient-active) .lyk-guven-link,
.lyk-feature-visual:not(.lyk-ambient-active) .lyk-net-node,
.lyk-feature-visual:not(.lyk-ambient-active) .lyk-qr-ring,
.lyk-feature-visual:not(.lyk-ambient-active) .lyk-nav-route,
.lyk-feature-visual:not(.lyk-ambient-active) .lyk-nav-meet {
  animation: none !important;
}

.lyk-journey-stage:not(.lyk-ambient-active) .lyk-route-path--flow,
.lyk-matching-stage:not(.lyk-ambient-active) .lyk-match-branch--normal,
.lyk-feature-visual:not(.lyk-ambient-active) .lyk-guven-link,
.lyk-feature-visual:not(.lyk-ambient-active) .lyk-nav-route {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  opacity: 1;
}

.lyk-feature-visual:not(.lyk-ambient-active) .lyk-qr-ring {
  transform: none;
  opacity: 0.35;
}

@media (max-width: 768px) {
  .product-nav {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .lyk-sticky-download:not([hidden]) {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 60;
  }

  /* Cap low-value continuous loops on ordinary phones. */
  .lyk-qr-ring,
  .lyk-net-node {
    animation: none !important;
  }

  .lyk-qr-ring {
    transform: none;
    opacity: 0.35;
  }

  .lyk-net-node {
    opacity: 0.9;
  }

  .lyk-feature-block,
  .lyk-feature-block--flip {
    gap: 0.85rem;
  }

  .lyk-matching-caption,
  .lyk-journey-caption {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .lyk-feature-svg text,
  .lyk-matching-svg text,
  .lyk-journey-svg text {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .product-nav-inner {
    gap: 0.5rem;
  }

  .product-hero--cinematic .product-hero-headline {
    font-size: clamp(1.55rem, 8vw, 1.9rem);
    line-height: 1.2;
  }

  .lyk-store-group {
    gap: 0.65rem;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .lyk-sticky-download:not([hidden]) {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lyk-route-path--flow,
  .lyk-meet-pulse,
  .lyk-node-ring,
  .lyk-trust-mark,
  .lyk-match-pulse,
  .lyk-match-branch--normal {
    animation: none !important;
  }

  .lyk-route-path--flow,
  .lyk-match-branch--normal {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .lyk-meet-pulse,
  .lyk-node-ring,
  .lyk-trust-mark,
  .lyk-match-pulse {
    opacity: 0.85;
    transform: none;
  }

  html.lyk-reveal-armed .section-reveal:not(.is-visible),
  html.lyk-reveal-armed .section-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
