:root {
  --bg-abyss: #031124;
  --bg-deep: #071c33;
  --bg-slate: #0d2741;
  --surface: rgba(8, 31, 56, 0.78);
  --surface-strong: rgba(10, 39, 68, 0.93);
  --border: rgba(91, 177, 226, 0.26);
  --text-primary: #eaf8ff;
  --text-secondary: #c6e4f4;
  --text-muted: #9ec2d7;
  --accent-cyan: #4be6ff;
  --accent-azure: #2d8cf8;
  --accent-electric: #29b0ff;
  --accent-logo: #ff7a1a;
  --accent-logo-soft: #ffad59;
  --accent-amber: #f0bb6d;
  --success: #48da9b;
  --danger: #ff6f79;
  --ring: #89f0ff;
  --nav-pill-bg: rgba(7, 35, 60, 0.52);
  --nav-pill-border: rgba(94, 175, 220, 0.24);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 16px 30px rgba(1, 9, 18, 0.5);
  --radius-xs: 0.6rem;
  --radius-sm: 0.85rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.4rem;
  --radius-xl: 1.75rem;
  --space-2xs: 0.35rem;
  --space-xs: 0.65rem;
  --space-sm: 0.95rem;
  --space-md: 1.35rem;
  --space-lg: 1.9rem;
  --space-xl: 2.7rem;
  --space-2xl: 3.7rem;
  --space-3xl: 5.4rem;
  --container: min(1120px, 92vw);
  --font-display: 'Sora', 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
  --phone-iphone13-ratio: 390 / 844;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-primary);
  background:
    radial-gradient(circle at 12% -8%, rgba(39, 176, 255, 0.24), transparent 46%),
    radial-gradient(circle at 84% 16%, rgba(255, 122, 26, 0.18), transparent 39%),
    radial-gradient(circle at 88% 9%, rgba(75, 230, 255, 0.2), transparent 42%),
    radial-gradient(circle at 50% 60%, rgba(17, 86, 139, 0.15), transparent 60%),
    linear-gradient(165deg, var(--bg-abyss), var(--bg-deep) 42%, #02101f 100%);
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-weight: 500;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(85, 149, 184, 0.07) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.35;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(75, 230, 255, 0.12), transparent 58%),
    radial-gradient(circle at 78% 20%, rgba(255, 122, 26, 0.08), transparent 52%),
    radial-gradient(circle at 52% 66%, rgba(45, 140, 248, 0.09), transparent 60%);
}

.visual-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  filter: saturate(1.08) contrast(1.08) brightness(1.06);
}

.visual-backdrop canvas {
  opacity: 0.92;
}

body.visual-fallback-only .visual-backdrop {
  display: none;
}

#site-header {
  position: relative;
  z-index: 20;
}

main,
#store-band,
#site-footer,
#mobile-cta {
  position: relative;
  z-index: 1;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  background: var(--accent-cyan);
  color: #03213a;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-xs);
  z-index: 120;
}

.skip-link:focus-visible {
  top: 1rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
}

.btn:focus-visible,
.lang-button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

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

.btn-small {
  padding: 0.56rem 0.9rem;
  font-size: 0.85rem;
}

.btn-primary {
  color: #2f1300;
  background: linear-gradient(125deg, #ffb85a 0%, var(--accent-logo) 50%, #ff8f33 100%);
  box-shadow: 0 12px 26px rgba(255, 124, 40, 0.35);
}

.btn-ghost {
  border-color: rgba(117, 202, 247, 0.5);
  color: var(--text-primary);
  background: rgba(6, 32, 58, 0.5);
}

.btn-premium {
  color: #2d1800;
  background: linear-gradient(132deg, #ffd28f, #f0bb6d 55%, #da9a48);
  box-shadow: 0 14px 32px rgba(240, 187, 109, 0.28);
}

main {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: calc(var(--space-3xl) + 3rem);
}

.section {
  position: relative;
  padding: var(--space-2xl) 0;
}

.section-compact {
  padding: var(--space-xl) 0;
}

.section-kicker {
  margin-bottom: var(--space-xs);
  color: var(--accent-logo-soft);
  font-size: 0.83rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--space-lg);
}

.section-heading h2 {
  font-size: clamp(1.6rem, 1.7vw + 1rem, 2.45rem);
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--text-secondary);
}

.section-surface {
  background: linear-gradient(150deg, rgba(10, 41, 69, 0.9), rgba(6, 25, 47, 0.88));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.1rem, 2vw, 2.15rem);
  box-shadow: var(--shadow-soft);
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(3, 17, 36, 0.95), rgba(4, 17, 33, 0.75));
  border-bottom: 1px solid rgba(103, 183, 225, 0.2);
}

.header-glow {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 230, 255, 0.85), rgba(255, 122, 26, 0.8), transparent);
}

.header-inner {
  width: var(--container);
  min-height: 108px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  position: relative;
}

.brand-logo {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(255, 121, 32, 0.24));
}

.site-header-shell .brand-logo {
  width: 5.8rem;
  height: 5.8rem;
}

.footer-brand .brand-logo {
  width: 5.8rem;
  height: 5.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.brand-text {
  font-size: 1rem;
  line-height: 1;
}

.site-header-shell .brand-text {
  font-size: 1.34rem;
  letter-spacing: 0.06em;
}

.nav {
  justify-self: center;
}

.nav-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--nav-pill-border);
  background: var(--nav-pill-bg);
  box-shadow:
    inset 0 0 0 1px rgba(3, 20, 37, 0.35),
    0 10px 22px rgba(0, 8, 18, 0.36);
  overflow: hidden;
}

.nav-link {
  display: block;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.69rem 0.7rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  transition: color 160ms ease, background 160ms ease, box-shadow 200ms ease;
}

.nav-list li:first-child .nav-link {
  border-radius: 999px 0 0 999px;
}

.nav-list li:last-child .nav-link {
  border-radius: 0 999px 999px 0;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-primary);
  background: linear-gradient(120deg, rgba(255, 122, 26, 0.35), rgba(45, 140, 248, 0.32));
  box-shadow: inset 0 0 0 1px rgba(255, 171, 95, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  background: rgba(8, 37, 60, 0.55);
  border: 1px solid rgba(90, 168, 213, 0.28);
  border-radius: 999px;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.72rem;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 800;
  min-width: 2rem;
  min-height: 1.7rem;
  padding: 0.22rem 0.36rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-flag {
  width: 1.2rem;
  height: 0.86rem;
  border-radius: 0.14rem;
  border: 1px solid rgba(176, 215, 236, 0.55);
  object-fit: cover;
  display: block;
}

.lang-button.is-selected {
  color: #03253f;
  background: linear-gradient(130deg, #97f7ff, #49dbff);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(102, 184, 228, 0.32);
  background: rgba(7, 34, 58, 0.76);
  padding: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.26rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
}

.hero {
  padding-top: clamp(1.7rem, 3vw, 3.4rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1rem, 2.3vw, 2.7rem);
  align-items: center;
}

.hero-grid.single-column {
  grid-template-columns: 1fr;
}

.hero h1 {
  font-size: clamp(2rem, 2.2vw + 1.4rem, 3.75rem);
  max-width: 18ch;
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  color: var(--text-secondary);
  max-width: 64ch;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
}

.hero-actions {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-highlight-list {
  margin-top: var(--space-md);
  display: grid;
  gap: 0.5rem;
}

.hero-highlight-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-secondary);
}

.hero-highlight-list li::before {
  content: '';
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.53rem;
  background: linear-gradient(145deg, var(--accent-cyan), var(--accent-electric));
  box-shadow: 0 0 0 4px rgba(41, 176, 255, 0.14);
}

.hero-footnote {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-media {
  position: relative;
}

.hero-phone-wrap {
  position: relative;
  aspect-ratio: var(--phone-iphone13-ratio);
  width: min(100%, 390px);
  max-width: 390px;
  margin-inline: auto;
}

.hero-phone-shot,
.hero-video {
  border-radius: 2rem;
  border: 1px solid rgba(125, 206, 248, 0.36);
  box-shadow: var(--shadow-soft);
}

.hero-phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-video {
  position: absolute;
  inset: 9% 11% 9% 11%;
  border-radius: 1.4rem;
  background: #021021;
}

.stats-surface {
  display: grid;
  gap: var(--space-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.stat-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(115, 188, 230, 0.34);
  background: rgba(4, 29, 53, 0.72);
  padding: 1rem;
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: #d8f9ff;
}

.stat-card span {
  display: block;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.feature-grid,
.values-grid,
.security-grid,
.channels-grid,
.pillars-grid,
.trust-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.95rem;
}

.feature-card,
.value-card,
.security-card,
.channel-card,
.pillar-card,
.trust-card,
.testimonial-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(109, 190, 232, 0.3);
  background: linear-gradient(155deg, rgba(10, 40, 68, 0.82), rgba(4, 24, 43, 0.78));
  box-shadow: var(--shadow-card);
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card {
  grid-template-rows: minmax(0, 1fr) auto;
}

.feature-card:hover,
.value-card:hover,
.security-card:hover,
.channel-card:hover,
.pillar-card:hover,
.trust-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 151, 78, 0.55);
  box-shadow: 0 20px 34px rgba(6, 20, 35, 0.65);
}

.feature-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 128, 34, 0.26), rgba(45, 140, 248, 0.28));
  border: 1px solid rgba(255, 174, 98, 0.46);
  margin-bottom: 0.4rem;
}

.feature-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #ccf8ff;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-copy,
.value-card,
.security-card,
.channel-card,
.pillar-card,
.trust-card {
  gap: 0.5rem;
}

.feature-card-copy {
  display: grid;
  align-content: start;
  min-height: 12.8rem;
}

.feature-card h3,
.value-card h3,
.security-card h3,
.channel-card h3,
.pillar-card h3,
.trust-card h3,
.testimonial-card .testimonial-author {
  font-size: 1.08rem;
}

.feature-tag {
  color: var(--accent-logo-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  font-weight: 700;
}

.feature-card p,
.value-card p,
.security-card p,
.channel-card p,
.pillar-card p,
.trust-card p,
.testimonial-role,
.testimonial-card blockquote {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.phone-media-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
  justify-items: center;
  justify-content: center;
  align-self: start;
}

.phone-frame {
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(119, 202, 245, 0.34);
  box-shadow: 0 14px 20px rgba(0, 11, 24, 0.42);
  background: linear-gradient(185deg, #071f37, #041326);
  aspect-ratio: var(--phone-iphone13-ratio);
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
}

/* Make phone video mockups slightly smaller than image mockups */
.phone-frame.phone-frame-video {
  max-width: 180px;
}

.phone-frame img,
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-frame-video video {
  background: #020f1d;
}

.feature-sections {
  display: grid;
  gap: 1.1rem;
}

.feature-section {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(103, 184, 225, 0.29);
  background: linear-gradient(150deg, rgba(10, 38, 66, 0.86), rgba(5, 23, 43, 0.82));
  padding: clamp(1rem, 2vw, 1.8rem);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.feature-section-copy p {
  color: var(--text-secondary);
  margin-top: 0.7rem;
}

.feature-section-copy ul {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.feature-section-copy li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-secondary);
}

.feature-section-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--accent-logo), var(--accent-electric));
}

.feature-section-media {
  display: grid;
  gap: 0.8rem;
}

.screen-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 280px);
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0.25rem 0.45rem 0.5rem;
  scroll-snap-type: x mandatory;
  align-items: start;
}

.phone-deck-track {
  perspective: 1100px;
  transform-style: preserve-3d;
  scroll-padding-inline: 32%;
  padding-top: 0.95rem;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.phone-deck-item {
  will-change: transform, opacity, filter;
  transition:
    transform 260ms cubic-bezier(0.22, 0.75, 0.22, 1),
    opacity 220ms ease,
    filter 220ms ease,
    box-shadow 260ms ease;
  transform-origin: center center;
}

.phone-deck-item.is-active {
  transform: translate3d(0, -2px, 0) scale(1.035);
  opacity: 1;
  filter: none;
  z-index: 4;
  box-shadow: 0 20px 34px rgba(3, 13, 25, 0.62);
  animation: phoneDeckFloat 3.3s ease-in-out infinite;
}

.phone-deck-item.is-prev {
  transform: translate3d(-14px, 3px, 0) scale(0.925);
  opacity: 0.76;
  filter: saturate(0.85) brightness(0.88);
  z-index: 3;
}

.phone-deck-item.is-next {
  transform: translate3d(14px, 3px, 0) scale(0.925);
  opacity: 0.76;
  filter: saturate(0.85) brightness(0.88);
  z-index: 3;
}

.phone-deck-item.is-far {
  transform: translate3d(0, 6px, 0) scale(0.86);
  opacity: 0.45;
  filter: saturate(0.7) brightness(0.72);
  z-index: 2;
}

.screen-strip::-webkit-scrollbar,
.carousel-track::-webkit-scrollbar {
  height: 7px;
}

.screen-strip::-webkit-scrollbar-thumb,
.carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(108, 180, 223, 0.44);
}

.mini-screen,
.carousel-card {
  scroll-snap-align: center;
  border-radius: 1.1rem;
  border: 1px solid rgba(108, 186, 230, 0.28);
  background: rgba(6, 29, 50, 0.8);
  padding: 0.35rem;
  display: grid;
  gap: 0;
}

.mini-screen img,
.carousel-card img {
  border-radius: 0.95rem;
  aspect-ratio: var(--phone-iphone13-ratio);
  object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Constrain mini mockups so they don't grow excessively */
.mini-screen {
  max-width: 198px;
}

.carousel-wrapper {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
}

.carousel-wrapper-no-controls {
  grid-template-columns: 1fr;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 250px);
  gap: 0.7rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 0.9rem 0.45rem 0.8rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(118, 197, 241, 0.34);
  background: rgba(8, 36, 60, 0.84);
  color: var(--text-primary);
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-1px) scale(1.05);
  border-color: rgba(159, 220, 249, 0.58);
  background: rgba(10, 45, 74, 0.92);
}

@keyframes phoneDeckFloat {
  0% {
    transform: translate3d(0, -2px, 0) scale(1.035);
  }
  50% {
    transform: translate3d(0, -6px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, -2px, 0) scale(1.035);
  }
}

.metrics-grid {
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
}

.metric-card {
  border-radius: 1rem;
  border: 1px solid rgba(109, 189, 231, 0.32);
  background: rgba(6, 30, 54, 0.75);
  padding: 0.9rem;
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.metric-card p {
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.premium-hero {
  isolation: isolate;
}

.premium-hero::before {
  content: '';
  position: absolute;
  inset: 15% 7% auto;
  height: 240px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 122, 26, 0.22), transparent 70%);
}

.comparison-wrapper {
  overflow-x: auto;
  border: 1px solid rgba(120, 191, 230, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(5, 27, 48, 0.8);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.comparison-table th,
.comparison-table td {
  padding: 0.82rem;
  text-align: left;
  border-bottom: 1px solid rgba(108, 180, 221, 0.2);
}

.comparison-table thead th {
  color: #d9fbff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(14, 48, 78, 0.8);
}

.comparison-table tbody th {
  color: var(--text-primary);
  font-weight: 700;
}

.comparison-table td {
  color: var(--text-secondary);
}

.premium-cta-block {
  display: grid;
  gap: var(--space-md);
  justify-items: start;
}

.premium-reassurance {
  display: grid;
  gap: 0.45rem;
}

.premium-reassurance li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-secondary);
}

.premium-reassurance li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd28f, #f0bb6d);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.95rem;
  border: 1px solid rgba(109, 190, 230, 0.3);
  background: rgba(6, 30, 53, 0.76);
  padding: 0.2rem 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.85rem 0;
}

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

.faq-item p {
  color: var(--text-secondary);
  padding-bottom: 0.9rem;
}

.support-surface {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.support-surface p {
  color: var(--text-secondary);
}

.legal-links-surface {
  display: grid;
  gap: 0.75rem;
}

.legal-links-list {
  display: grid;
  gap: 0.4rem;
}

.legal-links-list a {
  color: #b7ebff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.privacy-sections {
  display: grid;
  gap: 0.85rem;
}

.privacy-section {
  display: grid;
  gap: 0.6rem;
}

.privacy-section h2 {
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
}

.privacy-section p {
  color: var(--text-secondary);
}

.contact-surface {
  max-width: 740px;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  color: var(--text-secondary);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(115, 191, 232, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(5, 22, 40, 0.78);
  color: var(--text-primary);
  font: inherit;
  padding: 0.72rem 0.82rem;
}

input::placeholder,
textarea::placeholder {
  color: #7ea6bd;
}

.form-consent {
  display: grid;
  grid-template-columns: 1.05rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.6rem;
  color: var(--text-secondary);
}

.form-consent-row {
  margin-top: 0.25rem;
}

.form-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  padding: 0;
}

.contact-mail-cta {
  margin-top: 1.35rem;
  margin-bottom: 0.45rem;
}

.form-success {
  color: var(--success);
  font-weight: 700;
}

.form-error {
  color: var(--danger);
  font-weight: 700;
}

.store-band {
  width: var(--container);
  margin: 0 auto;
}

.store-band-surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-md);
}

.store-band-surface h2 {
  margin-bottom: 0.4rem;
}

.store-band-surface p {
  color: var(--text-secondary);
}

.store-band-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.store-badge {
  border-radius: 0.85rem;
  border: 1px solid rgba(119, 197, 237, 0.28);
  background: rgba(6, 28, 50, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.22rem 0.28rem;
  overflow: hidden;
}

.store-badge strong {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.store-badge-icon {
  width: 1.08rem;
  height: 1.08rem;
  display: inline-grid;
  place-items: center;
}

.store-badge-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentcolor;
}

.store-badge-sub {
  color: var(--text-muted);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-badge-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.store-badge-md {
  width: 198px;
  height: 64px;
}

.store-badge-lg {
  width: 222px;
  height: 72px;
}

.store-badge-apple .store-badge-image {
  transform: scale(1.16);
  transform-origin: center;
}

.store-badge-play .store-badge-image {
  transform: scale(1.04);
  transform-origin: center;
}

.phone-zoomable-image {
  cursor: zoom-in;
}

.phone-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 260;
  background: rgba(2, 13, 24, 0.86);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.phone-image-lightbox[hidden] {
  display: none;
}

.phone-image-lightbox-media {
  width: auto;
  max-width: min(92vw, 460px);
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  border-radius: 1.5rem;
  border: 1px solid rgba(136, 210, 247, 0.48);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.56);
}

.phone-image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 208, 244, 0.42);
  background: rgba(8, 34, 56, 0.84);
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(100, 176, 219, 0.28);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(120px, 1fr));
  gap: 1rem;
}

.footer-grid h3 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.35rem;
}

.footer-brand {
  margin-bottom: 0.6rem;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(97, 171, 213, 0.24);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-social {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-social a {
  font-size: 0.88rem;
  color: #c4efff;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  width: min(96vw, 460px);
  z-index: 90;
  border-radius: 999px;
  border: 1px solid rgba(100, 183, 226, 0.38);
  background: rgba(4, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.38rem 0.5rem 0.38rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  box-shadow: 0 14px 30px rgba(0, 8, 19, 0.5);
}

.mobile-cta p {
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .nav {
    position: absolute;
    inset: calc(100% + 0.45rem) 0 auto;
    z-index: 140;
    max-height: min(68vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    background: rgba(3, 20, 38, 0.96);
    border: 1px solid rgba(106, 183, 227, 0.3);
    border-radius: var(--radius-md);
    padding: 0.55rem;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.24rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .nav-link {
    display: block;
    border-radius: 0.8rem;
    padding: 0.55rem 0.72rem;
  }

  .nav-list li:first-child .nav-link,
  .nav-list li:last-child .nav-link {
    border-radius: 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: center;
  }
}

@media (max-width: 940px) {
  .header-download {
    display: none;
  }

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

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

  .store-band-surface {
    grid-template-columns: 1fr;
  }

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

  .carousel-wrapper {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }
  
  /* Responsive: constrain mockup sizes on narrower viewports */
  .screen-strip {
    grid-auto-columns: minmax(100px, 40vw);
  }

  .phone-frame {
    max-width: 180px;
  }

  .video-slot {
    min-height: 180px;
  }
}

@media (max-width: 720px) {
  :root {
    --space-2xl: 3.05rem;
  }

  main,
  .store-band,
  .site-footer {
    width: min(94vw, 100%);
  }

  .mobile-cta {
    width: min(96vw, 430px);
    border-radius: 1rem;
    padding-right: 0.38rem;
  }

  .mobile-cta p {
    font-size: 0.78rem;
  }

  .store-band-actions,
  .hero-actions {
    width: 100%;
  }

  .store-badge {
    min-width: 0;
    flex: 1 1 140px;
  }

  .contact-mail-cta {
    width: 100%;
    justify-content: center;
  }

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

  .site-header-shell .brand-logo {
    width: 4.2rem;
    height: 4.2rem;
  }

  .footer-brand .brand-logo {
    width: 4.2rem;
    height: 4.2rem;
  }

  .site-header-shell .brand-text {
    font-size: 1.14rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

  .visual-backdrop {
    display: none;
  }
}
