/* ============================================
   TECH TURTLES — THE SUBMINER LANDING PAGE
   Stylesheet
   ============================================ */

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #B8E8F0;
  background: #051418;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---------- LAYOUT WRAPPER ---------- */
.screen {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: #081A1E;
  border-radius: 0;
  overflow: hidden;
}
.screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,30,40,.25) 2px, rgba(0,30,40,.25) 3px);
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: multiply;
}
.screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
  z-index: 49;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 32px 40px 40px;
  background: linear-gradient(180deg, #0F2A2E 0%, #081A1E 50%, #051418 100%);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #1F4A52;
  margin-bottom: 28px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #5FB8D4;
  letter-spacing: .15em;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 28px;
  height: 28px;
  border: 2px solid #3FA9C9;
  position: relative;
  flex-shrink: 0;
}
.logo-icon::before, .logo-icon::after { content: ''; position: absolute; background: #7FFFB0; }
.logo-icon::before { left: 4px; right: 4px; top: 4px; height: 2px; }
.logo-icon::after { left: 4px; right: 4px; top: 10px; bottom: 4px; border: 1px solid #7FFFB0; background: transparent; }
.logo-text {
  color: #B8E8F0;
  font-weight: 600;
  letter-spacing: .25em;
  font-size: 13px;
}

.status { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.status-item { display: flex; align-items: center; gap: 6px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7FFFB0;
  box-shadow: 0 0 6px #7FFFB0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ---------- HERO GRID (desktop: 2 col, mobile: stacked) ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.hero-left, .hero-right {
  display: flex;
  flex-direction: column;
}
.hero-right { gap: 14px; }

/* ---------- BRACKET FRAMES (corner brackets) ---------- */
.bracket-frame {
  position: relative;
  padding: 28px 32px;
  background: rgba(15,42,46,.4);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bracket-frame::before, .bracket-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #3FA9C9;
}
.bracket-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.bracket-frame::after { bottom: 0; right: 0; border-left: none; border-top: none; }

.bracket {
  position: absolute;
  border: 2px solid #3FA9C9;
}
.bracket-tr {
  width: 24px; height: 24px;
  top: 0; right: 0;
  border-left: none; border-bottom: none;
}
.bracket-bl {
  width: 24px; height: 24px;
  bottom: 0; left: 0;
  border-right: none; border-top: none;
}
.bracket-tr-small {
  width: 12px; height: 12px;
  top: -2px; right: -2px;
  border-left: none; border-bottom: none;
}
.bracket-bl-small {
  width: 12px; height: 12px;
  bottom: -2px; left: -2px;
  border-right: none; border-top: none;
}

.frame-label {
  position: absolute;
  top: -10px;
  left: 24px;
  background: #081A1E;
  padding: 0 12px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #5FB8D4;
  letter-spacing: .3em;
  font-weight: 500;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #7FFFB0;
  letter-spacing: .3em;
  margin-bottom: 14px;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #7FFFB0;
  margin-right: 8px;
  box-shadow: 0 0 4px #7FFFB0;
  vertical-align: middle;
}

.title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  margin: 0 0 4px 0;
  color: #B8E8F0;
}
.title-sub {
  color: #7FFFB0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .18em;
  margin-bottom: 18px;
}
.subtitle {
  font-size: 14px;
  color: #8FBECB;
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
  flex: 1;
}
.subtitle em { color: #7FFFB0; font-style: normal; font-weight: 600; }

.tagline {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #5FB8D4;
  letter-spacing: .4em;
  padding-top: 14px;
  border-top: 1px dashed #1F4A52;
  margin-top: auto;
}
.tagline strong { color: #7FFFB0; font-weight: 700; }

/* ---------- WISHLIST CARD (green accent, top right) ---------- */
.wishlist-card {
  position: relative;
  padding: 16px 20px;
  background: rgba(127,255,176,.06);
  border: 2px solid #7FFFB0;
  box-shadow: 0 0 20px rgba(127,255,176,.12);
  flex-shrink: 0;
}
.wishlist-card::before, .wishlist-card::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #7FFFB0;
}
.wishlist-card::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.wishlist-card::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.wishlist-card .bracket-tr-small,
.wishlist-card .bracket-bl-small { border-color: #7FFFB0; width: 10px; height: 10px; }

.wishlist-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #7FFFB0;
  letter-spacing: .3em;
  margin-bottom: 10px;
}
.wishlist-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wishlist-info { flex: 1; }
.wishlist-game {
  font-size: 16px;
  color: #B8E8F0;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.wishlist-meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #5FB8D4;
  letter-spacing: .15em;
}
.wishlist-btn {
  background: #7FFFB0;
  color: #051418;
  border: none;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: .15em;
  cursor: pointer;
  font-weight: 800;
  transition: background .2s, box-shadow .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.wishlist-btn:hover, .wishlist-btn:focus-visible {
  background: #A0FFC4;
  box-shadow: 0 0 12px rgba(127,255,176,.4);
  outline: none;
}
.wishlist-btn:active { transform: scale(.97); }
.wishlist-note {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: #5FB8D4;
  letter-spacing: .2em;
  margin-top: 8px;
  opacity: .7;
}

/* ---------- MEDIA CAROUSEL ---------- */
.media {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.media-frame {
  position: relative;
  flex: 1;
  background: #051418;
  border: 2px solid #3FA9C9;
  overflow: hidden;
  min-height: 240px;
  touch-action: pan-y;
}
.media-frame::before, .media-frame::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #3FA9C9;
  z-index: 3;
  pointer-events: none;
}
.media-frame::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.media-frame::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.media-frame .bracket-tr-small,
.media-frame .bracket-bl-small { z-index: 3; pointer-events: none; }

.media-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s;
  opacity: 0;
  pointer-events: none;
}
.media-slide.active { opacity: 1; pointer-events: auto; }
.media-slide-1 { background: linear-gradient(135deg, #0A2A30 0%, #051418 60%, #0A1F25 100%); }
.media-slide-2 { background: radial-gradient(ellipse at 30% 50%, #1A4448 0%, #0A2228 50%, #051418 100%); }
.media-slide-3 { background: linear-gradient(180deg, #0F3038 0%, #051418 80%); }
.media-slide-4 { background: radial-gradient(circle at 70% 30%, #143438 0%, #051418 70%); }

.play-btn {
  width: 70px;
  height: 70px;
  border: 2px solid #7FFFB0;
  background: rgba(127,255,176,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 0 16px rgba(127,255,176,.2);
  position: relative;
}
.play-btn::before, .play-btn::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #7FFFB0;
}
.play-btn::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.play-btn::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.play-btn:hover, .play-btn:focus-visible {
  background: rgba(127,255,176,.25);
  transform: scale(1.05);
  outline: none;
}
.play-icon {
  width: 0;
  height: 0;
  border-left: 14px solid #7FFFB0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.slide-text {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #5FB8D4;
  letter-spacing: .3em;
  text-align: center;
}
.mock-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #3FA9C9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7FFFB0;
}
.slide-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #7FFFB0;
  letter-spacing: .25em;
  background: rgba(8,26,30,.85);
  padding: 4px 10px;
  border: 1px solid #3FA9C9;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(8,26,30,.85);
  border: 2px solid #3FA9C9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  z-index: 4;
  color: #B8E8F0;
}
.arrow:hover, .arrow:focus-visible {
  background: rgba(127,255,176,.15);
  border-color: #7FFFB0;
  color: #7FFFB0;
  outline: none;
}
.arrow-prev { left: 10px; }
.arrow-next { right: 10px; }

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  flex-shrink: 0;
}
.dot-nav {
  width: 28px;
  height: 6px;
  background: #1F4A52;
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  padding: 0;
}
.dot-nav.active {
  background: #7FFFB0;
  box-shadow: 0 0 6px #7FFFB0;
}
.dot-nav:hover, .dot-nav:focus-visible {
  background: #3FA9C9;
  outline: none;
}
.dot-nav.active:hover, .dot-nav.active:focus-visible { background: #7FFFB0; }

/* ---------- SECTIONS ---------- */
.section {
  padding: 56px 40px;
  border-top: 2px solid #1F4A52;
  position: relative;
}
.section-num {
  position: absolute;
  top: 24px;
  right: 40px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #5FB8D4;
  letter-spacing: .25em;
}
.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #7FFFB0;
  letter-spacing: .3em;
  margin-bottom: 12px;
}
.section-title, .section-title-inline {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 20px 0;
  color: #B8E8F0;
  line-height: 1.15;
}
.section-title em, .section-title-inline em {
  color: #7FFFB0;
  font-style: normal;
}
.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: #8FBECB;
  max-width: 720px;
  margin: 0 0 24px 0;
}
.section-text em { color: #7FFFB0; font-style: normal; font-weight: 600; }

/* ---------- PILLARS ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.pillar {
  position: relative;
  padding: 22px 24px;
  background: rgba(15,42,46,.5);
  border: 1px solid #1F4A52;
  transition: background .25s;
}
.pillar::before, .pillar::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #3FA9C9;
  transition: border-color .25s;
}
.pillar::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.pillar::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.pillar:hover { background: rgba(15,42,46,.85); }
.pillar:hover::before, .pillar:hover::after { border-color: #7FFFB0; }
.pillar-id {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #7FFFB0;
  letter-spacing: .25em;
  margin-bottom: 10px;
}
.pillar-title {
  font-size: 15px;
  font-weight: 700;
  color: #B8E8F0;
  margin-bottom: 8px;
  letter-spacing: .06em;
}
.pillar-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #8FBECB;
}

.quote {
  margin: 32px 0 0 0;
  padding: 18px 24px;
  border-left: 3px solid #7FFFB0;
  background: rgba(127,255,176,.04);
}
.quote-text {
  font-size: 16px;
  color: #B8E8F0;
  font-style: italic;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.quote-text strong { color: #7FFFB0; font-style: normal; }

.cta-bar { margin-top: 28px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.cta-primary {
  background: #7FFFB0;
  color: #051418;
  border: none;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: .18em;
  cursor: pointer;
  font-weight: 800;
  transition: background .2s, box-shadow .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  text-decoration: none;
  font-family: inherit;
}
.cta-primary::before, .cta-primary::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #7FFFB0;
}
.cta-primary::before { left: -4px; top: -4px; border-right: none; border-bottom: none; }
.cta-primary::after { right: -4px; bottom: -4px; border-left: none; border-top: none; }
.cta-primary:hover, .cta-primary:focus-visible {
  background: #A0FFC4;
  box-shadow: 0 0 16px rgba(127,255,176,.4);
  outline: none;
}
.cta-primary:active { transform: scale(.98); }
.cta-full { width: 100%; }

/* ---------- STUDIO ---------- */
.studio-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.studio-logo {
  width: 96px;
  height: 96px;
  border: 2px solid #3FA9C9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(15,42,46,.6);
  position: relative;
  flex-direction: column;
  gap: 4px;
}
.studio-logo::before, .studio-logo::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #3FA9C9;
}
.studio-logo::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.studio-logo::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.studio-logo .bracket-tr-small,
.studio-logo .bracket-bl-small { width: 14px; height: 14px; }
.studio-logo-inner {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: #5FB8D4;
  letter-spacing: .2em;
  text-align: center;
  line-height: 1.4;
  padding: 4px;
}
.studio-logo-inner strong {
  display: block;
  color: #7FFFB0;
  font-size: 11px;
  margin-bottom: 4px;
  letter-spacing: .25em;
  font-weight: 700;
}
.studio-title-block { flex: 1; min-width: 200px; }

/* ---------- PUBLISHER ---------- */
.publisher {
  padding: 36px 40px;
  border-top: 2px solid #1F4A52;
  background: rgba(15,42,46,.4);
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.publisher-logo {
  width: 110px;
  height: 70px;
  border: 2px solid #3FA9C9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  background: rgba(15,42,46,.6);
  position: relative;
}
.publisher-logo::before, .publisher-logo::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #3FA9C9;
}
.publisher-logo::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.publisher-logo::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.publisher-logo-text {
  font-size: 11px;
  color: #7FFFB0;
  font-weight: 700;
  letter-spacing: .15em;
}
.publisher-logo-sub {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: #5FB8D4;
  letter-spacing: .2em;
}
.publisher-info { flex: 1; min-width: 280px; }
.publisher-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #7FFFB0;
  letter-spacing: .3em;
  margin-bottom: 6px;
}
.publisher-name {
  font-size: 22px;
  font-weight: 700;
  color: #B8E8F0;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.publisher-text {
  font-size: 13px;
  color: #8FBECB;
  line-height: 1.65;
  max-width: 540px;
}
.publisher-text em { color: #7FFFB0; font-style: normal; font-weight: 600; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.contact-form { display: flex; flex-direction: column; }
.form-input {
  width: 100%;
  background: rgba(15,42,46,.5);
  border: 1px solid #1F4A52;
  color: #B8E8F0;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 12px;
  transition: border-color .2s, background .2s;
  letter-spacing: .02em;
}
.form-input:focus {
  outline: none;
  border-color: #7FFFB0;
  background: rgba(15,42,46,.9);
}
.form-input::placeholder { color: #5FB8D4; opacity: .6; }
.form-textarea { min-height: 110px; resize: vertical; }
.form-status {
  margin-top: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .15em;
  min-height: 18px;
}
.form-status[data-state="success"] { color: #7FFFB0; }
.form-status[data-state="error"] { color: #FF7F7F; }

.info-block {
  padding: 20px;
  background: rgba(15,42,46,.5);
  border: 1px solid #1F4A52;
  position: relative;
  font-size: 14px;
  line-height: 1.9;
}
.info-block::before, .info-block::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #3FA9C9;
}
.info-block::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.info-block::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.info-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #7FFFB0;
  letter-spacing: .25em;
  margin-bottom: 4px;
}
.info-block a {
  color: #B8E8F0;
  text-decoration: none;
  border-bottom: 1px dashed #3FA9C9;
  transition: color .2s, border-color .2s;
}
.info-block a:hover, .info-block a:focus-visible {
  color: #7FFFB0;
  border-color: #7FFFB0;
  outline: none;
}
.info-spacer { margin-top: 14px; }
.info-divider {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #1F4A52;
}

.social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.social-btn {
  width: 44px;
  height: 44px;
  border: 2px solid #3FA9C9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  color: #B8E8F0;
  text-decoration: none;
}
.social-btn:hover, .social-btn:focus-visible {
  border-color: #7FFFB0;
  color: #7FFFB0;
  background: rgba(127,255,176,.08);
  outline: none;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 18px 40px;
  border-top: 2px solid #1F4A52;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #5FB8D4;
  display: flex;
  justify-content: space-between;
  letter-spacing: .2em;
  flex-wrap: wrap;
  gap: 8px;
}
.footer .pulse { color: #7FFFB0; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding: 24px 24px 32px; }
  .section { padding: 48px 24px; }
  .section-num { right: 24px; }
  .publisher { padding: 28px 24px; }
  .footer { padding: 16px 24px; }
  .title { font-size: 48px; }
  .section-title, .section-title-inline { font-size: 30px; }
  .hero-grid { gap: 20px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 720px) {
  .hero {
    padding: 20px 16px 28px;
  }
  .topbar {
    margin-bottom: 20px;
    padding-bottom: 14px;
    font-size: 11px;
  }
  .status { gap: 12px; }
  .hide-mobile { display: none; }

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

  .bracket-frame { padding: 22px 20px; }
  .frame-label { left: 16px; font-size: 10px; }

  .title { font-size: 40px; letter-spacing: .03em; }
  .title-sub { font-size: 16px; letter-spacing: .15em; margin-bottom: 14px; }
  .subtitle { font-size: 13px; margin-bottom: 16px; }
  .tagline { font-size: 11px; letter-spacing: .3em; }

  .wishlist-card { padding: 14px 16px; }
  .wishlist-inner { gap: 12px; }
  .wishlist-game { font-size: 14px; }
  .wishlist-meta { font-size: 10px; }
  .wishlist-btn { padding: 10px 16px; font-size: 11px; }

  .media-frame { min-height: 220px; }
  .play-btn { width: 56px; height: 56px; }
  .play-icon { border-left-width: 12px; border-top-width: 8px; border-bottom-width: 8px; }
  .arrow { width: 36px; height: 36px; }
  .arrow-prev { left: 8px; }
  .arrow-next { right: 8px; }
  .slide-label { font-size: 9px; left: 10px; bottom: 10px; padding: 3px 8px; }

  .section { padding: 40px 16px; }
  .section-num { top: 16px; right: 16px; font-size: 10px; }
  .section-title, .section-title-inline { font-size: 24px; line-height: 1.2; }
  .section-text { font-size: 14px; line-height: 1.7; }

  .pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pillar { padding: 18px 20px; }
  .pillar-title { font-size: 14px; }
  .pillar-desc { font-size: 12px; }

  .quote { padding: 14px 18px; }
  .quote-text { font-size: 14px; }

  .cta-primary {
    padding: 14px 22px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  .studio-header { gap: 16px; margin-bottom: 18px; }
  .studio-logo { width: 72px; height: 72px; }

  .publisher {
    padding: 24px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .publisher-logo { width: 96px; height: 60px; }
  .publisher-name { font-size: 18px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-block { padding: 16px; font-size: 13px; line-height: 1.8; }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
    padding: 14px 16px;
    letter-spacing: .15em;
  }
}

/* ============================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .screen::before { display: none; }
  .dot { animation: none; }
}

/* ============================================
   FOCUS RINGS (a11y, keyboard nav)
   ============================================ */
*:focus-visible {
  outline: 2px solid #7FFFB0;
  outline-offset: 2px;
}
.cta-primary:focus-visible,
.wishlist-btn:focus-visible {
  outline: 2px solid #B8E8F0;
  outline-offset: 4px;
}
