/* Karekod — kurumsal dark, matrix, neon #00d4ff */
:root {
  --bg-deep: #000814;
  --bg-mid: #001428;
  --surface: rgba(10, 28, 52, 0.45);
  --surface-strong: rgba(14, 36, 64, 0.62);
  --glass: rgba(12, 32, 58, 0.35);
  --glass-border: rgba(0, 212, 255, 0.22);
  --text: #e8f1ff;
  --text-muted: #94a8c4;
  --neon: #00d4ff;
  --neon-dim: rgba(0, 212, 255, 0.4);
  --neon-glow: 0 0 28px rgba(0, 212, 255, 0.22);
  --neon-glow-strong: 0 0 40px rgba(0, 212, 255, 0.35);
  --border: rgba(0, 212, 255, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 68px;
  --max: 1080px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --reveal-duration: 0.52s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neon);
  text-decoration: none;
}

a:hover {
  color: #9aebff;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Matrix */
.matrix-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#matrix-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.38;
}

.matrix-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 6, 18, 0.94) 0%, rgba(0, 14, 36, 0.52) 42%, rgba(0, 6, 22, 0.9) 100%),
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(0, 100, 180, 0.14), transparent 50%);
  pointer-events: none;
}

.page-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Glass surfaces */
.glass-card {
  background: linear-gradient(145deg, var(--glass) 0%, rgba(6, 20, 42, 0.5) 100%);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.glass-card:hover {
  border-color: rgba(0, 212, 255, 0.42);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 212, 255, 0.1),
    var(--neon-glow-strong);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .glass-card:hover {
    transform: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 6, 18, 0.72);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 4, 14, 0.88);
  border-bottom-color: rgba(0, 212, 255, 0.22);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  transition: filter 0.2s ease;
}

.brand:hover {
  color: var(--text);
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.35));
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px var(--border);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: var(--neon-glow);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--neon);
  border-radius: 1px;
}

.site-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.1rem;
}

.site-nav a {
  display: inline-block;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.8125rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-nav a:hover {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}

.site-nav a.is-active {
  color: var(--text);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(0, 212, 255, 0.25);
}

.site-nav a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.85;
}

.nav-cta.is-active::after {
  display: none;
}

.nav-cta.is-active {
  background: rgba(0, 212, 255, 0.16);
  border-color: rgba(0, 212, 255, 0.35);
  color: #d2f8ff !important;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon) !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--neon-glow);
}

.nav-cta:hover {
  background: rgba(0, 212, 255, 0.18);
  color: #c5f7ff !important;
  box-shadow: var(--neon-glow-strong);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 8vh, 4rem) 0 clamp(2.75rem, 9vh, 4.5rem);
  text-align: center;
  min-height: min(72vh, 780px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 72% 52% at 50% 0%, rgba(0, 212, 255, 0.07), transparent 58%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1rem, 3vw, 1.75rem);
}

.hero-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, rgba(0, 24, 48, 0.25) 0%, rgba(0, 8, 20, 0.08) 50%, rgba(0, 20, 44, 0.18) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.hero-frame-line {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(0, 212, 255, 0.45);
  border-style: solid;
  opacity: 0.9;
}

.hero-frame-line--tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.hero-frame-line--tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
  border-radius: 0 4px 0 0;
}

.hero-frame-line--bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 4px;
}

.hero-frame-line--br {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.hero-frame-tick {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(40%, 200px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.35), transparent);
}

.hero-frame-tick--top {
  top: 10px;
}

.hero-frame-tick--bottom {
  bottom: 10px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--neon);
  margin: 0 0 1.1rem;
}

.hero-title {
  margin: 0 auto 0.85rem;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-shadow: 0 0 48px rgba(0, 212, 255, 0.12);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-accent {
  width: min(200px, 40vw);
  height: 3px;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
  margin: 0 0 1.15rem;
  font-size: clamp(0.78rem, 1.6vw, 0.9rem);
  font-weight: 600;
  color: #a8e6ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  margin: 0 auto 1.65rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 36rem;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.85rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  border-radius: 12px;
  border: 1px solid transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
}

.btn-primary {
  color: #fff;
  background: linear-gradient(
    168deg,
    rgba(0, 240, 255, 0.38) 0%,
    rgba(0, 140, 220, 0.52) 38%,
    rgba(0, 70, 150, 0.68) 100%
  );
  border: 1px solid rgba(130, 235, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(0, 212, 255, 0.12),
    0 6px 22px rgba(0, 60, 130, 0.45),
    0 0 40px rgba(0, 212, 255, 0.22);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(
    168deg,
    rgba(0, 250, 255, 0.48) 0%,
    rgba(0, 155, 235, 0.58) 42%,
    rgba(0, 85, 170, 0.75) 100%
  );
  border-color: rgba(190, 248, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(0, 212, 255, 0.2),
    0 10px 32px rgba(0, 80, 160, 0.48),
    0 0 52px rgba(0, 212, 255, 0.3);
}

.btn-outline {
  color: #d8f6ff;
  background: linear-gradient(160deg, rgba(8, 28, 52, 0.75), rgba(4, 14, 32, 0.55));
  border: 1px solid rgba(0, 212, 255, 0.28);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 18px rgba(0, 0, 0, 0.28);
}

.btn-outline:hover {
  color: #fff;
  border-color: rgba(0, 212, 255, 0.48);
  background: linear-gradient(160deg, rgba(0, 40, 72, 0.82), rgba(0, 24, 48, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 212, 255, 0.1),
    0 0 36px rgba(0, 212, 255, 0.2);
}

.btn-ghost {
  color: #b4c5dc;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(148, 168, 196, 0.32);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(180, 200, 220, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 24px rgba(148, 180, 210, 0.12);
}

/* Sections */
.section {
  padding: 2.65rem 0;
  border-top: 1px solid rgba(0, 212, 255, 0.07);
}

.section-panel {
  background: linear-gradient(180deg, rgba(0, 28, 52, 0.22), transparent);
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.title-accent {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--neon);
  opacity: 0.9;
}

.section-intro {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 46ch;
  font-size: 0.95rem;
}

.section-title-centered {
  justify-content: center;
  text-align: center;
  width: 100%;
}

.section-corporate {
  background: linear-gradient(180deg, rgba(0, 16, 36, 0.35), rgba(0, 8, 22, 0.55));
  padding-bottom: 2.35rem;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
}

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.focus-card h3 {
  font-size: 1.02rem;
}

.card {
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* LeylekTag — ürün vitrini */
.section-leylektag {
  position: relative;
}

.section-leylektag .section-intro strong {
  color: #b8ecff;
  font-weight: 600;
}

.lt-showcase {
  position: relative;
  max-width: 62rem;
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(150deg, rgba(10, 34, 62, 0.55) 0%, rgba(4, 14, 32, 0.72) 55%, rgba(6, 22, 48, 0.5) 100%);
  box-shadow:
    0 10px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.lt-showcase.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.32);
  box-shadow:
    0 14px 52px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 212, 255, 0.08),
    0 0 56px rgba(0, 212, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .lt-showcase.glass-card:hover {
    transform: none;
  }
}

.lt-showcase-spotlight {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(0, 212, 255, 0.1), transparent 70%);
  pointer-events: none;
  opacity: 0.85;
}

.lt-showcase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem 2rem;
  padding: clamp(1.45rem, 3.5vw, 2rem) clamp(1.35rem, 3vw, 2.15rem);
  align-items: start;
}

@media (min-width: 720px) {
  .lt-showcase-inner {
    grid-template-columns: minmax(0, 13.5rem) minmax(0, 1fr);
    gap: 1.65rem 2.25rem;
    padding: clamp(1.6rem, 3vw, 2.15rem) clamp(1.5rem, 3vw, 2.25rem);
  }
}

.lt-visual-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .lt-visual-stack {
    align-items: stretch;
  }
}

.lt-showcase-visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 720px) {
  .lt-showcase-visual {
    justify-content: flex-start;
    padding-top: 0.15rem;
  }
}

.lt-preview-block {
  width: 100%;
  max-width: 11.5rem;
  margin-inline: auto;
}

.lt-preview-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 0.88;
  text-align: center;
}

@media (min-width: 720px) {
  .lt-preview-label {
    text-align: left;
  }
}

.lt-phone-mockup {
  display: flex;
  justify-content: center;
}

.lt-phone-frame {
  position: relative;
  width: 100%;
  max-width: 10.5rem;
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, rgba(30, 50, 78, 0.9), rgba(8, 16, 32, 0.95));
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lt-phone-notch {
  height: 5px;
  width: 36%;
  margin: 0.15rem auto 0.35rem;
  border-radius: 0 0 6px 6px;
  background: rgba(0, 0, 0, 0.45);
}

.lt-phone-screen {
  position: relative;
  aspect-ratio: 10 / 19.5;
  border-radius: 0.85rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 24, 48, 0.95), rgba(0, 8, 20, 0.98));
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.lt-preview-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.lt-phone-screen.is-missing .lt-preview-placeholder {
  display: flex;
}

.lt-preview-ph-line {
  display: block;
  width: 72%;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 212, 255, 0.12);
}

.lt-preview-ph-line--short {
  width: 48%;
}

.lt-preview-ph-cap {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 212, 255, 0.45);
  margin-top: 0.35rem;
}

.lt-preview-ph-hint {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-muted);
  opacity: 0.65;
  word-break: break-all;
  line-height: 1.35;
}

.lt-preview-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  background: #000;
}

.lt-preview-video::-webkit-media-controls {
  display: none !important;
}

.lt-preview-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.lt-phone-screen.is-missing .lt-preview-video {
  display: none !important;
}

.lt-logo-frame {
  width: min(9.5rem, 44vw);
  aspect-ratio: 1;
  max-height: 9.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: rgba(0, 10, 26, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(0, 212, 255, 0.06);
}

.lt-logo-img {
  width: 100%;
  height: 100%;
  max-width: 7.5rem;
  max-height: 7.5rem;
  object-fit: contain;
}

.lt-showcase-body {
  min-width: 0;
}

.lt-showcase-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.65rem;
}

.lt-showcase-head-text {
  min-width: 0;
}

.lt-showcase-title {
  margin: 0 0 0.2rem;
  font-size: clamp(1.4rem, 3vw, 1.68rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lt-showcase-tagline {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.82);
}

.lt-showcase-desc {
  margin: 0 0 1.05rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.74;
  max-width: 42rem;
}

.lt-mini-chips {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.lt-mini-chips li {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #b0dff2;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  background: rgba(0, 212, 255, 0.06);
  line-height: 1.25;
}

.lt-feature-grid {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .lt-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lt-feature-grid li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  min-height: 2.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 212, 255, 0.13);
  background: rgba(0, 16, 36, 0.42);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c8eef8;
}

.lt-feat-icon {
  flex-shrink: 0;
  display: flex;
  color: var(--neon);
  opacity: 0.88;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.2));
}

.lt-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.1rem 0.65rem 0.85rem;
  min-height: 3.35rem;
  min-width: min(100%, 15.5rem);
  flex: 1 1 14rem;
  border-radius: 10px;
  border: 1px solid rgba(120, 170, 200, 0.22);
  background: linear-gradient(175deg, rgba(14, 32, 56, 0.92) 0%, rgba(6, 14, 30, 0.94) 100%);
  color: var(--text);
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 4px 18px rgba(0, 0, 0, 0.28);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.store-badge:not(.store-badge--soon):hover {
  border-color: rgba(0, 212, 255, 0.38);
  background: linear-gradient(175deg, rgba(18, 42, 72, 0.95) 0%, rgba(8, 22, 44, 0.96) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 6px 24px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(0, 212, 255, 0.1);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .store-badge:not(.store-badge--soon):hover {
    transform: none;
  }
}

.store-badge-glyph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.12);
}

.store-badge-icon {
  display: block;
  opacity: 0.92;
}

.store-badge-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
  line-height: 1.2;
  min-width: 0;
}

.store-badge-brand {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 230, 248, 0.75);
}

.store-badge-action {
  font-size: 0.875rem;
  font-weight: 600;
  color: #eef6fc;
  letter-spacing: -0.01em;
}

.store-badge:not(.store-badge--soon):hover .store-badge-action {
  color: #fff;
}

.store-badge-soon {
  display: none;
  margin-left: auto;
  padding: 0.2rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200, 210, 220, 0.75);
  border: 1px solid rgba(148, 168, 188, 0.35);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
}

.store-badge--soon {
  cursor: default;
  opacity: 0.88;
  border-color: rgba(100, 120, 140, 0.28);
  background: linear-gradient(175deg, rgba(12, 24, 42, 0.85) 0%, rgba(6, 12, 24, 0.9) 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.store-badge--soon .store-badge-action {
  color: rgba(180, 200, 218, 0.55);
}

.store-badge--soon .store-badge-brand {
  color: rgba(160, 190, 210, 0.5);
}

.store-badge--soon .store-badge-glyph {
  opacity: 0.65;
}

.store-badge--soon .store-badge-soon {
  display: inline-flex;
  align-items: center;
}

.play-store .store-badge-glyph {
  padding-left: 1px;
}

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  white-space: nowrap;
  align-self: center;
}

.badge-active {
  color: #8ef5d8;
  border-color: rgba(100, 230, 200, 0.4);
  background: rgba(0, 180, 140, 0.12);
  box-shadow: 0 0 16px rgba(0, 200, 160, 0.12);
}

.badge-dev {
  color: #ffd89a;
  border-color: rgba(255, 200, 120, 0.4);
  background: rgba(255, 160, 60, 0.1);
  box-shadow: 0 0 14px rgba(255, 180, 80, 0.1);
}

.badge-plan {
  color: #b8c8ff;
  border-color: rgba(140, 170, 255, 0.4);
  background: rgba(80, 120, 255, 0.1);
}

/* Vision / HUD */
.vision-section {
  position: relative;
}

.vision-heading {
  margin-bottom: 0.5rem;
}

.vision-hint {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 auto 1rem;
  max-width: 36rem;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .vision-hint {
    display: none;
  }
}

.vision-hud-shell {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.vision-hud-shell:hover,
.vision-hud-shell:focus-visible {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.12),
    0 12px 48px rgba(0, 0, 0, 0.38),
    0 0 60px rgba(0, 212, 255, 0.14);
}

.vision-hud-shell:focus-visible {
  box-shadow:
    0 0 0 2px rgba(0, 212, 255, 0.5),
    0 12px 48px rgba(0, 0, 0, 0.38);
}

.vision-hud-shell.is-audio-on {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.2),
    0 0 72px rgba(0, 212, 255, 0.2);
}

.vision-hud-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  transition: opacity 0.4s ease;
}

.vision-hud-shell:hover .vision-hud-backdrop,
.vision-hud-shell:focus-visible .vision-hud-backdrop,
.vision-hud-shell.is-audio-on .vision-hud-backdrop {
  opacity: 0.48;
}

.vision-hud-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.vision-hud-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, transparent 30%, rgba(0, 4, 14, 0.75) 100%);
}

.vision-hud-scan {
  position: absolute;
  inset: -50% 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 212, 255, 0.04) 48%,
    rgba(0, 212, 255, 0.09) 50%,
    rgba(0, 212, 255, 0.04) 52%,
    transparent 100%
  );
  animation: hud-scan 7s linear infinite;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .vision-hud-scan {
    animation: none;
    opacity: 0.15;
    top: 40%;
    bottom: 40%;
  }
}

@keyframes hud-scan {
  0% {
    transform: translateY(-40%);
  }
  100% {
    transform: translateY(40%);
  }
}

.vision-hud-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  cursor: default;
}

.vision-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

.panel {
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
}

.vision-panel {
  position: relative;
  cursor: text;
  user-select: text;
}

.vision-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.25);
}

.vision-hud-shell:hover .vision-panel::before,
.vision-hud-shell:focus-visible .vision-panel::before {
  opacity: 1;
}

.panel.vision-panel-prose p {
  font-size: 0.875rem;
  line-height: 1.72;
}

.panel-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: -0.02em;
}

.panel p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Neden */
.reason-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 560px) {
  .reason-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .reason-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-item {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.35rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.reason-item::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon);
}

/* Tech chips */
.tech-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tech-chips li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 18, 40, 0.55);
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.tech-chips li:hover {
  border-color: rgba(0, 212, 255, 0.5);
  color: var(--neon);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: var(--neon-glow);
}

/* Contact */
.section-contact {
  padding-bottom: 2.35rem;
}

.contact-block-wide {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.35rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius) + 2px);
  text-align: left;
}

.contact-block-premium {
  border: 1px solid rgba(0, 212, 255, 0.24);
  background: linear-gradient(155deg, rgba(10, 32, 58, 0.55) 0%, rgba(6, 18, 40, 0.42) 100%);
  box-shadow:
    0 10px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-block-premium:hover {
  border-color: rgba(0, 212, 255, 0.32);
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.36),
    0 0 48px rgba(0, 212, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-block-premium.glass-card:hover {
  transform: none;
}

.contact-title {
  margin-bottom: 0.35rem;
}

.contact-intro {
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.contact-layout {
  display: grid;
  gap: 1.75rem 2.5rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-subhead {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon);
  opacity: 0.95;
}

.contact-address {
  margin: 0;
  font-style: normal;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-address-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-address-line {
  display: block;
  line-height: 1.55;
}

.contact-dl {
  margin: 0;
}

.contact-dl-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  font-size: 0.95rem;
}

.contact-dl-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-dl-row:first-of-type {
  padding-top: 0;
}

.contact-dl dt {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.contact-dl dd {
  margin: 0;
  color: var(--text-muted);
}

.contact-dl a {
  color: var(--neon);
  font-weight: 600;
}

.contact-dl a:hover {
  text-shadow: 0 0 14px rgba(0, 212, 255, 0.4);
}

/* Kurumsal bilgiler */
.corporate-grid-premium {
  gap: 0.65rem;
}

.corporate-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .corporate-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .corporate-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.corporate-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-sm);
  min-height: 5.1rem;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: linear-gradient(160deg, rgba(8, 26, 50, 0.5), rgba(4, 16, 36, 0.38));
}

.corporate-grid-premium .corporate-card:hover {
  border-color: rgba(0, 212, 255, 0.32);
}

.corp-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}

.corp-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  word-break: break-word;
}

.corp-mono {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

a.corp-link.corp-value {
  color: var(--neon);
  font-weight: 600;
}

a.corp-link:hover {
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 212, 255, 0.22);
  background: linear-gradient(180deg, rgba(0, 4, 14, 0.98), #00040c);
  padding: 2.25rem 0 2.5rem;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.footer-inner {
  text-align: center;
}

.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-tags {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.92;
  letter-spacing: 0.08em;
}

.footer-contact {
  margin: 1.15rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--neon);
  font-weight: 500;
}

.footer-contact a:hover {
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.footer-dot {
  opacity: 0.45;
  user-select: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.15rem;
  margin: 0.85rem 0 0;
  padding: 0;
}

.footer-legal a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.footer-legal a:not(:last-child)::after {
  content: "|";
  margin-left: 1rem;
  padding-left: 1rem;
  color: rgba(148, 163, 184, 0.35);
  font-weight: 400;
  pointer-events: none;
}

.footer-legal a:hover {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.25);
}

/* Yasal sayfalar */
.page-legal .page-wrap {
  padding-bottom: 2rem;
}

.page-legal .legal-main {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.legal-doc {
  max-width: 44rem;
  margin-inline: auto;
}

.legal-doc h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow:
    0 0 20px rgba(0, 212, 255, 0.35),
    0 0 40px rgba(0, 212, 255, 0.12);
}

.legal-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-family: var(--font-mono);
}

.legal-company-card {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-company-card strong {
  color: var(--text);
  font-weight: 600;
}

.legal-company-card a {
  color: var(--neon);
}

.legal-company-card a:hover {
  color: #b8f6ff;
}

.legal-company-card p {
  margin: 0 0 0.45rem;
}

.legal-company-card p:last-child {
  margin-bottom: 0;
}

.legal-panel {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.16);
  background: rgba(8, 22, 44, 0.45);
  backdrop-filter: blur(12px);
}

.legal-panel h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.3);
  letter-spacing: -0.01em;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel h3 {
  margin: 1.15rem 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(184, 246, 255, 0.95);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

.legal-panel p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.72;
}

.legal-panel ul,
.legal-panel ol {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.72;
}

.legal-panel li {
  margin-bottom: 0.35rem;
}

.legal-panel li:last-child {
  margin-bottom: 0;
}

.legal-panel a {
  color: var(--neon);
}

.legal-panel a:hover {
  color: #b8f6ff;
}

.legal-panel p:last-child {
  margin-bottom: 0;
}

.legal-panel > :last-child {
  margin-bottom: 0;
}

.legal-footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-footer-note a {
  color: var(--neon);
}

.legal-footer-note a:hover {
  color: #b8f6ff;
}

.page-legal .site-footer {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .legal-doc h1,
  .legal-panel h2,
  .legal-panel h3 {
    text-shadow: none;
  }
}

/* Çerez onay banner */
.cookie-consent {
  position: fixed;
  z-index: 200;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: 1rem;
  left: auto;
  width: min(100%, 420px);
  max-width: calc(100vw - 2rem);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
  pointer-events: none;
}

.cookie-consent.cookie-consent--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent.cookie-consent--hide {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.cookie-consent__inner {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(6, 18, 38, 0.82);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 212, 255, 0.06) inset,
    var(--neon-glow);
  border-radius: var(--radius);
  pointer-events: auto;
}

.cookie-consent__inner.glass-card:hover {
  transform: none;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.6rem;
  margin-top: 0.7rem;
}

.cookie-consent__btn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.cookie-consent__btn--primary {
  color: #001018;
  background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.25);
}

.cookie-consent__btn--primary:hover {
  color: #001018;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.38);
}

.cookie-consent__btn--ghost {
  color: var(--text);
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.28);
}

.cookie-consent__btn--ghost:hover {
  background: rgba(0, 212, 255, 0.14);
  border-color: rgba(0, 212, 255, 0.4);
}

.cookie-consent__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  white-space: nowrap;
}

.cookie-consent__link:hover {
  color: #b8f6ff;
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

@media (max-width: 640px) {
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
  }

  .cookie-consent__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__btn {
    width: 100%;
    text-align: center;
  }

  .cookie-consent__link {
    text-align: center;
    white-space: normal;
    padding: 0.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: none;
  }
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(0, 8, 22, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
    max-height: min(calc(100vh - var(--header-h) - 12px), 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav .nav-list li {
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  }

  .site-nav .nav-list li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }

  .site-nav a {
    display: block;
    padding: 0.8rem 0;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
