:root {
  color-scheme: dark;
  --bg: #07080c;
  --ink: #f7f8fb;
  --soft: #d8deea;
  --muted: #98a2b3;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .22);
  --panel: rgba(14, 17, 25, .74);
  --panel-strong: rgba(18, 22, 32, .94);
  --gold: #f8b94a;
  --amber: #f59e0b;
  --cyan: #32d5ff;
  --green: #32e58f;
  --rose: #ff6fae;
  --violet: #9d7cff;
  --shadow: 0 34px 110px rgba(0, 0, 0, .48);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 14%, rgba(248, 185, 74, .18), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(50, 213, 255, .13), transparent 32%),
    radial-gradient(circle at 50% 92%, rgba(157, 124, 255, .13), transparent 36%),
    linear-gradient(180deg, rgba(7, 8, 12, .2), #07080c 82%);
}

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

#heroCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: #07080c;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 74px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 8, 12, .76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(248, 185, 74, .22));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta,
.button {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}

.nav-cta,
.button.ghost {
  background: rgba(255, 255, 255, .055);
}

.button.primary {
  color: #090a0e;
  border-color: rgba(248, 185, 74, .7);
  background: linear-gradient(135deg, #ffe08a, #f8b94a 38%, #32d5ff 105%);
  box-shadow: 0 18px 52px rgba(248, 185, 74, .26);
}

.hero {
  width: min(1220px, calc(100% - 36px));
  min-height: 82vh;
  margin: 0 auto;
  padding: 118px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  position: relative;
}

.hero-copy { min-width: 0; }

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd67b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: .94;
  font-weight: 950;
  max-width: 920px;
}

.page-hero h1 {
  font-size: clamp(46px, 6vw, 86px);
}

.hero-lead {
  max-width: 700px;
  color: var(--soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
  margin-bottom: 30px;
}

.agency-hero::before {
  content: "";
  position: absolute;
  inset: 84px 0 0 28%;
  z-index: 0;
  background:
    radial-gradient(circle at 55% 35%, rgba(248, 185, 74, .14), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(50, 213, 255, .12), transparent 30%),
    linear-gradient(90deg, rgba(7, 8, 12, .3), rgba(7, 8, 12, .12) 46%, rgba(7, 8, 12, .38));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  opacity: .7;
  box-shadow: var(--shadow);
}

.agency-hero .hero-copy,
.agency-hero .command-panel {
  position: relative;
  z-index: 1;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
}

.hero-thumbs figure {
  margin: 0;
  height: 94px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .32);
}

.hero-thumbs img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: .9;
  transition: transform .6s ease;
}

.hero-thumbs figure:hover img {
  transform: scale(1.07);
}

.hero-thumbs figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  padding: 8px 9px;
  background: rgba(7, 8, 12, .58);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.command-panel,
.premium-card,
.trust-strip article,
.product-band,
.route-card,
.game-detail-card,
.tech-panel,
.cta-section,
.device-preview,
.program-card,
.module-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.command-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  min-height: 430px;
}

.visual-panel.command-panel {
  height: 400px;
  min-height: 0;
}

.panel-orbit {
  position: absolute;
  inset: -18%;
  background:
    conic-gradient(from 0deg, transparent, rgba(50, 213, 255, .16), transparent, rgba(248, 185, 74, .14), transparent);
  animation: orbit 9s linear infinite;
  opacity: .75;
}

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

.command-top,
.agency-metrics,
.live-stack {
  position: relative;
}

.command-top {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.command-top img { width: 44px; height: 44px; }
.command-top b, .command-top span { display: block; }
.command-top span { color: var(--muted); font-size: 12px; margin-top: 3px; }
.command-top em {
  font-style: normal;
  color: #08100c;
  background: var(--green);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
}

.agency-metrics {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.agency-metrics article,
.live-stack div {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(7, 8, 12, .62);
  padding: 16px;
}

.agency-metrics small {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.agency-metrics strong {
  display: block;
  margin: 10px 0 5px;
  font-size: 26px;
}

.agency-metrics span,
.live-stack small {
  color: var(--muted);
}

.live-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.live-stack div {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 8px 12px;
  align-items: center;
}

.live-stack span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(248, 185, 74, .65);
}

.live-stack b { font-size: 17px; }
.live-stack small { grid-column: 2; }

.section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 66px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 12px;
}

.trust-strip article {
  padding: 20px;
  min-height: 130px;
}

.trust-strip b,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.visual-story {
  display: grid;
  gap: 16px;
  padding-top: 34px;
}

.visual-story.compact {
  padding-top: 22px;
}

.visual-row {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(14px, 2vw, 20px);
}

.visual-row.is-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.visual-frame {
  min-height: 0;
  height: clamp(150px, 15vw, 190px);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .045);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-copy {
  min-width: 0;
  padding: clamp(4px, 1.3vw, 14px);
}

.visual-copy h2 {
  font-size: clamp(25px, 3.1vw, 42px);
  line-height: 1.04;
  margin-bottom: 16px;
}

.visual-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.mini-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .055);
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.split-feature {
  display: grid;
  grid-template-columns: .76fr 1fr;
  gap: 36px;
  align-items: start;
}

.section-kicker h2,
.product-band h2,
.cta-section h2,
.page-hero h1,
.section-head h2 {
  font-size: clamp(36px, 5vw, 74px);
  line-height: .95;
  margin-bottom: 18px;
}

.section-kicker p,
.product-band p,
.cta-section p,
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.premium-card {
  padding: 24px;
  min-height: 250px;
}

.premium-card.tall {
  grid-row: span 2;
}

.premium-card small,
.route-card span,
.game-detail-card small,
.program-card small,
.module-card small {
  color: #ffd67b;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-card h3,
.route-card h3,
.game-detail-card h3,
.program-card h3,
.module-card h3 {
  font-size: 26px;
  margin: 18px 0 12px;
}

.premium-card p,
.route-card p,
.game-detail-card p,
.program-card p,
.module-card p {
  color: var(--muted);
  line-height: 1.58;
}

.product-band {
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: .92fr 1fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}

.device-preview {
  min-height: 300px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(50, 213, 255, .12), rgba(248, 185, 74, .07)),
    rgba(9, 11, 16, .82);
}

.device-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
}

.device-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.device-bar span:nth-child(2) { background: var(--cyan); }
.device-bar span:nth-child(3) { background: var(--green); }
.device-bar b { margin-left: auto; color: var(--soft); }

.device-layout {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  margin-top: 18px;
}

.sidebar-lines,
.screen-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 12, .54);
  padding: 14px;
}

.sidebar-lines {
  display: grid;
  gap: 12px;
}

.sidebar-lines i,
.screen-grid i {
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, .09);
}

.sidebar-lines i { height: 28px; }

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.screen-grid i { min-height: 86px; }
.screen-grid i:nth-child(1) { background: linear-gradient(135deg, rgba(248, 185, 74, .35), rgba(255, 255, 255, .06)); }
.screen-grid i:nth-child(2) { background: linear-gradient(135deg, rgba(50, 213, 255, .32), rgba(255, 255, 255, .06)); }
.screen-grid i:nth-child(3) { background: linear-gradient(135deg, rgba(50, 229, 143, .3), rgba(255, 255, 255, .06)); }

.route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-card {
  min-height: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

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

.route-card.console::before {
  background:
    linear-gradient(180deg, transparent, rgba(7, 8, 12, .92)),
    radial-gradient(circle at 50% 20%, rgba(157, 124, 255, .26), transparent 42%);
}

.route-card.studio::before {
  background:
    linear-gradient(180deg, transparent, rgba(7, 8, 12, .92)),
    radial-gradient(circle at 50% 20%, rgba(50, 213, 255, .25), transparent 42%);
}

.route-card > * {
  position: relative;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 58px);
  margin-bottom: 42px;
}

.site-footer {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.footer-brand { color: var(--ink); }

.page-hero {
  min-height: 52vh;
  padding-bottom: 22px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.game-showcase,
.program-showcase,
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(13, 17, 25, .96), rgba(20, 23, 31, .9)),
    radial-gradient(circle at 18% 18%, rgba(50, 229, 143, .14), transparent 34%);
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 211, 111, .12), transparent 42%, rgba(50, 213, 255, .1));
  opacity: .75;
  pointer-events: none;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  border: 1px solid rgba(255, 211, 111, .34);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(255, 211, 111, .08);
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.commands-hero {
  min-height: 58vh;
}

.command-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: 760px;
  margin-top: 28px;
}

.command-search-bar input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: rgba(7, 9, 14, .82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  font: inherit;
}

.command-search-bar input:focus {
  border-color: rgba(50, 213, 255, .55);
  box-shadow: 0 0 0 4px rgba(50, 213, 255, .08);
}

.command-search-bar span {
  min-width: 108px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 211, 111, .24);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(255, 211, 111, .08);
  font-weight: 900;
}

.command-chips {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.command-chips a {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(13, 17, 25, .84);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.command-chips a:hover {
  transform: translateY(-2px);
  border-color: rgba(50, 213, 255, .45);
  background: rgba(18, 24, 35, .92);
}

.command-chips span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.command-chips b {
  color: var(--gold);
  font-size: 24px;
}

.command-section {
  padding: 34px 0;
}

.command-section[hidden] {
  display: none;
}

.command-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto 16px;
  padding: 0 28px;
}

.command-section-head > div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(13, 17, 25, .94), rgba(16, 20, 30, .82));
}

.command-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 52px);
}

.command-section-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.command-section-head img {
  width: 100%;
  min-height: 170px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
}

.command-table-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  overflow-x: auto;
}

.command-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.command-table th {
  padding: 0 16px 8px;
  color: var(--muted);
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.command-table td {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(8, 11, 17, .78);
  color: rgba(244, 247, 251, .9);
  line-height: 1.55;
}

.command-table td:first-child {
  width: 38%;
  border-left: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px 0 0 12px;
}

.command-table td:last-child {
  border-right: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0 12px 12px 0;
}

.command-table code {
  display: inline-block;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(50, 213, 255, .18);
  border-radius: 9px;
  color: #9ee8ff;
  background: rgba(50, 213, 255, .07);
  white-space: normal;
  overflow-wrap: anywhere;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.game-detail-card,
.program-card,
.module-card {
  min-height: 360px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.game-detail-card::before,
.program-card::before,
.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .7;
  background: radial-gradient(circle at 70% 18%, rgba(248, 185, 74, .2), transparent 42%);
}

.game-detail-card.rdr::before { background: radial-gradient(circle at 70% 18%, rgba(255, 111, 174, .2), transparent 42%); }
.game-detail-card.gta::before { background: radial-gradient(circle at 70% 18%, rgba(50, 229, 143, .2), transparent 42%); }
.game-detail-card.widgets::before { background: radial-gradient(circle at 70% 18%, rgba(50, 213, 255, .2), transparent 42%); }

.game-detail-card > *,
.program-card > *,
.module-card > * {
  position: relative;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.game-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--soft);
  background: rgba(255, 255, 255, .05);
  font-size: 12px;
  font-weight: 800;
}

.tech-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.tech-panel div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, .035);
}

.tech-panel b,
.tech-panel span {
  display: block;
}

.tech-panel span {
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.visual-panel {
  padding: 0;
}

.panel-image,
.device-image,
.route-card img,
.game-detail-card img,
.module-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-image {
  inset: 0;
  opacity: .9;
  transform: scale(1.02);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, .9), rgba(7, 8, 12, .22) 46%, rgba(7, 8, 12, .74)),
    linear-gradient(180deg, rgba(7, 8, 12, .14), rgba(7, 8, 12, .92));
}

.floating,
.visual-panel .command-top,
.visual-panel .agency-metrics,
.visual-panel .live-stack {
  position: relative;
  z-index: 2;
}

.visual-panel .command-top {
  margin: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(7, 8, 12, .64);
  backdrop-filter: blur(16px);
}

.visual-panel .agency-metrics,
.visual-panel .live-stack {
  margin-left: 18px;
  margin-right: 18px;
}

.visual-panel .agency-metrics article,
.visual-panel .live-stack div {
  background: rgba(7, 8, 12, .38);
  backdrop-filter: blur(14px);
}

.visual-panel .agency-metrics {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.visual-panel .agency-metrics article {
  padding: 10px 12px;
}

.visual-panel .agency-metrics strong {
  margin: 6px 0 3px;
  font-size: 18px;
}

.visual-panel .agency-metrics span {
  font-size: 12px;
}

.visual-panel .live-stack {
  display: none;
}

.device-preview {
  position: relative;
  overflow: hidden;
}

.device-image {
  inset: 0;
  opacity: .62;
}

.device-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 12, .22), rgba(7, 8, 12, .9));
}

.device-bar,
.device-layout {
  position: relative;
  z-index: 2;
}

.route-card img {
  position: static;
  width: 100%;
  height: 112px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  margin-bottom: 18px;
  opacity: .95;
  transform: none;
  transition: transform .45s ease, opacity .45s ease;
}

.route-card:hover img {
  transform: translateY(-2px);
  opacity: 1;
}

.route-card > * {
  z-index: 2;
}

.game-detail-card,
.module-card {
  min-height: auto;
  padding-top: 18px;
}

.game-detail-card img,
.module-card img {
  position: static;
  display: block;
  width: 100%;
  height: 102px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  margin-bottom: 18px;
  opacity: .95;
}

.game-detail-card[href] {
  color: inherit;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.game-detail-card[href]:hover {
  transform: translateY(-2px);
  border-color: rgba(50, 213, 255, .38);
  background: rgba(18, 23, 34, .9);
}

.detail-hero {
  grid-template-columns: minmax(0, .95fr) minmax(300px, 470px);
}

.detail-hero .command-panel {
  display: block;
}

.detail-hero-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 17, 25, .74);
  box-shadow: var(--shadow);
}

.detail-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 12, .04), rgba(7, 8, 12, .52));
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 18px;
  align-items: stretch;
}

.detail-split article,
.detail-points div,
.detail-command-band,
.detail-format-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 17, 25, .74);
  box-shadow: var(--shadow);
}

.detail-split article {
  padding: clamp(24px, 4vw, 46px);
}

.detail-split h2,
.detail-command-band h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: .96;
  margin-bottom: 18px;
}

.detail-split p:not(.eyebrow),
.detail-points span {
  color: var(--muted);
  line-height: 1.7;
}

.detail-points {
  display: grid;
  gap: 14px;
}

.detail-points div {
  padding: 24px;
}

.detail-points b,
.detail-points span {
  display: block;
}

.detail-points b {
  margin-bottom: 10px;
  font-size: 20px;
}

.detail-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-format-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-format-grid article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  overflow: hidden;
}

.detail-format-grid img {
  width: 190px;
  height: 124px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.detail-format-grid small {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.detail-format-grid h3 {
  margin: 6px 0 8px;
  font-size: 25px;
}

.detail-format-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.detail-command-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 5vw, 50px);
  margin-bottom: 42px;
}

.scenario-samples {
  display: grid;
  gap: 12px;
}

.scenario-samples article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(7, 10, 16, .72);
}

.scenario-samples article::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
}

.scenario-samples small,
.scenario-samples b,
.scenario-samples span {
  position: relative;
  display: block;
}

.scenario-samples small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.scenario-samples b {
  margin: 7px 0 6px;
  font-size: 19px;
}

.scenario-samples span {
  color: var(--muted);
  line-height: 1.55;
}

.game-detail-card::after,
.module-card::after {
  display: none;
}

.game-detail-card > *,
.module-card > * {
  z-index: 2;
}

@media (max-width: 1020px) {
  .site-nav { display: none; }
  .hero,
  .detail-hero,
  .detail-split,
  .detail-command-band,
  .split-feature,
  .product-band,
  .cta-section,
  .visual-row,
  .visual-row.is-reverse {
    grid-template-columns: 1fr;
  }
  .trust-strip,
  .route-cards,
  .game-showcase,
  .program-showcase,
  .module-grid,
  .feature-grid,
  .command-chips,
  .tech-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .command-section-head {
    grid-template-columns: 1fr;
  }
  .detail-hero-media {
    min-height: 320px;
  }
  .detail-format-grid,
  .detail-format-grid.two {
    grid-template-columns: 1fr;
  }
  .command-section-head img {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
  }
  .brand span {
    font-size: 15px;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 104px;
    grid-template-columns: 1fr;
  }
  h1,
  .page-hero h1 {
    font-size: 44px;
    line-height: .96;
  }
  .hero-lead {
    font-size: 17px;
  }
  .command-panel {
    min-height: 360px;
  }
  .visual-panel.command-panel {
    height: 320px;
  }
  .trust-strip,
  .hero-thumbs,
  .premium-grid,
  .route-cards,
  .game-showcase,
  .program-showcase,
  .module-grid,
  .feature-grid,
  .command-chips,
  .tech-panel {
    grid-template-columns: 1fr;
  }
  .command-search-bar {
    grid-template-columns: 1fr;
  }
  .command-search-bar span {
    justify-content: flex-start;
    padding: 0 16px;
  }
  .command-section-head,
  .command-table-wrap {
    padding: 0 18px;
  }
  .command-table th:nth-child(2),
  .command-table td:nth-child(2) {
    min-width: 260px;
  }
  .visual-frame {
    height: 150px;
  }
  .premium-card.tall {
    grid-row: auto;
  }
  .device-layout {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Detail pages final overrides */
.detail-hero {
  grid-template-columns: minmax(0, .95fr) minmax(300px, 470px);
}

.detail-hero-media {
  display: block;
}

@media (max-width: 1020px) {
  .detail-hero {
    grid-template-columns: 1fr;
  }
}

/* Compact content layout */
.hero {
  min-height: auto;
  grid-template-columns: 1fr;
  padding-bottom: 34px;
}

.hero .command-panel {
  display: none;
}

.hero-copy {
  max-width: 860px;
}

.visual-story {
  gap: 14px;
}

.visual-row,
.visual-row.is-reverse {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 16px;
  align-items: center;
}

.visual-row.is-reverse .visual-frame {
  order: -1;
}

.visual-frame {
  width: 180px;
  height: 112px;
  aspect-ratio: auto;
}

.visual-copy {
  padding: 0;
}

.visual-copy h2 {
  max-width: 780px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
  margin-bottom: 10px;
}

.visual-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
}

.mini-list {
  margin-top: 14px;
}

.route-cards,
.game-showcase,
.module-grid {
  grid-template-columns: 1fr;
}

.route-card,
.game-detail-card,
.module-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: auto;
  padding: 16px;
}

.route-card img,
.game-detail-card img,
.module-card img {
  grid-row: 1 / span 5;
  width: 150px;
  height: 94px;
  margin: 0;
  border-radius: var(--radius);
}

.route-card > div,
.game-detail-card small,
.game-detail-card h3,
.game-detail-card p,
.game-detail-card .game-tags,
.module-card small,
.module-card h3,
.module-card p {
  grid-column: 2;
}

.route-card h3,
.game-detail-card h3,
.module-card h3 {
  font-size: 22px;
  margin: 4px 0 7px;
}

.route-card p,
.game-detail-card p,
.module-card p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 15px;
}

.game-tags {
  margin-top: 12px;
}

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

.device-preview {
  display: none;
}

@media (max-width: 680px) {
  .visual-row,
  .visual-row.is-reverse,
  .detail-format-grid article,
  .route-card,
  .game-detail-card,
  .module-card {
    grid-template-columns: 1fr;
  }

  .visual-frame,
  .detail-format-grid img,
  .route-card img,
  .game-detail-card img,
  .module-card img {
    width: 100%;
    height: 150px;
    grid-row: auto;
  }

  .route-card > div,
  .game-detail-card small,
  .game-detail-card h3,
  .game-detail-card p,
  .game-detail-card .game-tags,
  .module-card small,
  .module-card h3,
  .module-card p {
    grid-column: auto;
  }
}

/* ============================================================
   PREMIUM KATMAN — 2026-07-10
   Animasyon, parlama, tilt, mobil menü, scroll fx.
   Mevcut sistemin üzerine cascade ile eklenir.
   ============================================================ */

::selection {
  background: rgba(248, 185, 74, .32);
  color: #fff;
}

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #07080c; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(248, 185, 74, .5), rgba(50, 213, 255, .4));
  border-radius: 999px;
  border: 3px solid #07080c;
}

:focus-visible {
  outline: 2px solid rgba(50, 213, 255, .75);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Header ---------- */
.site-header {
  transition: height .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 11, .9);
  border-bottom-color: rgba(248, 185, 74, .16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .5);
}

.brand-logo {
  transition: transform .5s cubic-bezier(.2, .9, .3, 1.4), filter .5s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-8deg) scale(1.08);
  filter: drop-shadow(0 14px 34px rgba(248, 185, 74, .45));
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: right .3s cubic-bezier(.6, 0, .2, 1);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

/* ---------- Scroll progress + back to top ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(248, 185, 74, .5);
  pointer-events: none;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(10, 12, 18, .82);
  backdrop-filter: blur(14px);
  color: var(--gold);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: rgba(248, 185, 74, .55);
  box-shadow: 0 14px 40px rgba(248, 185, 74, .22);
  transform: translateY(-3px);
}

/* ---------- Butonlar: parlama supurmesi + kaldirma ---------- */
.nav-cta,
.button {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.nav-cta::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 55%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transition: left .55s cubic-bezier(.5, 0, .2, 1);
  pointer-events: none;
}

.nav-cta:hover::before,
.button:hover::before {
  left: 130%;
}

.nav-cta:hover,
.button.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(50, 213, 255, .5);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .4);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 64px rgba(248, 185, 74, .42);
}

.button:active,
.nav-cta:active {
  transform: translateY(0) scale(.98);
}

/* ---------- Basliklar: canli gradyan isiltisi ---------- */
h1,
.section-kicker h2,
.section-head h2,
.product-band h2,
.cta-section h2,
.detail-split h2,
.detail-command-band h2 {
  background: linear-gradient(100deg, #ffffff 0%, #ffe8bb 26%, #ffffff 48%, #cdeffd 72%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  animation: headlineSheen 9s ease-in-out infinite;
}

@keyframes headlineSheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.eyebrow span {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  animation: eyebrowPulse 2.6s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; width: 30px; }
  50% { opacity: .55; width: 44px; }
}

/* ---------- Reveal (scroll ile giris) ---------- */
.reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  filter: blur(5px);
  transition: opacity .7s cubic-bezier(.2, .65, .3, 1), transform .7s cubic-bezier(.2, .65, .3, 1), filter .7s ease;
  will-change: opacity, transform, filter;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ---------- Tilt kartlari + isik takibi ---------- */
.tilt-card {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.tilt-card:hover {
  border-color: rgba(248, 185, 74, .38);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(248, 185, 74, .12);
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .09), transparent 62%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.tilt-card:hover::after {
  opacity: 1;
}

/* ---------- Gorsel paneller: yavas ken burns + parlayan cerceve ---------- */
.panel-image {
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.4%, 1.6%); }
}

.visual-frame img,
.route-card img,
.game-detail-card img,
.module-card img,
.detail-format-grid img,
.command-section-head img {
  transition: transform .7s cubic-bezier(.2, .7, .3, 1), opacity .5s ease;
}

.visual-row:hover .visual-frame img,
.route-card:hover img,
.game-detail-card:hover img,
.module-card:hover img,
.detail-format-grid article:hover img {
  transform: scale(1.07);
  opacity: 1;
}

.visual-row {
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.visual-row:hover {
  border-color: rgba(50, 213, 255, .28);
}

/* ---------- LIVE rozeti + canli akis vurgusu ---------- */
.command-top em {
  animation: livePulse 2.2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(50, 229, 143, .55); }
  55% { box-shadow: 0 0 0 9px rgba(50, 229, 143, 0); }
}

.live-stack span {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(248, 185, 74, .45); transform: scale(1); }
  50% { box-shadow: 0 0 26px rgba(248, 185, 74, .85); transform: scale(1.22); }
}

.live-stack div {
  transition: border-color .45s ease, background .45s ease, transform .45s ease;
}

.live-stack div.is-live {
  border-color: rgba(248, 185, 74, .5);
  background: rgba(248, 185, 74, .08);
  transform: translateX(4px);
}

/* ---------- Chip / etiket / tablo dokunuslari ---------- */
.mini-list span,
.game-tags span {
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}

.mini-list span:hover,
.game-tags span:hover {
  border-color: rgba(248, 185, 74, .5);
  background: rgba(248, 185, 74, .1);
  color: #ffd67b;
  transform: translateY(-2px);
}

.command-table tbody tr td {
  transition: background .25s ease, border-color .25s ease;
}

.command-table tbody tr:hover td {
  background: rgba(14, 20, 30, .92);
  border-color: rgba(50, 213, 255, .28);
}

.command-table tbody tr:hover code {
  border-color: rgba(50, 213, 255, .45);
  background: rgba(50, 213, 255, .12);
}

.command-chips b {
  font-variant-numeric: tabular-nums;
}

.command-search-bar input {
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.command-search-bar input:focus {
  background: rgba(9, 12, 19, .95);
  box-shadow: 0 0 0 4px rgba(50, 213, 255, .12), 0 14px 44px rgba(0, 0, 0, .4);
}

/* ---------- Premium kart numaralari rozet olarak ---------- */
.premium-card small,
.program-card small,
.module-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 211, 111, .3);
  border-radius: 11px;
  background: rgba(255, 211, 111, .07);
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 185, 74, .5), rgba(50, 213, 255, .5), transparent);
}

/* ---------- Mobil menu ---------- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  padding: 12px 11px;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .3s ease, background .3s ease;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .35s cubic-bezier(.6, 0, .2, 1), opacity .25s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 6, 10, .9);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav nav {
  display: grid;
  gap: 8px;
  width: min(420px, calc(100% - 48px));
  text-align: center;
}

.mobile-nav a {
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.2, .7, .3, 1), border-color .25s ease, background .25s ease;
}

.mobile-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open a:nth-child(1) { transition-delay: .05s; }
.mobile-nav.is-open a:nth-child(2) { transition-delay: .1s; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: .15s; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: .2s; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: .25s; }
.mobile-nav.is-open a:nth-child(6) { transition-delay: .3s; }
.mobile-nav.is-open a:nth-child(7) { transition-delay: .35s; }

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  border-color: rgba(248, 185, 74, .5);
  background: rgba(248, 185, 74, .1);
  color: #ffd67b;
}

.mobile-nav .mobile-cta {
  margin-top: 10px;
  color: #090a0e;
  border-color: rgba(248, 185, 74, .7);
  background: linear-gradient(135deg, #ffe08a, #f8b94a 38%, #32d5ff 105%);
}

.mobile-nav .mobile-cta:hover {
  color: #090a0e;
  background: linear-gradient(135deg, #ffe08a, #f8b94a 38%, #32d5ff 105%);
}

body.nav-locked {
  overflow: hidden;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: flex;
  }
}

@media (min-width: 1021px) {
  .mobile-nav {
    display: none;
  }
}

/* ---------- Üye girişi nav linki ---------- */
.site-nav .nav-login {
  padding: 8px 14px;
  border: 1px solid rgba(248, 185, 74, .38);
  border-radius: 999px;
  background: rgba(248, 185, 74, .08);
  color: #ffd67b;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.site-nav .nav-login::after {
  display: none;
}

.site-nav .nav-login:hover {
  border-color: rgba(248, 185, 74, .7);
  background: rgba(248, 185, 74, .16);
  color: #ffe6ae;
}

/* ---------- Film greni dokusu ---------- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 55;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -1%); }
  60% { transform: translate(-1%, -2%); }
  80% { transform: translate(1%, 2%); }
}

/* ---------- Fare aurası ---------- */
.cursor-aura {
  position: fixed;
  top: -260px;
  left: -260px;
  width: 520px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(248, 185, 74, .07) 0%,
    rgba(50, 213, 255, .045) 38%,
    transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .6s ease;
  will-change: transform;
}

.cursor-aura.is-on {
  opacity: 1;
}

/* ---------- Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .cursor-aura { display: none; }
  h1,
  .section-kicker h2,
  .section-head h2,
  .product-band h2,
  .cta-section h2,
  .detail-split h2,
  .detail-command-band h2,
  .eyebrow span,
  .panel-image,
  .command-top em,
  .live-stack span,
  .panel-orbit {
    animation: none;
  }
  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .tilt-card {
    transform: none;
  }
}
