:root {
  --bg: #05070a;
  --bg-soft: #0b1017;
  --card: rgba(255, 255, 255, .05);
  --card-strong: rgba(255, 255, 255, .08);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, .72);
  --line: rgba(255, 255, 255, .10);
  --accent: #c06dff;
  --accent-soft: rgba(192, 109, 255, .22);
  --accent-gradient: linear-gradient(135deg, #c06dff, #8b6aff, #5ee7ff);
  --max: 1200px;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit
}

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto
}

.muted {
  color: var(--muted)
}

.small {
  font-size: 12px
}

.eyebrow,
.kicker,
.panel-label,
.chapter-kicker,
.p-kicker,
.vmodal-kicker {
  color: rgba(244, 247, 251, .66);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.is-in {
  opacity: 1;
  transform: none
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(5, 7, 10, .48);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
  box-shadow: 0 0 28px rgba(105, 167, 255, .55);
  flex: 0 0 auto;
}

.brand-text {
  display: block;
  font-weight: 800;
  letter-spacing: .04em
}

.brand-sub {
  display: block;
  font-size: 12px;
  color: rgba(244, 247, 251, .58)
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block
}

.footer-brand-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 4px
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px
}

.menu a {
  font-size: 14px;
  color: rgba(244, 247, 251, .82);
  transition: color .2s ease, opacity .2s ease, transform .2s ease
}

.menu a:hover {
  color: #fff
}

.menu a.is-active {
  color: #fff;
  font-weight: 500;
  transform: scale(1.1)
}

.pill-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06)
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  color: #fff
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px
}

.header-lang {
  font-size: 13px;
  font-weight: 600;
  color: rgba(244, 247, 251, .7);
  transition: color .2s ease;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05)
}

.header-lang:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .22)
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: rgba(255, 255, 255, .05)
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent-gradient)
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero-video,
.p-video,
.scene-video,
.vmodal-video,
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scene-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px
}

.hero-video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.02);
  object-position: center 65%
}

.hero-overlay,
.p-overlay,
.scene-overlay,
.vmodal-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(105, 167, 255, .20), transparent 55%),
    radial-gradient(1000px 600px at 80% 50%, rgba(255, 255, 255, .08), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .82));
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
  gap: 28px;
  padding: 132px 0 72px;
}

.hero-copy {
  max-width: 760px
}

h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 14px 0 16px
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(244, 247, 251, .78);
  max-width: 720px
}

.cta-row,
.proj-actions,
.p-actions,
.vmodal-actions,
.hero-stats,
.chips,
.footer-links,
.chap-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: #fff;
  color: #05070a;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
  font-family: inherit;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
}

.vmodal-title {
  margin-bottom: 3px;
}

.vmodal-tagline {
  margin-bottom: 0px;
}

.vmodal-content .chips {
  margin-top: 12px;
  margin-bottom: 10px;
}

.vmodal-content .chip {
  padding: 6px 12px;
  font-size: 12px;
}

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

.btn-ghost {
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  color: #fff !important;
}

.stat-pill,
.mini,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  color: rgba(244, 247, 251, .76)
}

.stat-pill span {
  font-weight: 700;
  color: #fff
}

.hero-panel,
.hero-tile,
.chapter-card,
.tech-card,
.card,
.sys-card,
.waitlist,
.updates,
.faq,
.timeline,
.glass-card,
.vmodal-sheet,
.story-step,
.chapter-media,
.reel,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 20px;
  border-radius: var(--radius);
  align-self: end
}

.panel-list {
  display: grid;
  gap: 12px;
  margin-top: 14px
}

.panel-line,
.panel-row,
.spec-row,
.tile-item,
.chapter-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center
}

.panel-line,
.panel-row,
.spec-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.panel-line:first-child,
.panel-row:first-child,
.spec-row:first-child {
  border-top: 0
}

.panel-line span,
.panel-row span,
.spec-row span {
  color: rgba(244, 247, 251, .62)
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px
}

.scroll-dot {
  width: 22px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  position: relative
}

.scroll-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  animation: scrollPulse 1.4s infinite
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: .65
  }

  50% {
    transform: translate(-50%, 14px);
    opacity: 1
  }
}

.section {
  padding: 96px 0;
  background: var(--bg)
}

.section-dark {
  background: linear-gradient(180deg, #06090e, #090d14)
}

.section-tight {
  padding-top: 80px
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px
}

.section-head h2,
.story-head h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.04em
}

.section-head p,
.story-head p {
  max-width: 520px;
  color: rgba(244, 247, 251, .66);
  line-height: 1.7
}

.proj-grid,
.cards4,
.grid2,
.contact-grid,
.story-grid,
.gallery {
  display: grid;
  gap: 16px
}

.proj-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

/* ── Project Carousel ── */
.proj-carousel {
  position: relative;
  overflow: hidden;
}

.proj-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.proj-carousel-track .proj-card {
  flex-shrink: 0;
}

.proj-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.proj-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.proj-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.proj-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.proj-carousel-dots {
  display: flex;
  gap: 8px;
}

.proj-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}

.proj-carousel-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

.proj-carousel-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.proj-carousel-all:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cards4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid2,
.contact-grid,
.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.proj-card {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease
}

.proj-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .06)
}

.proj-media {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #000
}

.proj-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.02)
}

.proj-vignette,
.chapter-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), transparent 60%)
}

.proj-badge,
.vmodal-brand {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  color: #fff
}

.proj-meta {
  padding: 20px
}

.proj-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start
}

.proj-meta h3 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -.04em
}

.proj-year {
  font-size: 12px;
  color: rgba(244, 247, 251, .54);
  padding-top: 6px
}

.proj-copy {
  margin: 14px 0 0;
  line-height: 1.7
}

.proj-actions {
  margin-top: 18px
}

.story {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: #04070c
}

.story-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 18px
}

.seg {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-weight: 600
}

.seg.is-on {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .24)
}

.story-left {
  padding-bottom: 38vh
}

.story-step {
  padding: 20px;
  border-radius: 24px;
  position: relative;
  margin-bottom: 10px
}

.story-step h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  letter-spacing: -.03em
}

.story-step p {
  margin: 0;
  color: rgba(244, 247, 251, .72);
  line-height: 1.7
}

.story-step.is-active {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08)
}

.story-step.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 99px;
  background: #fff
}

.story-right {
  min-width: 0
}

.story-sticky {
  position: sticky;
  top: 100px;
  height: calc(100svh - 130px);
  min-height: 540px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03)
}

.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .35s ease, transform .35s ease
}

.scene.is-on {
  opacity: 1;
  transform: none
}

.scene-art {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 20% 18%, rgba(105, 167, 255, .18), transparent 60%), rgba(6, 10, 16, .8)
}

.gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 45%, transparent 86%)
}

.pulse,
.launch-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px)
}

.pulse {
  width: 180px;
  height: 180px;
  left: 14%;
  top: 16%;
  background: rgba(105, 167, 255, .3)
}

.launch-glow {
  width: 240px;
  height: 240px;
  right: 12%;
  bottom: 14%;
  background: rgba(255, 255, 255, .16)
}

.panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 24px
}

.scene-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 150px;
  color: rgba(244, 247, 251, .74);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.sys-card,
.card {
  padding: 22px;
  border-radius: 24px
}

.sys-card b,
.card h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -.03em
}

.sys-card span,
.card p {
  line-height: 1.7
}

/* Forms & Inputs */
.input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  padding: 14px 14px;
  outline: none;
  transition: all .3s ease
}

.input::placeholder {
  color: rgba(244, 247, 251, .45)
}

.input:focus {
  border-color: rgba(105, 167, 255, .6);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 4px rgba(105, 167, 255, .15), inset 0 0 12px rgba(105, 167, 255, .1);
}

/* Updates Timeline */
.updates-timeline {
  position: relative;
  padding-left: 24px;
  margin-top: 16px;
}

.utimeline-line {
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(105, 167, 255, .4), rgba(105, 167, 255, .05));
  border-radius: 4px;
}

.urow-timeline {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.urow-timeline:last-child {
  margin-bottom: 0;
}

.udot {
  position: absolute;
  left: -24px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #05070a;
  border: 2px solid #69a7ff;
  box-shadow: 0 0 10px rgba(105, 167, 255, .5);
  z-index: 2;
  transition: transform .3s ease, box-shadow .3s ease;
}

.urow-timeline:hover .udot {
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(105, 167, 255, .8);
}

.udate {
  color: #69a7ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 4px;
}

.ucontent {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.urow-timeline:hover .ucontent {
  transform: translateX(6px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
}

.ucontent strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* Timeline (Studio fallback) */
.timeline {
  padding: 18px;
  border-radius: 24px
}

.trow {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.trow:first-child {
  border-top: 0
}

.tdate {
  color: rgba(244, 247, 251, .58);
  font-size: 12px;
  padding-top: 3px
}

/* FAQ */
.faq {
  overflow: hidden
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s ease;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item.is-open {
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  border-top-color: transparent;
  margin: 8px 0;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.faq-q {
  width: 100%;
  padding: 20px 16px;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .3s ease;
}

.faq-item.is-open .faq-q {
  color: #69a7ff;
  padding-bottom: 12px;
}

.faq-a {
  padding: 0 16px 20px;
  font-size: 15px;
  line-height: 1.7;
}

.faq-ico {
  color: rgba(255, 255, 255, .4);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), color .3s ease;
}

.faq-item.is-open .faq-ico {
  transform: rotate(180deg);
  color: #69a7ff;
}

.faq-q:hover .faq-ico {
  color: #fff;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 14px;
  align-items: center;
}

.playtest-submit {
  height: 52px;
  border-radius: 16px;
  min-width: 130px;
}

.waitlist-form select {
  appearance: none;
  background: #1a1d22;
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.waitlist-form select option {
  background: #1a1d22;
  color: #fff;
}


.waitlist-form select:focus {
  border-color: rgba(255, 255, 255, .25);
}

@media (max-width: 900px) {

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .playtest-submit {
    width: 100%;
  }

}

.contact-form {
  display: grid;
  gap: 12px
}

.row1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

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

.contact-side {
  align-content: start
}

.contact-info {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  color: #69a7ff;
  opacity: 0.8;
  padding-top: 2px;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-info-text span {
  display: block;
  color: rgba(244, 247, 251, .7);
  font-size: 15px;
  line-height: 1.6;
}

textarea.input {
  resize: vertical;
  min-height: 148px
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(105, 167, 255, .12), rgba(255, 255, 255, .05))
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #04070c
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 6px
}

.footer-links a {
  opacity: .8
}

.footer-links a:hover {
  opacity: 1
}

.vmodal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none
}

.vmodal.is-open {
  display: block
}

.vmodal-backdrop,
.lbx-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(10px)
}

.vmodal-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 28px;
  background: rgba(8, 11, 16, .78)
}

.vmodal-close,
.lbx-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  z-index: 2
}

.vmodal-media {
  position: relative;
  height: min(52vw, 440px);
  background: #000
}

.vmodal-content {
  padding: 22px
}

.vmodal-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start
}

.vmodal-title {
  margin: 6px 0;
  font-size: 30px;
  letter-spacing: -.04em
}

.vmodal-tagline,
.vmodal-desc {
  line-height: 1.7
}

.p-hero {
  position: relative;
  min-height: 86svh;
  background: #000;
  overflow: hidden
}

.p-inner {
  position: relative;
  z-index: 2;
  min-height: 86svh;
  display: flex;
  align-items: end;
  padding: 130px 0 72px
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  margin-bottom: 22px
}

.p-title {
  font-size: clamp(42px, 7vw, 92px);
  margin: 14px 0 14px
}

.chap-nav {
  position: sticky;
  top: 76px;
  z-index: 80;
  background: rgba(5, 7, 10, .85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.chap-links {
  padding: 14px 0
}

.chap-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  font-size: 14px
}

.chapters {
  padding: 54px 0 96px
}

.chapter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.chapter:last-child {
  border-bottom: 0
}

.chapter h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.04em
}

.chapter-text {
  color: rgba(244, 247, 251, .72);
  line-height: 1.8;
  max-width: 640px
}

.chapter-card,
.tech-card {
  padding: 22px;
  border-radius: 24px
}

.chapter-media {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden
}

.chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.chapter-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fff;
  font-weight: 600
}

.bullet {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(244, 247, 251, .76);
  line-height: 1.9
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.gitem {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  position: relative
}

.gitem img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: 22px
}

.gcap {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(8px);
  font-size: 13px
}

.lbx {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none
}

.lbx.is-open {
  display: block
}

.lbx-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 920px);
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(8, 11, 16, .92)
}

.lbx-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  background: #000
}

.lbx-cap {
  padding-top: 12px;
  color: rgba(244, 247, 251, .72)
}

/* Career section — index */
.career-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px
}

.career-highlight-card {
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease
}

.career-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .07)
}

.career-icon {
  font-size: 32px;
  margin-bottom: 14px
}

.career-highlight-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.03em
}

.career-highlight-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 14px
}

.career-positions {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px
}

.career-positions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.career-positions-header h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.03em
}

.career-count {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(105, 167, 255, .15);
  color: var(--accent);
  font-weight: 600
}

.career-position-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s ease
}

.career-position-row:last-child {
  border-bottom: 0
}

.career-position-row:hover {
  background: rgba(255, 255, 255, .04)
}

.career-pos-info {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.career-pos-title {
  font-weight: 600;
  font-size: 16px
}

.career-pos-meta {
  display: flex;
  gap: 8px
}

.career-pos-badge {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(244, 247, 251, .72);
  white-space: nowrap
}

.career-cta {
  text-align: center;
  padding-top: 8px
}

/* Kariyer page */
.k-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #06090e 0%, #0a0f18 100%);
  overflow: hidden
}

.k-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 167, 255, .12), transparent 70%);
  pointer-events: none
}

.k-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto
}

.k-hero .eyebrow {
  margin-bottom: 10px
}

.k-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -.05em;
  margin: 0 0 16px
}

.k-hero .lead {
  margin: 0 auto 30px;
  max-width: 580px
}

.k-hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

.k-filters {
  position: sticky;
  top: 76px;
  z-index: 80;
  background: rgba(5, 7, 10, .88);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 14px 0
}

.k-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.k-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(244, 247, 251, .78);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s ease
}

.k-pill:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10)
}

.k-pill.is-on {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .28);
  color: #fff
}

.k-jobs {
  padding: 60px 0 80px;
  background: var(--bg)
}

.k-jobs-grid {
  display: grid;
  gap: 16px
}

.k-job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease
}

.k-job-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .07)
}

.k-job-left h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -.03em
}

.k-job-left .muted {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 14px
}

.k-job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.k-job-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

.k-job-status {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600
}

.k-job-status.status-open {
  background: rgba(16, 185, 129, .15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, .25)
}

.k-job-status.status-closed {
  background: rgba(248, 113, 113, .15);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, .25)
}

.k-culture {
  padding: 80px 0;
  background: linear-gradient(180deg, #06090e, #090d14)
}

.k-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px
}

.k-culture-card {
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
  transition: transform .25s ease, border-color .25s ease
}

.k-culture-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .20)
}

.k-culture-card .career-icon {
  margin-bottom: 16px
}

.k-culture-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.03em
}

.k-culture-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 14px
}

.k-apply {
  padding: 80px 0;
  background: var(--bg);
  text-align: center
}

.k-apply-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(135deg, rgba(105, 167, 255, .08), rgba(255, 255, 255, .04));
  backdrop-filter: blur(18px)
}

.k-apply-box h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.04em
}

.k-apply-box p {
  margin: 0 0 24px;
  color: rgba(244, 247, 251, .72);
  line-height: 1.7
}

.k-apply-box .btn {
  min-width: 200px
}

/* Apply modal */
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none
}

.apply-modal.is-open {
  display: block
}

.apply-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(12px)
}

.apply-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(580px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 11, 16, .92);
  backdrop-filter: blur(24px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .5);
  padding: 32px
}

.apply-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.apply-close:hover {
  background: rgba(255, 255, 255, .14)
}

.apply-header {
  margin-bottom: 24px
}

.apply-header h3 {
  margin: 8px 0 8px;
  font-size: 24px;
  letter-spacing: -.03em
}

.apply-header p {
  margin: 0;
  font-size: 14px
}

.apply-form {
  display: grid;
  gap: 14px
}

.apply-form textarea.input {
  min-height: 120px;
  resize: vertical
}

.apply-submit {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  font-size: 16px
}

/* File upload */
.file-upload-wrapper {
  position: relative
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  color: rgba(244, 247, 251, .6);
  cursor: pointer;
  transition: all .3s ease;
  font-size: 14px
}

.file-upload-label:hover {
  border-color: rgba(105, 167, 255, .4);
  background: rgba(255, 255, 255, .06)
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer
}

/* ── Footer (New Grid Structure) ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.footer-brand-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 320px
}

.footer-heading {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, .5);
  margin: 0 0 16px;
  font-weight: 600
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-nav a {
  font-size: 14px;
  color: rgba(244, 247, 251, .7);
  transition: color .2s ease
}

.footer-nav a:hover {
  color: #fff
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(244, 247, 251, .7);
  line-height: 1.6
}

.footer-contact-list svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: .7;
  margin-top: 2px
}

.footer-contact-list a {
  color: rgba(244, 247, 251, .7);
  transition: color .2s ease
}

.footer-contact-list a:hover {
  color: #fff
}

.footer-socials {
  display: flex;
  gap: 10px
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(244, 247, 251, .7);
  transition: all .2s ease
}

.footer-social:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
  color: #fff
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  color: rgba(244, 247, 251, .5)
}

.lang-switch-footer {
  font-size: 13px;
  color: rgba(244, 247, 251, .6);
  transition: color .2s ease
}

.lang-switch-footer:hover {
  color: #fff
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 24px;
    padding-top: 112px;
    padding-bottom: 56px;
  }

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

  .hero-panel {
    justify-self: start;
    width: min(100%, 560px);
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 56px);
    line-height: .98;
    max-width: 100%;
  }

  .lead {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-panel {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding-top: 98px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(30px, 11vw, 46px);
    line-height: 1.02;
    letter-spacing: -.045em;
  }

  .lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

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

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  font-size: 12px;
  color: rgba(244, 247, 251, .78);
}

.stat-pill span {
  font-weight: 700;
  color: #fff;
}

@media (min-width: 821px) {
  .hero-inner {
    grid-template-columns: minmax(0, 620px) minmax(320px, 460px);
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

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

  h1 {
    font-size: clamp(30px, 3.1vw, 40px);
    line-height: 1.05;
    letter-spacing: -.045em;
    margin: 14px 0 16px;
  }

  .lead {
    font-size: 17px;
    max-width: 620px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   KARIYER (CAREERS)
   ═══════════════════════════════════════════════════════════════ */
.k-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.k-hero-inner h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 16px 0 24px;
}

.k-hero-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.k-filters {
  margin-bottom: 40px;
}

.k-filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.k-pill {
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.k-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.k-pill.is-on {
  background: #fff;
  color: #000;
  border-color: #fff;
  font-weight: 600;
}

.k-jobs {
  padding-bottom: 80px;
}

.k-jobs-grid {
  display: grid;
  gap: 16px;
}

.k-job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.k-job-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.k-job-left h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.k-job-left p {
  margin: 0 0 16px;
  font-size: 15px;
}

.k-job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.k-job-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.k-job-status {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
}

.status-open {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-closed {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.k-culture {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.k-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.k-culture-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.career-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.k-culture-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.k-apply {
  padding: 80px 0 120px;
}

.k-apply-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(192, 109, 255, 0.08), rgba(94, 231, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.k-apply-box h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.k-apply-box p {
  margin-bottom: 32px;
  color: var(--muted);
}

/* Apply Modal */
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}

.apply-modal.is-open {
  display: block;
}

.apply-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.apply-sheet {
  position: absolute;
  z-index: 2;
  width: min(calc(100vw - 40px), 600px);
  max-height: 90vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-soft);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 32px;
  overflow-y: auto;
}

.apply-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 0;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.apply-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.apply-header {
  text-align: center;
  margin-bottom: 32px;
}

.apply-header h3 {
  font-size: 24px;
  margin: 4px 0;
  color: var(--accent);
}

.apply-header p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}

/* explicitly centering subtitle */
.apply-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.apply-form .row1,
.apply-form .row2 {
  width: 100%;
  display: flex;
  gap: 10px;
}

.apply-form .input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
}

.apply-form .input::placeholder {
  text-align: center;
  font-size: 14px;
}

.apply-form textarea.input {
  min-height: 80px;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-size: 14px;
}

.input:focus {
  border-color: var(--accent);
}

.file-upload-wrapper {
  position: relative;
  margin-top: 4px;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--muted);
  pointer-events: none;
  width: 100%;
  font-size: 14px;
}

.file-upload-input:hover+.file-upload-label {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.apply-submit {
  margin-top: 8px;
  width: 100%;
  max-width: 300px;
  display: flex;
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════════
   POLICIES PAGE & COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
.pol-layout {
  max-width: var(--max);
  margin: 140px auto 100px;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  position: relative;
  min-height: 60vh;
}

.pol-decor-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: var(--accent-soft);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.pol-decor-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(94, 231, 255, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.pol-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.pol-sidebar-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
  padding-left: 10px;
}

.pol-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pol-tab {
  text-align: left;
  padding: 14px 20px;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pol-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.pol-tab.is-active {
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pol-tab.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
}

.pol-content {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.pol-content-inner {
  animation: fadeIn 0.4s ease-out forwards;
}

.pol-title {
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.pol-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pol-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--muted);
}

.pol-meta-pill span {
  color: #fff;
  font-weight: 500;
}

.pol-meta-icon {
  width: 16px;
  height: 16px;
}

.pol-meta-icon.accent {
  color: var(--accent);
}

.pol-meta-icon.light {
  color: #5ee7ff;
}

.pol-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(244, 247, 251, 0.78);
  font-weight: 300;
}

.pol-body h3 {
  font-size: 24px;
  color: #fff;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.pol-body p {
  margin-bottom: 18px;
}

.pol-body ul {
  padding-left: 20px;
  margin-bottom: 24px;
  list-style: disc;
}

.pol-body ul li {
  margin-bottom: 10px;
}

.pol-body strong {
  color: #fff;
  font-weight: 600;
}

.pol-note {
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  margin-top: 32px;
}

.pol-note p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #5ee7ff;
}

.pol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.pol-grid-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 20px;
}

.pol-grid-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.pol-grid-card p {
  font-size: 14px;
  margin: 0;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  animation: slideUp 0.5s ease-out forwards;
}

.cookie-inner {
  pointer-events: auto;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--accent-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-radius: 24px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 900px;
  width: 100%;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(192, 109, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.cookie-content p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}


.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(2, 4, 10, 1) 0%, rgba(2, 4, 10, .95) 14%, rgba(2, 4, 10, .55) 28%, transparent 42%),
    radial-gradient(700px 420px at 18% 28%, rgba(7, 10, 18, .70), transparent 58%),
    linear-gradient(to right, rgba(2, 4, 10, .72) 0%, rgba(2, 4, 10, .46) 36%, rgba(2, 4, 10, .20) 58%, rgba(0, 0, 0, .34) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, .16), rgba(0, 0, 0, .68));
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — TABLET & SMALL SCREENS (≤ 820px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {

  /* ── Mobile Navigation ── */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
    order: 1;
  }

  .brand {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu {
    order: 3;
  }

  .header-lang {
    order: 4;
  }

  /* ── Policies & Cookies Mobile ── */
  .pol-layout {
    flex-direction: column;
    padding: 0 16px;
    margin-top: 100px;
    gap: 24px;
  }

  .pol-sidebar {
    width: 100%;
    position: static;
  }

  .pol-sidebar-title {
    margin-bottom: 12px;
  }

  .pol-sidebar-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding: 0 16px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pol-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .pol-tab {
    white-space: nowrap;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
  }

  .pol-tab.is-active::before {
    top: auto;
    left: 20%;
    right: 20%;
    bottom: 0;
    width: auto;
    height: 3px;
    border-radius: 4px 4px 0 0;
  }

  .pol-content {
    padding: 24px;
    border-radius: 24px;
  }

  .pol-title {
    font-size: 28px;
  }

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

  .cookie-banner {
    padding: 16px;
  }

  .cookie-inner {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .cookie-content {
    align-items: flex-start;
  }

  .cookie-icon {
    display: none;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    text-align: center;
  }

  .menu {
    display: none !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    bottom: auto;
    max-height: 50vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 7, 10, .97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 20px 24px 40px;
    overflow-y: auto;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  }

  .menu.is-open {
    display: flex !important;
  }

  .menu a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(244, 247, 251, .85);
  }

  .menu a:last-child {
    border-bottom: 0;
  }

  .menu .pill-link {
    display: inline-flex;
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    border-bottom: 0;
  }

  /* ── Section General ── */
  .section {
    padding: 56px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-head p {
    max-width: 100%;
  }

  /* ── Project Grid ── */
  .proj-grid {
    grid-template-columns: 1fr;
  }



  .proj-media {
    height: 240px;
  }

  .proj-meta h3 {
    font-size: 22px;
  }

  /* ── Studio Cards (4 → 2) ── */
  .cards4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ── Story / Production Section ── */
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-right {
    display: none;
  }

  .story-left {
    padding-bottom: 0;
  }

  .story-head p {
    max-width: 100%;
  }

  /* ── Contact Grid ── */
  .grid2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* ── Project Detail Page ── */
  .chapter {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .chapter-media {
    min-height: 260px;
  }

  .p-title {
    font-size: clamp(32px, 9vw, 56px);
  }

  .p-inner {
    padding: 110px 0 56px;
  }

  .chap-links {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .chap-links::-webkit-scrollbar {
    display: none;
  }

  .chap-links a {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Gallery (3 → 2) ── */
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ── CTA Panel ── */
  .cta-panel {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  /* ── Video Modal ── */
  .vmodal-sheet {
    width: calc(100vw - 16px);
    border-radius: 20px;
  }

  .vmodal-media {
    height: min(56vw, 280px);
  }

  .vmodal-title {
    font-size: 22px;
  }

  .vmodal-top {
    flex-direction: column;
    gap: 12px;
  }

  /* ── Apply Modal ── */
  .apply-sheet {
    width: calc(100vw - 20px);
    padding: 24px 20px;
    border-radius: 20px;
  }

  /* ── Kariyer Page ── */
  .k-hero {
    padding: 120px 0 56px;
  }

  .k-hero h1 {
    font-size: clamp(28px, 7vw, 48px);
  }

  .k-hero .lead {
    font-size: 15px;
    max-width: 100%;
  }

  .k-hero-stats {
    justify-content: flex-start;
  }

  .k-filter-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 8px;
  }

  .k-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .k-pill {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .k-culture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .k-apply-box {
    padding: 32px 24px;
  }

  /* ── Career Highlights (index) ── */
  .career-highlights {
    grid-template-columns: 1fr;
  }

  .career-position-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* ── Job Cards ── */
  .k-job-card {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .k-job-right {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .k-job-right .btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  .k-job-left h3 {
    font-size: 18px;
  }

  .k-job-left .muted {
    font-size: 13px;
  }

  /* ── Waitlist / Playtest Form ── */
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .playtest-submit {
    width: 100%;
  }

  /* ── Lightbox ── */
  .lbx-shell {
    width: calc(100vw - 16px);
    padding: 12px;
    border-radius: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — SMALL PHONES (≤ 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Even tighter spacing ── */
  .section {
    padding: 40px 0;
  }

  .wrap {
    width: calc(100% - 28px);
  }

  /* ── Studio cards → 1 col ── */
  .cards4 {
    grid-template-columns: 1fr;
  }

  /* ── Gallery → 1 col ── */
  .gallery {
    grid-template-columns: 1fr;
  }

  /* ── Culture grid → 1 col ── */
  .k-culture-grid {
    grid-template-columns: 1fr;
  }

  /* ── Contact form row ── */
  .row2 {
    grid-template-columns: 1fr;
  }

  /* ── Smaller project media ── */
  .proj-media {
    height: 200px;
  }

  /* ── Chapter headings ── */
  .chapter h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  /* ── Hero panel ── */
  .hero-panel {
    padding: 16px;
  }

  .panel-line b,
  .panel-row b {
    font-size: 13px;
  }

  /* ── Story section steps ── */
  .story-step {
    padding: 16px;
  }

  .story-step h3 {
    font-size: 20px;
  }

  /* ── Kariyer hero ── */
  .k-hero {
    padding: 120px 0 56px;
  }

  .k-hero h1 {
    font-size: clamp(24px, 8vw, 36px);
  }

  /* ── Kariyer apply box ── */
  .k-apply-box {
    padding: 28px 20px;
  }

  .k-apply-box h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  /* ── Kariyer Mobile Adjustments ── */
  .k-hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .k-job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .k-job-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    margin-top: 12px;
  }

  .k-job-right .btn {
    width: auto;
    padding: 0 32px;
  }

  /* ── FAQ ── */
  .faq-q {
    font-size: 14px;
    padding: 16px 12px;
  }

  .faq-a {
    padding: 0 12px 16px;
    font-size: 13px;
  }

  /* ── Updates Timeline ── */
  .ucontent strong {
    font-size: 16px;
  }

  /* ── Footer ── */
  .footer {
    padding: 20px 0;
  }

  /* ── Career positions header ── */
  .career-positions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* ── CTA row buttons full width ── */
  .p-actions {
    flex-direction: column;
  }

  .p-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* ── Video modal content ── */
  .vmodal-content {
    padding: 16px;
  }

  .vmodal-title {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════
   PROJECTS PAGE — zoihub.com/projects style
   ═══════════════════════════════════════════ */

/* --- Ticker Bar --- */
.ticker-bar {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 90;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 40px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 20s linear infinite;
  white-space: nowrap;
}

.ticker-track a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 0 8px;
  transition: color .2s;
  cursor: pointer;
}

.ticker-track a:hover {
  color: #fff;
}

.ticker-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 14px;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Hero Section --- */
.pp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(100, 80, 200, 0.25), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(40, 80, 180, 0.2), transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(180, 40, 40, 0.15), transparent 50%),
    #05070a;
  z-index: 0;
}

.pp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.pp-hero-title {
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 24px;
}

.pp-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.pp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.pp-hero-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* --- Main Layout --- */
.pp-main {
  background: var(--bg);
  padding: 0 0 100px;
}

.pp-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding-top: 80px;
}

/* --- Sidebar --- */
.pp-sidebar {
  flex: 0 0 220px;
  position: sticky;
  top: 140px;
}

.pp-sidebar-title {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.pp-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-sidebar-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all .2s;
  border: 1px solid transparent;
}

.pp-sidebar-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.pp-sidebar-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

/* --- Project Cards --- */
.pp-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.pp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  scroll-margin-top: 140px;
  position: relative;
  isolation: isolate;
  padding: 60px 0;
}

/* Aura glows — zoihub.com/projects style per-project */
.pp-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  pointer-events: none;
  filter: blur(100px);
}

/* Cyan neon separator between sections */
.pp-card+.pp-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  right: -5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.3), rgba(0, 180, 255, 0.5), rgba(0, 210, 255, 0.3), transparent);
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.2), 0 0 80px rgba(0, 200, 255, 0.08);
  z-index: 1;
}

/* CHESSMAX — warm bronze/brown chess board tint */
.pp-card[data-slug="chessmax"]::before {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(160, 110, 50, 0.3), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(100, 70, 30, 0.2), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 40, 20, 0.15), transparent 60%);
}

/* DICESCORE — deep red / warm purple dice theme */
.pp-card[data-slug="dicescore"]::before {
  background:
    radial-gradient(ellipse at 25% 40%, rgba(180, 40, 60, 0.3), transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(130, 30, 100, 0.2), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(80, 20, 40, 0.15), transparent 60%);
}

/* IDLE ASTRO TYCOON — cosmic purple, deep blue & neon green space */
.pp-card[data-slug="idle-astro-tycoon"]::before {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(80, 30, 160, 0.3), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(30, 60, 140, 0.25), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(40, 180, 80, 0.2), transparent 45%);
}

.pp-card-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-card-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: #fff;
}

.pp-card-tagline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-weight: 400;
}

.pp-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 0;
  max-width: 520px;
}

/* Features grid */
.pp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-top: 8px;
}

.pp-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pp-feature::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* Status badge */
.pp-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  width: fit-content;
  margin-top: 8px;
}

.pp-status svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

/* Stats */
.pp-stats {
  display: flex;
  gap: 36px;
  margin-top: 8px;
}

.pp-stat-val {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-stat-val svg {
  color: #FFD700;
  width: 20px;
  height: 20px;
}

.pp-stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Tech tags */
.pp-tech-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}

.pp-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pp-tech-tag {
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

/* Store buttons */
.pp-stores {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 12px;
}

.pp-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s;
  white-space: nowrap;
}

.pp-store-btn:hover {
  transform: translateY(-2px);
}

.pp-store-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pp-store-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pp-store-sub {
  font-size: 9px;
  font-weight: 500;
  opacity: .55;
}

.pp-store-main {
  font-size: 12px;
  font-weight: 700;
}

/* Website button fallback */
.pp-web-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
  transition: all .2s;
  white-space: nowrap;
}

.pp-web-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Right side images */
.pp-card-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-poster {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* --- Floating Bottom Nav --- */
.pp-bottom-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(20, 20, 25, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.pp-bnav-brand {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-right: 12px;
  white-space: nowrap;
}

.pp-bnav-links {
  display: flex;
  gap: 4px;
}

.pp-bnav-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all .2s;
  text-decoration: none;
}

.pp-bnav-link:hover,
.pp-bnav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.pp-bnav-link svg {
  width: 20px;
  height: 20px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pp-layout {
    flex-direction: column;
    gap: 40px;
  }

  .pp-sidebar {
    position: static;
    flex: auto;
    width: 100%;
  }

  .pp-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pp-sidebar-nav a {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pp-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .pp-hero-title {
    font-size: 48px;
  }

  .pp-card-title {
    font-size: 36px;
  }

  .pp-features {
    grid-template-columns: 1fr;
  }

  .pp-bottom-nav {
    bottom: 16px;
    padding: 6px 6px 6px 14px;
  }
}