﻿/* TRI-GLAV — premium landing page */

:root {
  --header-h: 96px;
  --header-h-scrolled: 84px;
  --header-hub-w: clamp(4.5rem, 9vw, 5.75rem);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-brand: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-story: var(--font-body);
  --max: 1120px;
  --max-wide: 1180px;
  --mockup-max: 1120px;
  --narrow: 720px;
  --pad: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(4.75rem, 9.5vw, 7rem);
  --color-bg: #fbfdff;
  --color-bg-alt: #f4f7fb;
  --color-dark: #0D1B2A;
  --color-dark-soft: #152536;
  --color-text: #152536;
  --color-muted: #465668;
  --color-accent: #E63946;
  --color-accent-hover: #c62828;
  --color-accent-soft: rgba(230, 57, 70, 0.1);
  --color-tech: #4DA3FF;
  --color-gold: #e8a54b;
  --color-gold-soft: rgba(232, 165, 75, 0.18);
  --color-border: #d4dee8;
  --radius: 12px;
  --radius-sm: 8px;
  --card-radius: calc(var(--radius) + 4px);
  --card-border: 1px solid rgba(13, 27, 42, 0.09);
  --card-shadow: 0 4px 22px rgba(13, 27, 42, 0.06);
  --card-shadow-hover: var(--shadow-premium);
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: clamp(1.0625rem, 0.28vw + 1rem, 1.125rem);
  --text-md: clamp(1.0625rem, 0.45vw + 0.95rem, 1.1875rem);
  --text-lg: clamp(1.125rem, 0.55vw + 1rem, 1.25rem);
  --leading-body: 1.72;
  --leading-relaxed: 1.65;
  --tracking-body: 0.006em;
  --tracking-nav: 0.025em;
  --tracking-label: 0.1em;
  --shadow: 0 16px 48px rgba(11, 35, 65, 0.08);
  --shadow-soft: 0 4px 20px rgba(13, 27, 42, 0.05);
  --shadow-card: 0 12px 36px rgba(13, 27, 42, 0.1);
  --shadow-lift: 0 20px 48px rgba(13, 27, 42, 0.14);
  --shadow-premium: 0 24px 64px rgba(13, 27, 42, 0.1), 0 2px 8px rgba(13, 27, 42, 0.04);
  --header-glass: rgba(251, 253, 255, 0.82);
  --header-glass-solid: rgba(251, 253, 255, 0.96);
  --glass: rgba(13, 27, 42, 0.72);
  --nav-link: rgba(21, 37, 54, 0.78);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.35, 0.64, 1);
  --reveal-distance: 24px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection {
  background: rgba(230, 57, 70, 0.18);
  color: var(--color-dark);
}

:focus-visible {
  outline: 2px solid rgba(230, 57, 70, 0.55);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.wrap {
  width: min(100% - (var(--pad) * 2), var(--max));
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 0;
}

.wrap--narrow { max-width: var(--narrow); }

/* Typography */
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  margin-right: 0.55rem;
  vertical-align: middle;
  background: var(--color-accent);
  border-radius: 1px;
  opacity: 0.85;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow--light::before {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.35);
}

.section-head--center .eyebrow::before {
  display: none;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 4.4vw, 3.125rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--color-dark);
}

.section-lead {
  margin: 0 auto;
  max-width: 42rem;
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-body);
  color: var(--color-muted);
  font-weight: 500;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.9);
}

.content-section__head .section-title::after,
.story-timeline__head .section-title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: var(--color-accent);
  opacity: 0.9;
}

.section-title::after {
  display: none;
}

.section-head { margin-bottom: clamp(2rem, 4vw, 2.75rem); }

.section { padding-block: var(--section-y); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-glass);
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  transition:
    height 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 57, 70, 0.18) 20%,
    rgba(232, 165, 75, 0.22) 50%,
    rgba(77, 163, 255, 0.16) 80%,
    transparent 100%
  );
  opacity: 0.85;
  pointer-events: none;
}

.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  background: var(--header-glass-solid);
  border-color: rgba(13, 27, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 10px 36px rgba(13, 27, 42, 0.07);
}

.site-header.is-scrolled::after {
  opacity: 0.55;
}

.site-header.is-over-hero:not(.is-scrolled) {
  background: rgba(251, 253, 255, 0.72);
  border-color: rgba(13, 27, 42, 0.04);
}

.site-header:not(.is-over-hero) {
  background: var(--header-glass-solid);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.header-inner--hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.header-nav-shell {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header--hub .header-cta {
  flex-shrink: 0;
}

/* Top bar — logo left, links inline, CTA right */
.site-header--bar {
  background: #fff;
  border-bottom-color: rgba(13, 27, 42, 0.07);
}

.header-inner--bar {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.25rem);
}

.brand--bar {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease);
}

.brand--bar:hover {
  transform: translateY(-0.5px);
  opacity: 0.92;
}

.brand--lockup {
  min-width: 0;
}

.brand-lockup__mark {
  display: block;
  height: clamp(3.5rem, 6vw, 4rem);
  width: auto;
  max-width: min(360px, 48vw);
  object-fit: contain;
}

.brand--bar__logo {
  display: block;
  height: clamp(2.75rem, 5.5vw, 3.75rem);
  width: auto;
  object-fit: contain;
}

.brand--bar__logo--horizontal {
  height: clamp(2.85rem, 5.8vw, 4rem);
  max-width: min(300px, 42vw);
}

.site-header--bar .site-nav--bar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.4vw, 1.15rem);
  min-width: 0;
  margin-left: clamp(0.5rem, 1.2vw, 1rem);
}

.site-header--bar .site-nav--bar a {
  font-size: clamp(0.875rem, 1.05vw, 0.96875rem);
  font-weight: 600;
  letter-spacing: var(--tracking-nav);
  white-space: nowrap;
  padding: 0.45rem 0.2rem;
  color: var(--nav-link);
}

.site-header--bar .header-cta {
  flex-shrink: 0;
  margin-left: auto;
  font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
  padding: 0.7rem 1.15rem;
  white-space: nowrap;
}

.site-header--bar .menu-toggle {
  display: none;
  flex-shrink: 0;
}

#main {
  padding-top: var(--header-h);
}

/* Hub navigation — logo center, links with arrows */
.site-nav--hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  column-gap: calc(var(--header-hub-w) + clamp(0.75rem, 2vw, 1.5rem));
  width: 100%;
  min-width: 0;
  margin-left: 0;
}

.site-nav__rail {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.1vw, 0.85rem);
  min-width: 0;
}

.site-nav__rail--left {
  justify-content: flex-end;
}

.site-nav__rail--right {
  justify-content: flex-start;
}

.site-nav__rail a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: clamp(0.75rem, 0.95vw, 0.875rem);
  font-weight: 600;
  letter-spacing: var(--tracking-nav);
  color: var(--nav-link);
  white-space: nowrap;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease-out);
}

.site-nav__rail a::after {
  display: none;
}

.site-nav__rail a:hover,
.site-nav__rail a.is-active,
.site-nav__rail a:focus-visible {
  color: var(--color-dark);
  outline: none;
  transform: translateY(-0.5px);
}

.site-nav__rail a.is-active .site-nav__label {
  color: var(--color-dark);
}

.site-nav__rail a.is-active .site-nav__arrow {
  opacity: 1;
  border-color: var(--color-accent);
}

.site-nav__arrow {
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1.5px solid rgba(230, 57, 70, 0.45);
  border-right: 1.5px solid rgba(230, 57, 70, 0.45);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-nav__arrow--in {
  transform: rotate(-135deg);
}

.header-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  flex-shrink: 0;
  width: var(--header-hub-w);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.header-hub__core {
  pointer-events: auto;
}

.header-hub__rails {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(14rem, 42vw, 28rem);
  height: 28px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  transition: opacity 0.35s var(--ease), width 0.35s var(--ease);
}

.header-hub__core {
  position: relative;
  z-index: 1;
  display: block;
  text-decoration: none;
}

.header-hub__core:hover .header-hub__card {
  transform: translateY(-1px) scale(1.02);
}

.header-hub__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.42rem;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(13, 27, 42, 0.07),
    0 6px 22px rgba(13, 27, 42, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    padding 0.35s var(--ease),
    border-radius 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease-out);
}

.header-hub__logo {
  display: block;
  height: clamp(2.85rem, 5.2vw, 3.45rem);
  width: auto;
  object-fit: contain;
}

.header-hub__logo--compact {
  display: none;
  height: clamp(2rem, 3.8vw, 2.35rem);
  width: auto;
  max-width: min(11rem, 28vw);
}

.site-header.is-scrolled .header-hub__rails {
  opacity: 0.35;
  width: clamp(10rem, 28vw, 18rem);
}

.site-header.is-scrolled .header-hub__card {
  padding: 0.15rem 0.35rem;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(13, 27, 42, 0.06),
    0 4px 14px rgba(13, 27, 42, 0.07);
}

.site-header.is-scrolled .header-hub__logo--hero {
  display: none;
}

.site-header.is-scrolled .header-hub__logo--compact {
  display: block;
}

.site-header.is-scrolled .header-hub {
  width: auto;
  min-width: clamp(7rem, 16vw, 10rem);
}

.section-head--compact {
  margin-bottom: 1.25rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .eyebrow::before {
  display: none;
}

.brand { flex-shrink: 0; }

.brand--premium {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease-out);
}

.brand--premium:hover {
  opacity: 0.92;
  transform: translateY(-0.5px);
}

.brand-lockup--header {
  width: clamp(168px, 18vw, 224px);
  height: auto;
  display: block;
}

.brand-lockup-horizontal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand__emblem {
  width: clamp(44px, 5.5vw, 52px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.brand__divider {
  width: 2px;
  height: clamp(34px, 4.5vw, 42px);
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(230, 57, 70, 0.45) 100%);
  flex-shrink: 0;
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-brand);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.brand__hyphen {
  color: var(--color-accent);
}

.brand__tagline {
  margin-top: 0.2rem;
  font-size: clamp(0.5rem, 1.1vw, 0.625rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--color-muted);
  white-space: nowrap;
}

.brand__tagline-accent {
  color: var(--color-accent);
  font-weight: 600;
}

.brand-lockup {
  width: clamp(160px, 20vw, 220px);
  height: auto;
}

.brand-lockup--header {
  width: clamp(150px, 18vw, 200px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.35rem);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: var(--tracking-nav);
  color: var(--nav-link);
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a:focus-visible {
  color: var(--color-dark);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: none;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: background 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn-lg { padding: 0.925rem 1.65rem; font-size: 0.9375rem; }

.btn-primary {
  background: linear-gradient(165deg, #f04b57 0%, var(--color-accent) 42%, #c62828 100%);
  color: #fff;
  border-color: rgba(198, 40, 40, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 6px 20px rgba(230, 57, 70, 0.28);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease-out);
}

.btn-primary:hover {
  background: linear-gradient(165deg, #f25560 0%, #d32f3d 42%, #b71c1c 100%);
  border-color: rgba(183, 28, 28, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 10px 28px rgba(230, 57, 70, 0.34);
  transform: translateY(-1px);
}

.btn-nav-cta {
  background: linear-gradient(165deg, #f04b57 0%, var(--color-accent) 42%, #c62828 100%);
  color: #fff;
  border-color: rgba(198, 40, 40, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 5px 18px rgba(230, 57, 70, 0.24);
  flex-shrink: 0;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease-out);
}

.btn-nav-cta:hover {
  background: linear-gradient(165deg, #f25560 0%, #d32f3d 42%, #b71c1c 100%);
  border-color: rgba(183, 28, 28, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 24px rgba(230, 57, 70, 0.3);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 2px solid rgba(230, 57, 70, 0.45);
  outline-offset: 2px;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  margin-top: 2rem;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.btn-arrow { flex-shrink: 0; }

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(13, 27, 42, 0.22);
}

.btn-outline-dark:hover {
  background: rgba(13, 27, 42, 0.05);
  border-color: rgba(13, 27, 42, 0.38);
  transform: translateY(-1px);
}

/* Hero — premium intro */
.hero {
  position: relative;
  min-height: clamp(84vh, 94svh, 100svh);
  display: flex;
  align-items: flex-start;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero--intro {
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media--parallax {
  overflow: hidden;
}

.hero-parallax-layer {
  position: absolute;
  inset: -12% 0 -8%;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-parallax-layer .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 40%;
  transform: scale(1.06);
  animation: none;
}

.hero-media--css {
  background:
    radial-gradient(ellipse 55% 48% at 78% 16%, rgba(232, 165, 75, 0.24), transparent 58%),
    radial-gradient(ellipse 45% 40% at 12% 88%, rgba(77, 163, 255, 0.14), transparent 55%),
    linear-gradient(165deg, #08121d 0%, #0d1b2a 38%, #152536 72%, #1c3450 100%);
}

.hero--split {
  isolation: isolate;
  background: #fbfdff;
}

.hero--split .hero-media--photo .hero-bg,
.hero--split .hero-bg {
  object-position: 44% 40%;
}

.hero-white-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(251, 253, 255, 0.06) 34%,
      rgba(251, 253, 255, 0.38) 48%,
      rgba(251, 253, 255, 0.88) 58%,
      #fbfdff 66%,
      #fbfdff 100%
    );
}

.hero--split .hero-media--photo .hero-overlay,
.hero--split .hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(13, 27, 42, 0.08) 0%, transparent 40%, rgba(13, 27, 42, 0.06) 100%);
}

.hero--split .hero-layout {
  align-items: center;
  min-height: calc(clamp(84vh, 94svh, 100svh) - var(--header-h));
  padding-block: clamp(1.25rem, 3vw, 2rem) clamp(3.5rem, 7vw, 5.5rem);
}

.hero--split .hero-intro {
  width: min(100%, 40rem);
  max-width: 44%;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
}

.hero--split .hero-brand__logo {
  width: min(100%, clamp(15rem, 32vw, 22rem));
  transform: none;
}

.hero--split .hero-brand {
  margin-bottom: 1.15rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero--split .hero-brand__glow {
  display: none;
}

.hero--split .hero-kicker {
  color: var(--color-muted);
  text-shadow: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
}

.hero--split .hero-kicker::after {
  display: none;
}

.hero--split .hero-rule {
  width: 3rem;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--color-border);
  box-shadow: none;
}

.hero--split .hero-pillars {
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.008em;
  text-transform: none;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  margin-bottom: 1.5rem;
}

.hero--split .hero-pillars__sep {
  width: 3px;
  height: 3px;
  background: var(--color-muted);
  opacity: 0.45;
  box-shadow: none;
}

.hero--split .btn-hero-ghost {
  color: var(--color-dark);
  border-color: var(--color-border);
  background: #fff;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
}

.hero--split .btn-hero-ghost:hover {
  background: var(--color-bg-alt);
  border-color: rgba(13, 27, 42, 0.18);
}

.hero--split .btn-hero-cta {
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.22);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.hero--split .hero-media--photo .hero-bg,
.hero--split .hero-bg {
  animation: none;
  transform: none;
}

.hero-peak--split {
  left: 22%;
  opacity: 0.12;
  width: min(90%, 36rem);
}

.hero-media--photo .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 38%;
  transform: scale(1.03);
  animation: heroKenBurns 28s var(--ease-out) infinite alternate;
}

.hero-media--photo .hero-overlay {
  background:
    radial-gradient(ellipse 58% 52% at 82% 18%, rgba(13, 27, 42, 0.82) 0%, transparent 62%),
    radial-gradient(ellipse 50% 45% at 18% 55%, rgba(232, 165, 75, 0.12) 0%, transparent 58%),
    linear-gradient(
      90deg,
      rgba(13, 27, 42, 0.32) 0%,
      transparent 34%,
      rgba(13, 27, 42, 0.18) 58%,
      rgba(13, 27, 42, 0.62) 100%
    ),
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.45) 0%,
      transparent 42%,
      rgba(13, 27, 42, 0.5) 100%
    );
}

.hero-mountains {
  position: absolute;
  inset: auto 0 14%;
  height: 48%;
  pointer-events: none;
}

.hero-mountains::before,
.hero-mountains::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100%;
}

.hero-mountains::before {
  background: linear-gradient(180deg, rgba(180, 200, 220, 0.08) 0%, rgba(13, 27, 42, 0.04) 100%);
  clip-path: polygon(0% 100%, 0% 68%, 10% 78%, 22% 52%, 36% 64%, 48% 38%, 62% 56%, 76% 34%, 90% 48%, 100% 40%, 100% 100%);
  opacity: 0.55;
}

.hero-mountains::after {
  bottom: -8%;
  height: 72%;
  background: linear-gradient(180deg, rgba(220, 235, 250, 0.14) 0%, rgba(13, 27, 42, 0.06) 100%);
  clip-path: polygon(0% 100%, 0% 58%, 14% 74%, 28% 42%, 42% 58%, 56% 30%, 70% 50%, 84% 32%, 100% 46%, 100% 100%);
  opacity: 0.65;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 40%;
  transform: scale(1.03);
  animation: heroKenBurns 28s var(--ease-out) infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1.03); }
  to { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 52% at 82% 18%, rgba(13, 27, 42, 0.78) 0%, transparent 62%),
    radial-gradient(ellipse 50% 45% at 18% 55%, rgba(232, 165, 75, 0.14) 0%, transparent 58%),
    linear-gradient(
      90deg,
      rgba(13, 27, 42, 0.28) 0%,
      transparent 38%,
      rgba(13, 27, 42, 0.22) 58%,
      rgba(13, 27, 42, 0.48) 100%
    ),
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.38) 0%,
      transparent 46%,
      rgba(13, 27, 42, 0.42) 100%
    );
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 58%
  );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-block: clamp(0.85rem, 2vw, 1.75rem) clamp(4rem, 8vw, 6rem);
}

.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0;
  width: min(100%, 44rem);
  margin-left: auto;
}

.hero-intro > * {
  animation: heroCascade 0.85s var(--ease-out) backwards;
}

.hero-intro > .hero-kicker { animation-delay: 0.08s; }
.hero-intro > .hero-brand { animation-delay: 0.16s; }
.hero-intro > .hero-rule { animation-delay: 0.3s; }
.hero-intro > .hero-pillars { animation-delay: 0.4s; }
.hero-intro > .hero-actions { animation-delay: 0.5s; }

@keyframes heroCascade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-kicker {
  margin: 0 0 1.25rem;
  font-size: clamp(0.6875rem, 1.3vw, 0.8125rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.hero-kicker::before {
  display: none;
}

.hero-kicker::after {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  margin-left: 0.65rem;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.45);
}

.hero-brand {
  position: relative;
  margin-bottom: 1.35rem;
  padding: clamp(0.85rem, 2vw, 1.35rem);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(8, 18, 29, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-brand__glow {
  position: absolute;
  inset: -25% -15%;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(230, 57, 70, 0.18), transparent 68%),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(77, 163, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.hero-brand__logo {
  display: block;
  width: min(100%, clamp(18rem, 42vw, 30rem));
  height: auto;
  margin-left: auto;
}

.hero-emblem {
  position: relative;
  flex-shrink: 0;
  width: clamp(5.75rem, 12vw, 8.25rem);
  height: clamp(5.75rem, 12vw, 8.25rem);
}

.hero-emblem__ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    rgba(230, 57, 70, 0.85) 0deg,
    rgba(232, 165, 75, 0.75) 120deg,
    rgba(255, 255, 255, 0.35) 220deg,
    rgba(230, 57, 70, 0.85) 360deg
  );
  opacity: 0.9;
  animation: heroRingSpin 24s linear infinite;
}

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

.hero-emblem__disc {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(165deg, #ffffff 0%, #e8edf3 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-emblem__disc img {
  width: 88%;
  height: auto;
  object-fit: contain;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  min-width: 0;
}

.hero-wordmark {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(3.75rem, 11vw, 7rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow:
    0 6px 36px rgba(0, 0, 0, 0.5),
    0 2px 0 rgba(255, 255, 255, 0.06);
}

.hero-wordmark__hyphen {
  color: var(--color-accent);
  margin-inline: 0.03em;
  text-shadow: 0 0 32px rgba(230, 57, 70, 0.65);
}

.hero-slogan {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-slogan strong {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.05em;
}

.hero-rule {
  width: min(100%, 22rem);
  height: 2px;
  margin-bottom: 1.1rem;
  background: linear-gradient(
    270deg,
    rgba(230, 57, 70, 0.9) 0%,
    rgba(232, 165, 75, 0.7) 42%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(230, 57, 70, 0.28);
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.7rem;
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.85vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero-pillars__item {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-pillars__sep {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  box-shadow: 0 0 8px rgba(232, 165, 75, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.btn-hero-cta {
  min-width: 12.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  box-shadow:
    0 14px 32px rgba(230, 57, 70, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease-out);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.hero-peak {
  position: absolute;
  left: 28%;
  bottom: clamp(3.5rem, 8vw, 5.5rem);
  z-index: 1;
  width: min(120%, 64rem);
  transform: translateX(-50%);
  opacity: 0.12;
  pointer-events: none;
  line-height: 0;
  mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
}

.hero-peak img {
  width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transform: none;
  }

  .hero-emblem__ring {
    animation: none;
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  height: 1px;
  background: var(--color-border);
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1.35rem, 3.5vw, 2.5rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-dark);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    visibility 0.5s;
}

.scroll-hint.is-ready {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

.scroll-hint.is-ready.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(14px);
  pointer-events: none;
}

.scroll-hint__text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.55);
}

.scroll-hint__chevron {
  width: 0.75rem;
  height: 0.75rem;
  border-right: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(45deg);
  animation: scrollHintBounce 2.6s var(--ease) infinite;
  filter: drop-shadow(0 1px 2px rgba(230, 57, 70, 0.15));
}

@keyframes scrollHintBounce {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: rotate(45deg) translate(3px, 3px);
    opacity: 1;
  }
}

.scroll-hint::after {
  content: "";
  position: absolute;
  inset: -1.75rem -2.5rem -1.25rem;
  background: linear-gradient(0deg, rgba(251, 253, 255, 0.96) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-wave svg {
  display: none;
}

/* Feature strip — premium bridge between Zakaj and App */
.feature-strip {
  position: relative;
  color: #fff;
  line-height: 1.65;
  overflow: hidden;
}

.feature-strip--premium {
  padding-block: clamp(2.75rem, 5vw, 3.75rem);
  background:
    linear-gradient(180deg, #f3f2f0 0%, #c8ced6 6%, #5a6d7e 18%, #243548 38%, var(--color-dark) 100%);
  border-top: none;
}

.feature-strip__fade {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(48px, 7vw, 72px);
  background: linear-gradient(180deg, #f3f2f0 0%, transparent 100%);
  pointer-events: none;
}

.feature-strip__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.feature-strip__intro .eyebrow {
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}

.feature-strip__head {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.feature-strip__grid {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr));
  gap: clamp(0.65rem, 1.5vw, 1rem);
  background: rgba(13, 27, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 6px);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(0.5rem, 1.2vw, 0.75rem);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease-out), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-tile:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feature-tile:hover .feature-tile__icon {
  border-color: rgba(230, 57, 70, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 24px rgba(230, 57, 70, 0.15);
}

.feature-tile__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-tile strong {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
}

.feature-tile span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  font-weight: 500;
}

/* Story timeline */
.story-timeline {
  background: var(--color-bg);
  padding-top: clamp(3.25rem, 6.5vw, 5rem);
  padding-bottom: clamp(3.25rem, 6.5vw, 5rem);
  position: relative;
}

.story-timeline::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 42, 0.08) 20%, rgba(13, 27, 42, 0.08) 80%, transparent);
}

.story-timeline__head {
  text-align: center;
  max-width: min(100%, 48rem);
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.story-timeline__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 5.5rem);
  width: min(100%, var(--max-wide));
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: clamp(0rem, 1.5vw, 0.75rem);
}

.story-timeline__path {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 80px;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 1s var(--ease);
}

.story-timeline__path.is-visible { opacity: 0.35; }

.story-timeline__path img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.story-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(9rem, 12rem)
    minmax(18rem, 1fr)
    minmax(16rem, 20rem);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.story-step__meta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1rem 1rem 0;
}

.story-step__meta::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(13, 27, 42, 0.1) 20%, rgba(13, 27, 42, 0.1) 80%, transparent);
}

.story-step__num {
  display: none;
}

.story-step__icon {
  width: clamp(4rem, 7vw, 5rem);
  height: clamp(4rem, 7vw, 5rem);
  grid-row: span 2;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow:
    0 12px 34px rgba(13, 27, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.story-step__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--color-dark);
  line-height: 1.15;
}

.story-step__desc {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  font-weight: 600;
}

.story-step__media {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow:
    0 8px 28px rgba(13, 27, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease-out);
  position: relative;
}

.story-step__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.story-step:hover .story-step__media {
  box-shadow: var(--shadow-soft);
  transform: none;
}

.story-step__media img {
  width: 100%;
  aspect-ratio: 16 / 9.8;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.6s var(--ease-out);
}

.story-step:hover .story-step__media:not([data-parallax]) img {
  transform: scale(1.02);
}

.story-step__narrative {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.94) 100%);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-left: 4px solid var(--color-accent);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease-out);
}

.story-step:hover .story-step__narrative {
  box-shadow:
    0 16px 40px rgba(13, 27, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.story-step__narrative p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1vw + 0.85rem, 1.2rem);
  line-height: 1.75;
  color: var(--color-dark);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.004em;
  text-wrap: pretty;
}

.story-step--finale .story-step__narrative {
  border-left-color: var(--color-gold);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 251, 245, 0.96) 100%);
}

.story-step__finale-mark {
  margin-top: 1.25rem;
  width: min(120px, 40%);
  opacity: 0.85;
}

.story-timeline__finale {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.story-timeline__finale-eyebrow {
  margin: 0 0 0.75rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.story-timeline__finale-title {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--color-dark);
  text-wrap: balance;
}

/* Logo stage — central hub navigation from main logo */
.logo-stage {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 62%, var(--color-bg) 100%);
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad) clamp(2rem, 4vw, 3rem);
}

.logo-stage__inner {
  width: min(100%, 760px);
  text-align: center;
}

.logo-hub {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  max-height: min(68vh, 580px);
  margin-inline: auto;
}

.logo-hub__spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.logo-hub__spoke-group {
  transform-origin: 300px 300px;
  animation: hub-spokes-in 1.1s var(--ease) 0.15s both;
}

@keyframes hub-spokes-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.logo-hub__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(46%, 260px);
  transform: translate(-50%, -50%);
  display: block;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out);
}

.logo-hub__core:hover {
  transform: translate(-50%, -50%) scale(1.02);
}

.logo-hub__glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.logo-hub__logo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 36px rgba(13, 27, 42, 0.11));
}

.logo-hub__nav {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.logo-hub__link {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: clamp(0.8125rem, 1.15vw, 0.96875rem);
  font-weight: 600;
  letter-spacing: var(--tracking-nav);
  color: var(--nav-link);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease-out);
}

html.is-enhanced .logo-hub__link {
  opacity: 0;
  animation: hub-link-in 0.55s var(--ease) forwards;
  animation-delay: calc(0.06s * var(--i, 1) + 0.2s);
}

@keyframes hub-link-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-hub__link:hover,
.logo-hub__link.is-active,
.logo-hub__link:focus-visible {
  color: var(--color-dark);
  outline: none;
}

.logo-hub__link.is-active .logo-hub__arrow {
  opacity: 1;
  border-color: var(--color-accent);
}

.logo-hub__link[data-hub-pos="t1"] { top: 4%; left: 8%; }
.logo-hub__link[data-hub-pos="t2"] { top: 0; left: 50%; transform: translateX(-50%); }
.logo-hub__link[data-hub-pos="t3"] { top: 4%; right: 8%; }
.logo-hub__link[data-hub-pos="l1"] { top: 42%; left: -4%; }
.logo-hub__link[data-hub-pos="r1"] { top: 42%; right: -4%; }
.logo-hub__link[data-hub-pos="b1"] { bottom: 14%; left: 50%; transform: translateX(-50%); }

.logo-hub__link[data-hub-pos="t2"]:hover,
.logo-hub__link[data-hub-pos="b1"]:hover {
  transform: translateX(-50%) translateY(-1px);
}

.logo-hub__arrow {
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1.5px solid rgba(230, 57, 70, 0.45);
  border-right: 1.5px solid rgba(230, 57, 70, 0.45);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.55;
}

.logo-hub__arrow--in {
  transform: rotate(-135deg);
}

.logo-hub__arrow--down {
  transform: rotate(135deg);
}

.logo-hub__actions {
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  z-index: 4;
  transform: translateX(-50%) translateY(100%);
}

.logo-hub__pilot {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  padding: 0.65rem 1.25rem;
  white-space: nowrap;
}

.logo-stage__kicker {
  margin: clamp(3.5rem, 8vw, 4.5rem) 0 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-muted);
}

.logo-stage__pillars {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-dark);
}

.logo-stage__sep {
  margin-inline: 0.5rem;
  color: var(--color-accent);
  opacity: 0.7;
}

.logo-hub__toggle {
  display: none;
}

/* Story theater preview + play */
.story-theater {
  padding: clamp(1.25rem, 3vw, 2rem) var(--pad) clamp(1.5rem, 3vw, 2.25rem);
}

.story-theater__wrap {
  max-width: var(--max-wide);
}

.story-theater__frame {
  position: relative;
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 16 / 9;
  min-height: clamp(220px, 42vw, 420px);
  max-height: min(72vh, 640px);
  margin-inline: auto;
}

.story-theater__preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: story-theater-ken-burns 24s ease-in-out infinite alternate;
}

@keyframes story-theater-ken-burns {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }
}

.story-theater__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 70% at 50% 45%, transparent 35%, rgba(5, 10, 16, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 10, 16, 0.08) 0%, transparent 35%, rgba(5, 10, 16, 0.35) 100%);
}

.story-theater__veil {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.55) 100%);
}

.story-theater__veil .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.story-theater__veil .eyebrow::before {
  background: var(--color-accent);
}

.story-theater__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.35rem);
  margin-top: clamp(1.15rem, 2.8vw, 1.65rem);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 4vw, 2.25rem);
  border-radius: var(--card-radius);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.96) 100%);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.story-theater__teaser {
  margin: 0;
  max-width: 26ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  text-wrap: balance;
}

.story-theater__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.story-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.7rem 1.35rem 0.7rem 0.7rem;
  min-height: 3rem;
  border: none;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.96875rem, 1.15vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.18);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease);
}

.story-play-btn:hover {
  background: var(--color-dark-soft);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.22);
}

.story-play-btn__disc {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.45);
}

.story-play-btn__icon {
  margin-left: 0.15rem;
  font-size: 0.95rem;
  line-height: 1;
}

/* Story timeline collapsed until play / film end */
.story-timeline--collapsed .story-timeline__head,
.story-timeline--collapsed .story-timeline__track {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.story-timeline--collapsed {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
}

/* Story film mode */
body.is-story-film {
  overflow: hidden;
}

.story-film-backdrop {
  position: fixed;
  inset: 0;
  z-index: 480;
  pointer-events: none;
  overflow: hidden;
  background: #03070d;
}

.story-film-backdrop[hidden] {
  display: none !important;
}

.story-film-backdrop__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: none;
  transition: opacity var(--beat-fade-ms, 0.8s) ease;
  contain: strict;
  backface-visibility: hidden;
}

.story-film-backdrop__layer.is-active {
  opacity: 1;
}

.story-film-backdrop__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 8, 14, 0.55) 0%,
    rgba(3, 8, 14, 0.12) 35%,
    rgba(3, 8, 14, 0.18) 65%,
    rgba(3, 8, 14, 0.62) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .story-film-backdrop__layer {
    transition-duration: 0.55s !important;
  }
}

body.is-story-film .story-theater {
  display: none !important;
}

body.is-story-film .site-header {
  visibility: visible;
  z-index: 650;
  opacity: 0.58;
  transition: opacity 0.45s var(--ease);
}

body.is-story-film .site-header:hover,
body.is-story-film .site-header:focus-within,
body.is-story-film .site-header.is-menu-open {
  opacity: 1;
}

body.is-story-film .content-section,
body.is-story-film .info-cards,
body.is-story-film footer {
  visibility: hidden;
}

body.is-story-film .story-timeline {
  position: fixed;
  inset: 0;
  z-index: 500;
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
}

body.is-story-film .story-timeline .wrap {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

body.is-story-film .story-timeline__head {
  display: none;
}

body.is-story-film .story-timeline__path {
  display: none;
}

body.is-story-film .story-timeline__track {
  visibility: visible;
  height: 100%;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  gap: 0;
  padding: 0;
  margin: 0;
  max-width: none;
}

body.is-story-film .story-chapter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 1.4s;
  pointer-events: none;
  z-index: 1;
}

body.is-story-film .story-chapter.is-film-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

body.is-story-film .story-step {
  display: block;
  width: 100%;
  height: 100%;
}

body.is-story-film .story-chapter__stage {
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "meta"
    "spacer"
    "narrative";
  gap: clamp(0.75rem, 2vw, 1.25rem);
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  max-width: none;
  margin: 0;
  padding:
    clamp(4.5rem, 8vw, 5.5rem)
    clamp(1rem, 3.5vw, 2.25rem)
    clamp(5.5rem, 11vw, 7rem);
  box-sizing: border-box;
  align-items: stretch;
  justify-items: center;
}

body.is-story-film .story-chapter:nth-of-type(even) .story-chapter__stage {
  grid-template-columns: 1fr;
  grid-template-areas:
    "meta"
    "spacer"
    "narrative";
}

body.is-story-film .story-step__meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  max-width: min(100%, 36rem);
  margin-inline: auto;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 12, 22, 0.72);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.is-story-film .story-step__meta::after {
  display: none;
}

body.is-story-film .story-step__num {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(230, 57, 70, 0.9);
}

body.is-story-film .story-step__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.is-story-film .story-step__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #fff;
}

body.is-story-film .story-step__desc {
  display: none;
}

body.is-story-film .story-step__media {
  display: none !important;
}

body.is-story-film .story-step__narrative {
  grid-area: narrative;
  width: min(100%, 42rem);
  margin-inline: auto;
  padding: clamp(1rem, 2.4vw, 1.35rem) clamp(1.15rem, 2.8vw, 1.55rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--color-accent);
  background: rgba(5, 12, 22, 0.78);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.is-story-film .story-step__narrative p {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  line-height: 1.68;
}

.story-film-bar {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

body.is-story-film .story-film-bar:not([hidden]) {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 600;
  transform: translateX(-50%);
  display: flex;
  background: rgba(13, 27, 42, 0.94);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.story-film-bar__close,
.story-film-bar__pause,
.story-film-bar__audio,
.story-film-bar__sfx {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
}

.story-film-bar__audio,
.story-film-bar__sfx {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}

.story-film-bar__audio[aria-pressed="false"] {
  opacity: 0.55;
}

.story-film-bar__sfx[aria-pressed="false"] {
  opacity: 0.55;
}

.story-film-bar__audio.is-speaking {
  background: rgba(255, 255, 255, 0.1);
}

.story-film-bar__audio-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.story-film-bar__audio.is-speaking .story-film-bar__audio-icon {
  animation: story-audio-pulse 1.2s ease-in-out infinite;
}

.story-film-bar__audio-label {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.story-film-bar__sfx-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.story-film-bar__sfx-label {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

@keyframes story-audio-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.65;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-theater__preview {
    animation: none;
    transform: none;
  }

  body.is-story-film .story-chapter {
    transition-duration: 0.5s;
  }

  .story-film-backdrop__layer {
    transition-duration: 0.5s;
  }

  .story-film-bar__audio.is-speaking .story-film-bar__audio-icon {
    animation: none;
    opacity: 0.85;
  }
}

@media (max-width: 520px) {
  .story-film-bar__audio-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.story-film-bar__track {
  width: clamp(6rem, 18vw, 10rem);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.story-film-bar__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  transform-origin: left center;
  transform: scaleX(0.142);
  transition: transform 0.5s var(--ease);
}

.story-film-bar__count {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  min-width: 2.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .logo-hub {
    max-height: min(58vh, 420px);
  }

  .contact-hub__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hub__text {
    max-width: none;
    margin-inline: auto;
  }

  .contact-hub__email,
  .contact-hub__actions {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .logo-hub__link {
    font-size: 0.6875rem;
  }

  .logo-hub__link[data-hub-pos="l1"] { left: 0; }
  .logo-hub__link[data-hub-pos="r1"] { right: 0; }

  .logo-hub__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    right: var(--pad);
    top: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    z-index: 5;
  }

  .logo-hub__toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    margin-inline: auto;
    background: var(--color-dark);
    border-radius: 1px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }

  .logo-hub.is-menu-open .logo-hub__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .logo-hub__nav:not(.is-open) .logo-hub__link {
    opacity: 0;
    pointer-events: none;
  }

  .logo-hub__nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(251, 253, 255, 0.97);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }

  .logo-hub__nav.is-open .logo-hub__link {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    font-size: 1.05rem;
    animation: none;
  }

  .logo-hub__spokes {
    opacity: 0.25;
  }

  body.is-story-film .story-chapter__stage {
    padding-top: clamp(4rem, 9vw, 5rem);
    padding-bottom: clamp(5rem, 12vw, 6.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-hub__spoke-group,
  html.is-enhanced .logo-hub__link {
    animation: none;
    opacity: 1;
  }
}

html.no-cinematic body:not(.is-story-film) .story-chapter__stage {
  display: contents;
}

/* Info cards */
.info-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  width: min(100%, var(--max));
  max-width: var(--max);
  margin-inline: auto;
}

.info-cards--prefooter {
  line-height: 1.65;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.info-cards--prefooter::after {
  display: none;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.85rem 1.65rem;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  color: var(--color-text);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(13, 27, 42, 0.12);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
}

.info-card__icon img {
  width: auto;
  max-width: 64px;
  max-height: 76px;
  object-fit: contain;
}

.info-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.28;
  color: var(--color-dark);
}

.info-card__text {
  margin: 0 0 1.5rem;
  flex: 1;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-muted);
  font-weight: 500;
}

.info-card__link {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-accent);
  transition: color 0.2s;
}

.info-card__link:hover { color: var(--color-accent-hover); }

.info-card__link:focus-visible {
  outline: 2px solid rgba(230, 57, 70, 0.35);
  outline-offset: 3px;
}

/* Contact hub — unified email + pilot CTAs */
.contact-hub {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.contact-hub__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: var(--card-radius);
  background:
    linear-gradient(145deg, #fff 0%, #f8fbff 100%);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.contact-hub__peaks {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  width: clamp(7rem, 14vw, 9.5rem);
  opacity: 0.07;
  pointer-events: none;
}

.contact-hub__peaks img {
  width: 100%;
  height: auto;
}

.contact-hub__title {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--color-dark);
}

.contact-hub__text {
  margin: 0 0 1.35rem;
  max-width: 44ch;
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--color-muted);
  font-weight: 500;
}

.contact-hub__email {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: clamp(0.95rem, 2vw, 1.1rem) clamp(1.1rem, 2.2vw, 1.35rem);
  border-radius: calc(var(--radius) + 2px);
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease-out);
}

.contact-hub__email:hover {
  background: var(--color-dark-soft);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.contact-hub__email-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.contact-hub__email-address {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  word-break: break-word;
}

.contact-hub__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(160deg, var(--color-dark) 0%, #152536 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hub__actions-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-tech);
}

.contact-hub__actions-lead {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.contact-hub__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.contact-hub__buttons .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.contact-hub__buttons .btn-outline-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-hub__buttons .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

/* Support strip — horizontal icons pred aplikacijo */
.support-strip {
  padding-block: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-dark) 100%);
}

.support-strip__grid {
  margin: 0;
  padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(0.85rem, 2vw, 1.35rem);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 4px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.support-strip__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0.5rem 0.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.support-strip__grid li:last-child {
  border-right: none;
}

.support-strip__grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.support-strip__grid li:last-child img {
  height: 48px;
}

.support-strip__grid span {
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
}

/* FAQ */
.section--faq {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--color-bg);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  border: 1px solid rgba(13, 27, 42, 0.07);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq__item[open] {
  border-color: rgba(230, 57, 70, 0.18);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.07);
}

.faq__item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s var(--ease);
}

.faq__item[open] summary {
  color: var(--color-dark);
}

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

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
}

.faq__item[open] summary::after { content: "−"; }

.faq__item summary:focus-visible {
  outline: 2px solid rgba(239, 59, 52, 0.35);
  outline-offset: -2px;
}

.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-muted);
  font-weight: 500;
}

.faq__item a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Lower page — mockups + prefooter cards, seamless stack */
.page-lower {
  background: #f3f2f0;
  line-height: 1.65;
}

.page-lower .info-cards {
  line-height: 1.65;
}

.content-section {
  position: relative;
  padding-block: clamp(3.25rem, 7vw, 5.25rem);
  line-height: var(--leading-relaxed);
  overflow: hidden;
}

.content-section__head {
  max-width: min(100%, 48rem);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.content-section__head .eyebrow {
  justify-content: center;
}

.content-section__head .eyebrow::before {
  display: none;
}

.content-section__head--compact {
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.content-section--why {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.comparison-card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.65rem, 3vw, 2.15rem);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease-out);
}

.comparison-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.comparison-card::before {
  display: none;
}

.comparison-card h3 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

.comparison-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 1.65rem;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  font-weight: 500;
}

.comparison-card li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.6;
  color: rgba(154, 164, 178, 0.95);
}

.comparison-card--accent {
  background: linear-gradient(165deg, #fff 0%, #fff9fa 100%);
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow:
    0 8px 32px rgba(230, 57, 70, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.comparison-card--accent::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  height: auto;
  background: var(--color-accent);
}

.comparison-card--accent li::before {
  content: "✓";
  color: var(--color-accent);
  box-shadow: none;
}

.why-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  padding: 0;
  list-style: none;
}

.why-trust li {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.comparison-card--dark {
  background: linear-gradient(165deg, var(--color-dark-soft) 0%, var(--color-dark) 100%);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-card);
}

.comparison-card--dark h3,
.comparison-card--dark li {
  color: #fff;
}

.comparison-card--dark li {
  color: rgba(255, 255, 255, 0.86);
}

.comparison-card--dark li::before {
  background: var(--color-tech);
  box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.12);
}

.content-section--features {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.content-section--features .wrap {
  position: relative;
}

.content-section--features .wrap::after {
  content: "";
  display: block;
  width: min(100%, 7rem);
  height: 1.75rem;
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  background: url("assets/brand/tri-glav-symbol.svg") center / contain no-repeat;
  opacity: 0.12;
}

.feature-grid--clean {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.feature-grid--clean article {
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1.35rem 1.25rem;
  text-align: left;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.feature-grid--clean article:hover {
  transform: none;
  border-color: rgba(13, 27, 42, 0.14);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.feature-grid--clean img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: none;
}

.feature-grid--clean strong {
  font-size: var(--text-sm);
  line-height: 1.38;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-dark);
}

.feature-grid--clean span {
  font-size: 0.9375rem;
  line-height: var(--leading-relaxed);
  color: var(--color-muted);
  font-weight: 500;
}

.content-section--app {
  position: relative;
  background:
    linear-gradient(165deg, #0a1522 0%, var(--color-dark) 38%, #0d2138 100%);
  color: #fff;
  overflow: hidden;
}

.app-section__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.app-section__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 72% 18%, rgba(77, 163, 255, 0.14), transparent 62%),
    radial-gradient(ellipse 60% 40% at 18% 85%, rgba(230, 57, 70, 0.06), transparent 55%);
}

.app-section__peaks {
  position: absolute;
  inset: auto 0 0;
  height: clamp(6rem, 18vw, 11rem);
  color: #fff;
}

.app-section__peaks-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.app-section__emblem {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 8vw, 6rem);
  transform: translateY(-50%);
  width: clamp(14rem, 28vw, 22rem);
  height: auto;
  opacity: 0.06;
}

.content-section--app .wrap {
  position: relative;
  z-index: 1;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.app-showcase__brand {
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
  width: fit-content;
  max-width: min(100%, 16rem);
}

.app-showcase__logo {
  display: block;
  height: clamp(2.75rem, 7vw, 3.75rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.app-showcase__copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.app-showcase__copy h2 span {
  color: var(--color-accent);
}

.app-showcase__copy p {
  max-width: 36rem;
  margin: 0;
  font-size: var(--text-md);
  line-height: var(--leading-body);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.app-showcase__copy .btn {
  margin-top: 0;
}

.app-showcase__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}

.app-showcase__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
}

.store-badge--soon {
  cursor: default;
  opacity: 0.85;
}

.app-showcase__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(22rem, 42vw, 28rem);
}

.app-showcase__visual-ring {
  position: absolute;
  width: min(88%, 20rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(77, 163, 255, 0.12) 0%, rgba(77, 163, 255, 0) 68%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.app-showcase__pillars {
  display: flex;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  margin: clamp(1rem, 2.5vw, 1.35rem) 0 0;
  padding: 0;
  list-style: none;
}

.app-showcase__pillars li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  min-width: 4.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.app-showcase__pillars img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.app-showcase__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.app-showcase__features span {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
}

/* App phone — brand mockup device */
.phone-mockup--brand {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup__glow {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.22) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
}

.phone-mockup__device {
  position: relative;
  z-index: 1;
  width: min(100%, 18rem);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

/* CSS phone mockup — legacy fallback */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup__bezel {
  position: relative;
  width: min(100%, 17.5rem);
  padding: 0.65rem;
  border-radius: 2.25rem;
  background: linear-gradient(160deg, #2a3f55 0%, #0d1b2a 100%);
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-mockup__notch {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  z-index: 2;
  width: 5.5rem;
  height: 1.15rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #060d14;
}

.phone-mockup__screen {
  overflow: hidden;
  border-radius: 1.75rem;
  background: #0a1520;
}

.phone-ui {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  background: linear-gradient(180deg, #122033 0%, #0a1520 100%);
}

.phone-ui__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.phone-ui__signal {
  color: rgba(77, 163, 255, 0.85);
  letter-spacing: 0.08em;
}

.phone-ui__map {
  position: relative;
  flex: 1;
  min-height: 14rem;
  margin: 0 0.65rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, #1a3348 0%, #243d52 40%, #2d4a38 100%);
}

.phone-ui__terrain {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -35deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.03) 14px 15px
    ),
    radial-gradient(circle at 30% 40%, rgba(77, 163, 255, 0.15), transparent 45%);
}

.phone-ui__route {
  position: absolute;
  inset: 18% 12% 22% 20%;
  border: 3px solid rgba(230, 57, 70, 0.85);
  border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.25);
}

.phone-ui__pin {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #4da3ff;
  box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.25);
}

.phone-ui__pin--you {
  top: 28%;
  left: 32%;
}

.phone-ui__sos {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.45rem 0.75rem;
  border: none;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(180deg, #f24642, var(--color-accent));
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.45);
  cursor: default;
}

.phone-ui__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.phone-ui__badge {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.18);
  color: #9fd0ff;
}

.content-section--footer-cta {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, #0d1b2a 0%, #08121d 100%);
  color: #fff;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.footer-cta h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.footer-cta__domain {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-cta__domain a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

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

.footer-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 18rem;
}

.footer-cta__links a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s, border-color 0.2s;
}

.footer-cta__links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.footer-cta__egr {
  min-width: 10rem;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-align: right;
}

.footer-cta__egr span,
.footer-cta__egr strong {
  display: block;
}

.footer-cta__egr span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.46);
}

.footer-cta__egr strong {
  margin-top: 0.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.section-mockup {
  padding: 0;
  line-height: 0;
}

.section-mockup--zakaj {
  background: #f3f2f0;
}

.section-mockup--app,
.section-mockup--footer {
  background: var(--color-dark);
}

.section-mockup--features {
  background: #eceef0;
}

.page-bridge {
  display: block;
  margin-top: -1px;
}

.page-bridge--features-app {
  height: clamp(36px, 5vw, 56px);
  background: linear-gradient(
    180deg,
    #eceef0 0%,
    #b4bcc6 16%,
    #6b7d8e 38%,
    #3a5064 62%,
    #1c3144 82%,
    #0d1b2a 100%
  );
}

.page-bridge--app-info {
  height: clamp(44px, 6vw, 68px);
  background: linear-gradient(
    180deg,
    #0d1b2a 0%,
    #243548 22%,
    #6b7d8e 52%,
    #c5cad1 78%,
    #eceef0 92%,
    #f3f2f0 100%
  );
}

.page-bridge--info-footer {
  height: clamp(36px, 5vw, 52px);
  background: linear-gradient(
    180deg,
    #f3f2f0 0%,
    #c8ced6 28%,
    #5a6d7e 58%,
    #243548 82%,
    #0d1b2a 100%
  );
}

.page-lower .section-mockup__figure {
  width: min(100% - (var(--pad) * 2), var(--mockup-max));
  max-width: var(--mockup-max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(0px, 1.2vw, 18px);
  box-shadow: 0 18px 54px rgba(13, 27, 42, 0.08);
}

.page-lower .section-mockup__graphic {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: top;
}

.section-mockup--features .section-mockup__figure {
  --mockup-max: 1040px;
}

.section-mockup--footer {
  padding-block: clamp(1.25rem, 3vw, 2rem);
}

.section-mockup--footer .section-mockup__figure {
  --mockup-max: 1080px;
  width: min(100% - (var(--pad) * 2), var(--mockup-max));
  max-width: var(--mockup-max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(0px, 1.2vw, 16px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.32);
}

.section-mockup--footer .section-mockup__graphic {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}

/* Footer — audience row + bar */
.site-footer-audience {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-dark);
  color: #fbfdff;
  overflow: hidden;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.site-footer-audience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.site-footer-audience__bg--parallax {
  overflow: hidden;
}

.footer-parallax-layer {
  position: absolute;
  inset: -10% 0;
  will-change: transform;
  backface-visibility: hidden;
}

.site-footer-audience__bg img,
.footer-parallax-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.site-footer-audience__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 29, 0.78) 0%, rgba(13, 27, 42, 0.82) 45%, rgba(8, 18, 29, 0.92) 100%),
    radial-gradient(ellipse 90% 70% at 50% 12%, rgba(77, 163, 255, 0.08), transparent 65%);
}

.site-footer-audience__watermark {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(12rem, 28vw, 18rem);
  height: auto;
  opacity: 0.04;
  pointer-events: none;
}

.site-footer-audience__inner {
  position: relative;
  z-index: 1;
}

.footer-tagline {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.5vw, 1.5rem);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(8, 18, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.footer-bar__brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-width: min(100%, 18rem);
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}

.footer-bar__brand:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-bar__logo {
  display: block;
  height: clamp(2.35rem, 5vw, 3rem);
  width: auto;
  max-width: min(100%, 20rem);
  object-fit: contain;
}

.footer-bar__site {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s;
}

.footer-bar__site:hover {
  color: #fff;
}

.footer-bar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding-inline: clamp(0.85rem, 2vw, 1.25rem);
  border-left: 2px solid var(--color-accent);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  justify-self: center;
}

.footer-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fbfdff;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}

.footer-bar__social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.footer-bar__social img {
  width: 1.125rem;
  height: 1.125rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-bar__email {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-bar__email-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bar__email-address {
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.footer-bar__email:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-bar__email:hover .footer-bar__email-address {
  color: #fff;
}

.footer-bar__egr {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  padding-left: clamp(0.85rem, 2vw, 1.25rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  justify-self: end;
}

.footer-bar__egr-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.footer-bar__egr-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.footer-bar__egr-name {
  font-family: var(--font-brand);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fbfdff;
}

.footer-bar__egr-tagline {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bar__egr-word--explore { color: #4DA3FF; }
.footer-bar__egr-word--grow { color: #5cb85c; }
.footer-bar__egr-word--rise { color: var(--color-gold); }

.footer-bar__email--legacy {
  display: none !important;
}

.site-footer-audience .footer-legal {
  margin-top: 1.25rem;
  padding-top: 1rem;
}

.site-footer-audience .footer-copy {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.site-footer-bar {
  background: linear-gradient(180deg, #08121d 0%, #060e16 100%);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 1.15rem 1.35rem;
}

.site-footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
}

.site-footer-bar__contact {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-footer-bar__contact a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

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

.site-footer-bar .footer-legal {
  margin: 0;
  padding: 0;
  border: none;
}

/* FAQ / subpage footer */
.site-footer {
  background: linear-gradient(180deg, var(--color-dark-soft) 0%, var(--color-dark) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(1.5rem, 3vw, 2rem) var(--pad) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.footer-label {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
  outline: none;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.social-links img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #F8FAFC;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity 0.2s;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  outline: none;
}

.social-links a:hover img,
.social-links a:focus-visible img {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-egr {
  text-align: right;
}

.footer-egr__label {
  margin: 0 0 0.15rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-egr__tagline {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
}

/* Reveal animations — visible by default; hidden only once JS runs */
.reveal {
  opacity: 1;
  transform: none;
}

html.is-enhanced .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition:
    opacity 0.75s var(--ease),
    transform 0.85s var(--ease-out);
  will-change: opacity, transform;
}

html.is-enhanced .reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.is-enhanced .story-step.reveal:not(.is-visible) {
  transform: translateY(28px) scale(0.985);
}

html.is-enhanced .story-step.reveal.is-visible {
  transform: none;
}

html.is-enhanced .story-timeline__track .story-step:nth-of-type(odd).reveal:not(.is-visible) {
  transform: translateX(-18px) translateY(24px);
}

html.is-enhanced .story-timeline__track .story-step:nth-of-type(even).reveal:not(.is-visible) {
  transform: translateX(18px) translateY(24px);
}

html.is-enhanced .section-mockup__figure.reveal:not(.is-visible) {
  transform: translateY(20px) scale(0.992);
}

html.is-enhanced .info-card.reveal:not(.is-visible) {
  transform: translateY(24px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .scroll-hint {
    display: none;
  }

  .story-chapter-progress,
  html.has-cinematic .story-chapter-progress {
    display: none !important;
  }

  html.has-cinematic .story-chapter__stage {
    display: contents;
  }

  .hero-parallax-layer,
  .footer-parallax-layer,
  .story-timeline__path img,
  [data-parallax] img {
    transform: none !important;
  }

  .hero-intro > * {
    animation: none;
  }

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

  .story-step.reveal,
  .story-timeline__track .story-step:nth-of-type(odd).reveal,
  .story-timeline__track .story-step:nth-of-type(even).reveal,
  .section-mockup__figure.reveal,
  .info-card.reveal {
    transform: none;
  }

  .info-card:hover { transform: none; }
  .feature-grid--clean article:hover { transform: none; }
  .feature-tile:hover { transform: none; }
  .story-step:hover .story-step__media,
  .story-step:hover .story-step__narrative { transform: none; }
  .story-step:hover .story-step__media img { transform: none; }
  .btn-primary:hover,
  .btn-nav-cta:hover,
  .btn-hero-ghost:hover,
  .brand--premium:hover { transform: none; }
  .brand-lockup-header:hover { transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-intro {
    width: min(100%, 38rem);
  }

  .hero-wordmark {
    font-size: clamp(3.5rem, 8.8vw, 5.25rem);
  }

  .hero-kicker {
    letter-spacing: 0.18em;
  }

  .hero-slogan,
  .hero-pillars {
    letter-spacing: 0.11em;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: #fbfdff;
    border-bottom: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 16px 40px rgba(13, 27, 42, 0.1);
    padding: 0.5rem 0 1rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem var(--pad);
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
    white-space: normal;
    color: rgba(26, 43, 60, 0.82);
  }

  .menu-toggle { display: flex; }

  .site-header--bar .menu-toggle {
    display: flex;
  }

  .header-cta { display: none; }

  .brand-lockup__mark {
    height: clamp(2.75rem, 8vw, 3rem);
    max-width: min(280px, 62vw);
  }

  .site-header.is-menu-open {
    background: #fbfdff;
    box-shadow: 0 8px 32px rgba(13, 27, 42, 0.1);
  }
}

@media (max-width: 1024px) {
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .app-showcase__visual {
    order: -1;
    min-height: auto;
  }

  .app-section__emblem {
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.04;
  }

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

  .footer-cta__egr {
    width: 100%;
    padding-left: 0;
    padding-top: 1rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .footer-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bar__brand,
  .footer-bar__social,
  .footer-bar__egr {
    justify-self: center;
  }

  .footer-bar__social {
    justify-content: center;
    padding-inline: 0;
    border-inline: none;
    border-block: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 0.65rem;
  }

  .footer-bar__egr {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-top: 0.65rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bar__egr-brand {
    align-items: center;
  }

  .footer-bar__egr-tagline {
    flex-direction: row;
    gap: 0.35rem;
  }

  .info-cards__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  }

  .feature-strip__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  }

  .story-step {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
    align-items: stretch;
  }

  .story-step__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 42rem;
    padding: 0;
  }

  .story-step__meta::after {
    display: none;
  }

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

  .support-strip__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  }
}

@media (max-width: 1100px) {
  .site-nav__rail a {
    font-size: 0.6875rem;
    gap: 0.25rem;
  }

  .site-nav__rail {
    gap: 0.35rem;
  }

  .header-hub__rails {
    width: clamp(11rem, 34vw, 20rem);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 84px;
  }

  .btn {
    min-height: 44px;
  }

  .info-card__text,
  .comparison-card li,
  .faq__item p {
    font-size: 1rem;
  }

  .contact-hub__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hub__text {
    max-width: none;
    margin-inline: auto;
  }

  .contact-hub__email {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .contact-hub__actions {
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
  }

  /* Footer — simplified mobile layout */
  .site-footer-audience {
    padding-block: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 1.5rem);
  }

  .footer-tagline {
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }

  .footer-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.25rem);
  }

  .footer-bar__brand {
    display: inline-flex;
    justify-self: center;
    max-width: min(100%, 14rem);
  }

  .footer-bar__logo {
    height: clamp(2rem, 8vw, 2.5rem);
  }

  .footer-bar__social {
    justify-content: center;
    padding-inline: 0;
    border: none;
    padding-block: 0;
    justify-self: center;
  }

  .footer-bar__egr {
    flex-direction: column;
    align-items: center;
    padding: 0;
    border: none;
    text-align: center;
    justify-self: center;
  }

  .footer-bar__egr-brand {
    align-items: center;
  }

  .footer-bar__egr-tagline {
    flex-direction: row;
    justify-content: center;
    gap: 0.35rem;
  }

  .site-footer-audience .footer-legal {
    margin-top: 0.85rem;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
    font-size: 0.75rem;
  }

  .site-footer-audience .footer-copy {
    margin-top: 0.65rem;
    font-size: 0.8125rem;
  }

  .footer-copy__extra {
    display: none;
  }

  .header-inner--hub {
    grid-template-columns: 1fr auto;
  }

  .header-nav-shell {
    justify-content: center;
  }

  .site-nav--hub {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    column-gap: 0;
    background: #fbfdff;
    border-bottom: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 16px 40px rgba(13, 27, 42, 0.1);
    padding: 0.5rem 0 1rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    z-index: 99;
  }

  .site-nav--hub.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__rail {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__rail--left,
  .site-nav__rail--right {
    justify-content: stretch;
  }

  .site-nav__rail a {
    justify-content: space-between;
    padding: 0.95rem var(--pad);
    min-height: 48px;
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
    font-size: 0.9375rem;
    white-space: normal;
    color: var(--nav-link);
  }

  .site-nav__arrow {
    opacity: 0.45;
  }

  .header-hub {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    pointer-events: auto;
    width: auto;
  }

  .header-hub__rails {
    display: none;
  }

  .header-hub__logo--hero {
    height: clamp(2.5rem, 12vw, 3rem);
  }

  .support-strip__grid li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 0.85rem;
  }

  .support-strip__grid li:last-child {
    border-bottom: none;
  }

  .feature-tile:hover {
    transform: none;
  }

  .story-step:hover .story-step__media {
    transform: none;
  }

  .site-nav:not(.site-nav--hub) {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: #fbfdff;
    border-bottom: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 16px 40px rgba(13, 27, 42, 0.1);
    padding: 0.5rem 0 1rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .site-nav:not(.site-nav--hub).is-open,
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav:not(.site-nav--hub) a {
    padding: 0.95rem var(--pad);
    min-height: 48px;
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
    white-space: normal;
    color: var(--nav-link);
  }

  .menu-toggle { display: flex; }

  .brand-lockup-header--brand {
    padding: 0;
  }

  .brand-lockup__mark {
    height: clamp(2.75rem, 8vw, 3rem);
    max-width: min(260px, 68vw);
  }

  body {
    font-size: 1.0625rem;
  }

  .header-inner--bar {
    gap: 0.5rem;
  }

  .story-theater {
    padding-inline: var(--pad);
  }

  .story-theater__frame {
    min-height: clamp(180px, 52vw, 280px);
    border-radius: 14px;
  }

  .story-theater__teaser {
    max-width: none;
  }

  .content-section--app {
    padding-block: clamp(2.5rem, 6vw, 3.5rem);
  }

  .app-showcase__copy {
    text-align: center;
  }

  .app-showcase__cta-row {
    align-items: center;
    width: 100%;
  }

  .app-showcase__stores {
    justify-content: center;
  }

  .app-showcase__copy .btn {
    width: 100%;
    max-width: 18rem;
    margin-inline: auto;
  }

  .app-showcase__brand {
    margin-inline: auto;
  }

  .app-showcase__brand {
    max-width: min(100%, 14rem);
  }

  .app-showcase__logo {
    height: clamp(2.35rem, 10vw, 3.25rem);
  }

  .phone-mockup {
    max-width: min(100%, 15rem);
    margin-inline: auto;
  }

  .info-cards__grid {
    gap: 1rem;
  }

  .brand__logo-full--brand {
    height: clamp(32px, 8vw, 38px);
    max-width: min(180px, 62vw);
  }

  .hero--split .hero-brand__logo {
    transform: none;
  }

  .header-cta { display: none; }

  .site-header.is-menu-open {
    background: #fbfdff;
    box-shadow: 0 8px 32px rgba(13, 27, 42, 0.1);
  }

  .hero-bg {
    object-position: 72% 42%;
  }

  .hero--split .hero-media--photo .hero-bg,
  .hero--split .hero-bg {
    object-position: 48% 36%;
  }

  .hero-white-fade {
    background: linear-gradient(
      180deg,
      rgba(251, 253, 255, 0.1) 0%,
      transparent 22%,
      rgba(251, 253, 255, 0.32) 40%,
      #fbfdff 56%,
      #fbfdff 100%
    );
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(13, 27, 42, 0.78) 0%,
        rgba(13, 27, 42, 0.48) 38%,
        rgba(13, 27, 42, 0.12) 58%,
        transparent 78%
      ),
      linear-gradient(
        180deg,
        rgba(13, 27, 42, 0.36) 0%,
        transparent 48%,
        rgba(13, 27, 42, 0.24) 100%
      );
  }

  .hero--split .hero-media--photo .hero-overlay,
  .hero--split .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 27, 42, 0.18) 0%, transparent 32%),
      linear-gradient(180deg, transparent 55%, rgba(13, 27, 42, 0.06) 100%);
  }

  .hero--split .hero-layout {
    align-items: flex-end;
    min-height: calc(clamp(78vh, 88svh, 92svh) - var(--header-h));
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .hero--split .hero-intro {
    max-width: 100%;
    width: 100%;
    padding-top: clamp(28vh, 34vw, 38vh);
  }

  .hero-intro {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .hero-layout {
    justify-content: flex-start;
  }

  .hero-kicker::after {
    display: none;
  }

  .hero-kicker::before {
    display: inline-block;
    content: "";
    width: 1.75rem;
    height: 2px;
    margin-right: 0.65rem;
    vertical-align: middle;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.45);
  }

  .hero-brand {
    margin-bottom: 1.1rem;
    padding: 0;
  }

  .hero--split .hero-brand {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hero-brand__logo {
    width: min(100%, clamp(15rem, 88vw, 22rem));
    margin-left: 0;
  }

  .hero-rule {
    background: linear-gradient(
      90deg,
      rgba(230, 57, 70, 0.9) 0%,
      rgba(232, 165, 75, 0.7) 42%,
      transparent 100%
    );
  }

  .hero-pillars {
    justify-content: flex-start;
    letter-spacing: 0.1em;
    gap: 0.35rem 0.45rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: stretch;
  }

  .btn-hero-cta,
  .btn-hero-ghost {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-peak {
    opacity: 0.08;
    width: 180%;
  }

  .hero-pillars {
    letter-spacing: 0.08em;
    gap: 0.35rem 0.45rem;
  }

  .btn-hero-cta {
    max-width: none;
  }

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

  .story-timeline__path { display: none; }

  .story-step {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .story-step__meta { order: 1; }

  .story-step__media {
    order: 2;
    max-width: 100%;
  }

  .story-step__meta::after {
    display: none;
  }

  .story-step__meta {
    padding: 0;
  }

  .story-step__icon {
    width: 4.25rem;
    height: 4.25rem;
  }

  .story-step__narrative {
    grid-column: auto;
    order: 3;
    padding: 1.25rem 1.15rem;
  }

  .story-step__narrative p {
    font-size: 1.1rem;
    line-height: 1.68;
    font-weight: 500;
  }

  .story-theater__controls {
    padding: 1.25rem 1rem;
  }

  .story-theater__teaser {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
  }

  .story-play-btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  .support-strip__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
    gap: 0.85rem;
  }

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

  .footer-egr { text-align: left; }
}

@media (max-width: 480px) {
  .info-cards__grid,
  .support-strip__grid,
  .feature-strip__grid {
    grid-template-columns: 1fr;
  }

  .site-footer-bar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer-bar .footer-legal {
    justify-content: center;
  }

  .comparison-card,
  .footer-cta,
  .footer-bar {
    border-radius: var(--radius);
  }

  .feature-grid--clean {
    grid-template-columns: 1fr;
  }

  .app-showcase__features {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .site-nav a::after {
    bottom: -0.5rem;
  }
}

@media (max-width: 720px) {
  .site-header.is-scrolled { height: var(--header-h); }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-page {
  padding: calc(var(--header-h) + 2rem) var(--pad) var(--section-y);
}

.legal-page__updated {
  margin: 0 0 2rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.legal-page__content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.legal-page__content p,
.legal-page__content li {
  color: var(--color-text);
  line-height: 1.7;
}

.legal-page__content ul {
  padding-left: 1.25rem;
}

.legal-page__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__back {
  margin-top: 2.5rem;
}

.legal-page__back a {
  font-weight: 600;
  color: var(--color-dark);
}

.site-footer--compact {
  padding-top: 1.5rem;
}

/* ==========================================================
   CINEMATIC STORY — scene-linked visual motion and atmosphere
   ========================================================== */
.story-film-backdrop::before,
.story-film-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.story-film-backdrop::before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.88);
}

.story-film-backdrop::after {
  background:
    radial-gradient(circle at 50% 42%, transparent 15%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(4, 12, 20, 0.08), rgba(4, 12, 20, 0.26));
  opacity: 0.72;
  mix-blend-mode: multiply;
  transition: opacity 900ms ease, background 900ms ease;
}

.story-film-backdrop__layer {
  will-change: opacity, transform, filter;
  animation-duration: 10.5s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.18,.72,.25,1);
}

.story-film-backdrop__layer--slow-push.is-active { animation-name: tgSlowPush; }
.story-film-backdrop__layer--pan-right.is-active { animation-name: tgPanRight; }
.story-film-backdrop__layer--danger-drift.is-active { animation-name: tgDangerDrift; }
.story-film-backdrop__layer--signal-fade.is-active { animation-name: tgSignalFade; }
.story-film-backdrop__layer--search-pan.is-active { animation-name: tgSearchPan; }
.story-film-backdrop__layer--warm-lift.is-active { animation-name: tgWarmLift; }
.story-film-backdrop__layer--gentle-drift.is-active { animation-name: tgGentleDrift; }
.story-film-backdrop__layer--summit-rise.is-active { animation-name: tgSummitRise; }
.story-film-backdrop__layer--brand-reveal.is-active { animation-name: tgBrandReveal; }
.story-film-backdrop__layer--finale-breathe.is-active { animation-name: tgFinaleBreathe; }

@keyframes tgSlowPush {
  from { transform: scale(1.035) translate3d(0, 0, 0); filter: saturate(.96) contrast(1.02); }
  to { transform: scale(1.115) translate3d(0, -1.2%, 0); filter: saturate(1.06) contrast(1.04); }
}
@keyframes tgPanRight {
  from { transform: scale(1.12) translate3d(-2.8%, 0, 0); filter: saturate(1.02); }
  to { transform: scale(1.12) translate3d(2.8%, -1%, 0); filter: saturate(1.08); }
}
@keyframes tgDangerDrift {
  0% { transform: scale(1.08) translate3d(1.4%, 0, 0) rotate(.12deg); filter: saturate(.92) contrast(1.06); }
  55% { transform: scale(1.14) translate3d(-1.2%, -1.5%, 0) rotate(-.12deg); filter: saturate(.82) contrast(1.13); }
  100% { transform: scale(1.18) translate3d(-2.2%, -2%, 0) rotate(-.18deg); filter: saturate(.74) contrast(1.17); }
}
@keyframes tgSignalFade {
  0% { transform: scale(1.10); filter: grayscale(.25) brightness(.88) contrast(1.02); }
  48% { transform: scale(1.06); filter: grayscale(.62) brightness(.72) contrast(1.08); }
  100% { transform: scale(1.03); filter: grayscale(.82) brightness(.62) contrast(1.12); }
}
@keyframes tgSearchPan {
  from { transform: scale(1.13) translate3d(3.5%, 0, 0); filter: brightness(.84) contrast(1.05); }
  to { transform: scale(1.10) translate3d(-3.2%, -1%, 0); filter: brightness(1.02) contrast(1.08); }
}
@keyframes tgWarmLift {
  from { transform: scale(1.08) translate3d(0, 1.5%, 0); filter: saturate(.96) brightness(.9); }
  to { transform: scale(1.12) translate3d(0, -1.5%, 0); filter: saturate(1.14) brightness(1.04); }
}
@keyframes tgGentleDrift {
  from { transform: scale(1.08) translate3d(-1.8%, .6%, 0); filter: saturate(1.02); }
  to { transform: scale(1.11) translate3d(1.8%, -1%, 0); filter: saturate(1.1); }
}
@keyframes tgSummitRise {
  from { transform: scale(1.08) translate3d(0, 2.4%, 0); filter: brightness(.88) saturate(.95); }
  to { transform: scale(1.13) translate3d(0, -2%, 0); filter: brightness(1.08) saturate(1.18); }
}
@keyframes tgBrandReveal {
  from { transform: scale(1.03); filter: brightness(.75) saturate(.82); }
  to { transform: scale(1.10); filter: brightness(1.08) saturate(1.18); }
}
@keyframes tgFinaleBreathe {
  0% { transform: scale(1.025); filter: brightness(.78) saturate(.82); }
  50% { transform: scale(1.075); filter: brightness(1.02) saturate(1.06); }
  100% { transform: scale(1.095); filter: brightness(1.08) saturate(1.14); }
}

.story-film-backdrop[data-scene="prepad"]::after,
.story-film-backdrop[data-scene="no-signal"]::after {
  background:
    radial-gradient(circle at 52% 43%, transparent 5%, rgba(13, 21, 29, .30) 48%, rgba(1, 4, 7, .86) 100%),
    linear-gradient(180deg, rgba(12, 20, 28, .20), rgba(0, 0, 0, .58));
  opacity: .88;
}

.story-film-backdrop[data-scene="resitev"]::after,
.story-film-backdrop[data-scene="sporazumevanje"]::after,
.story-film-backdrop[data-scene="ideja"]::after,
.story-film-backdrop[data-scene="tri-glav-09"]::after,
.story-film-backdrop[data-scene="tri-glav-finale"]::after {
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 202, 112, .10), transparent 38%),
    linear-gradient(180deg, rgba(5, 12, 18, .08), rgba(4, 9, 14, .48));
  opacity: .62;
}

.story-film-backdrop.is-act-flash::before { animation: tgActFlash 850ms ease-out; }
.story-film-backdrop.is-act-dip::after { animation: tgActDip 850ms ease-out; }
.story-film-backdrop.is-camera-shake .story-film-backdrop__layer.is-active { animation: tgCameraShake 720ms cubic-bezier(.36,.07,.19,.97) both; }
.story-film-backdrop.is-danger-pulse::after { animation: tgDangerPulse 950ms ease-out; }
.story-film-backdrop.is-signal-pulse::after { animation: tgSignalPulse 850ms steps(2, jump-none); }
.story-film-backdrop.is-focus-pulse::after { animation: tgFocusPulse 1000ms ease-out; }
.story-film-backdrop.is-summit-glow::after { animation: tgSummitGlow 1700ms ease-out; }

@keyframes tgActFlash { 0% { opacity: 0; } 12% { opacity: .72; } 100% { opacity: 0; } }
@keyframes tgActDip { 0%,100% { opacity: .72; } 38% { opacity: 1; } }
@keyframes tgCameraShake {
  0%,100% { transform: scale(1.15) translate3d(0,0,0) rotate(0); }
  14% { transform: scale(1.16) translate3d(-1.1%, .5%,0) rotate(-.25deg); }
  28% { transform: scale(1.16) translate3d(.9%, -.4%,0) rotate(.2deg); }
  44% { transform: scale(1.16) translate3d(-.7%, .35%,0) rotate(-.16deg); }
  62% { transform: scale(1.16) translate3d(.45%, -.2%,0) rotate(.1deg); }
  80% { transform: scale(1.16) translate3d(-.2%, .1%,0) rotate(-.05deg); }
}
@keyframes tgDangerPulse {
  0%,100% { opacity: .88; filter: none; }
  32% { opacity: 1; filter: sepia(.20) saturate(1.55) hue-rotate(-18deg); }
}
@keyframes tgSignalPulse {
  0%,100% { opacity: .88; }
  22% { opacity: 1; }
  46% { opacity: .68; }
  68% { opacity: .98; }
}
@keyframes tgFocusPulse {
  0%,100% { opacity: .72; }
  45% { opacity: .42; background: radial-gradient(circle at 72% 42%, transparent 0 8%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.86) 100%); }
}
@keyframes tgSummitGlow {
  0%,100% { opacity: .62; }
  45% { opacity: .28; background: radial-gradient(circle at 54% 30%, rgba(255,222,157,.38), transparent 42%), linear-gradient(180deg, rgba(4,9,14,.02), rgba(4,9,14,.28)); }
}

@media (prefers-reduced-motion: reduce) {
  .story-film-backdrop__layer,
  .story-film-backdrop.is-camera-shake .story-film-backdrop__layer.is-active,
  .story-film-backdrop::before,
  .story-film-backdrop::after {
    animation: none !important;
    transform: none !important;
  }
}
