/* Interactive Enterprises - hybrid game / product studio */
:root {
  --bg: #060912;
  --bg-elevated: #0c1220;
  --ink: #f1f5f9;
  --muted: #94a3b8;
  --dim: #64748b;
  --cyan: #38bdf8;
  --cyan-2: #7dd3fc;
  --cyan-soft: rgba(56, 189, 248, 0.12);
  --cyan-mid: rgba(56, 189, 248, 0.28);
  --vio: #818cf8;
  --gold: #fbbf24;
  --lime: #b8ff3c;
  --lime-soft: rgba(184, 255, 60, 0.14);
  --pink: #ff4fd8;
  --pink-soft: rgba(255, 79, 216, 0.14);
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(56, 189, 248, 0.32);
  --glass: rgba(12, 18, 32, 0.78);
  --radius: 14px;
  --radius-sm: 9px;
  --nav-h: 4.25rem;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", var(--font);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 90% 50% at 10% -10%, rgba(184, 255, 60, 0.06), transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(255, 79, 216, 0.07), transparent 45%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Studio ambient: HUD grid + dual glow */
.ambience {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambience .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.ambience .orb-a {
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -160px;
  left: 40%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.38), rgba(184, 255, 60, 0.12) 45%, transparent 70%);
  animation: orbDrift 14s ease-in-out infinite;
}
.ambience .orb-b {
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  bottom: 8%;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.28), rgba(129, 140, 248, 0.2) 50%, transparent 70%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}
.ambience .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.045) 2px,
      rgba(0, 0, 0, 0.045) 3px
    );
  background-size: 56px 56px, 56px 56px, 100% 3px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 15%, transparent 78%);
  opacity: 0.9;
}
@keyframes orbDrift {
  0%, 100% { transform: translateX(-50%) translate(0, 0); }
  50% { transform: translateX(-50%) translate(20px, 18px); }
}
.ambience .orb-b {
  animation-name: orbDriftB;
}
@keyframes orbDriftB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, -16px); }
}
main, .site-nav, .nav-drawer, .site-footer {
  position: relative;
  z-index: 1;
}
.site-nav { z-index: 100; }
.nav-drawer { z-index: 99; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}
.container-narrow {
  width: min(720px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Nav */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.site-nav .inner {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.brand img {
  height: 2.35rem;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(184, 255, 60, 0.25)) drop-shadow(0 0 10px rgba(103, 232, 249, 0.2));
}
.brand span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.1;
}
.brand span::after {
  content: "STUDIO";
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--lime);
  text-shadow: 0 0 12px rgba(184, 255, 60, 0.35);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 1100px) {
  .nav-links {
    gap: 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
}
.nav-links a {
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--cyan); }
.nav-cta {
  display: none;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 255, 60, 0.4);
  color: #e8ffb0 !important;
  background: linear-gradient(135deg, rgba(184, 255, 60, 0.14), rgba(56, 189, 248, 0.1));
  box-shadow: 0 0 18px rgba(184, 255, 60, 0.12);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.6);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(2, 6, 23, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem 1.25rem;
}
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-drawer a:last-child { border-bottom: 0; color: var(--cyan); }

@media (min-width: 900px) {
  .brand span { font-size: 0.82rem; letter-spacing: 0.16em; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 5.5rem;
  overflow: hidden;
  background: transparent;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 255, 60, 0.35);
  background: linear-gradient(120deg, rgba(184, 255, 60, 0.08), rgba(56, 189, 248, 0.08));
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cbd5e1;
  box-shadow: 0 0 20px rgba(184, 255, 60, 0.08);
}
.pill .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.hero h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  overflow: visible;
  padding-bottom: 0.08em;
}
.hero h1 strong {
  display: block;
  font-weight: 700;
  line-height: 1.15;
  padding-bottom: 0.06em;
  background: linear-gradient(110deg, #7dd3fc 0%, #b8ff3c 42%, #ff4fd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.lead {
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: #cbd5e1;
  max-width: 34rem;
}
.sub {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 32rem;
  font-size: 0.98rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #d4ff7a, #b8ff3c 40%, #38bdf8 100%);
  color: #07100a;
  box-shadow: 0 10px 30px rgba(184, 255, 60, 0.28), 0 0 24px rgba(56, 189, 248, 0.18);
  font-weight: 800;
}
.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(184, 255, 60, 0.38), 0 0 28px rgba(255, 79, 216, 0.15);
  filter: brightness(1.04);
}
.btn-ghost {
  background: rgba(12, 18, 32, 0.6);
  border-color: rgba(255, 79, 216, 0.35);
  color: #ffc2ef;
}
.btn-ghost:hover {
  border-color: rgba(255, 79, 216, 0.55);
  background: rgba(255, 79, 216, 0.1);
  color: #ffe0f7;
}

/* Floating logo stage (Ortally-ish glow + depth) */
.logo-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 24rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
/* Soft bloom */
.logo-stage::before {
  width: 78%;
  height: 78%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), rgba(129, 140, 248, 0.12) 45%, transparent 70%);
  filter: blur(18px);
  animation: bloomPulse 5.5s ease-in-out infinite;
}
/* Orbit ring */
.logo-stage::after {
  width: 92%;
  height: 92%;
  border: 1px solid rgba(56, 189, 248, 0.18);
  box-shadow:
    0 0 40px rgba(56, 189, 248, 0.12),
    inset 0 0 40px rgba(56, 189, 248, 0.05);
  animation: ringSpin 22s linear infinite;
}
.logo-stage .ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(129, 140, 248, 0.22);
  pointer-events: none;
  z-index: 0;
  animation: ringSpin 36s linear infinite reverse;
}
.logo-stage .ring-2 {
  inset: 14%;
  border-style: solid;
  border-color: rgba(56, 189, 248, 0.1);
  animation-duration: 28s;
}
.logo-float {
  position: relative;
  z-index: 2;
  width: 78%;
  max-width: 22rem;
  transform: translate3d(0, 0, 0) rotate(-1.5deg);
  transform-origin: 50% 55%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  /* CSS fallback; homepage JS drives the bob so OS "reduce motion" cannot kill it */
  animation: logoFloat 5.5s ease-in-out infinite;
}
.logo-float.is-js-driven {
  animation: none !important;
}
.logo-float img {
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
  display: block;
  /* Filter on the img (not the animated wrapper) — avoids Chrome/Safari
     compositing freezes when filter + transform animate on the same node */
  filter:
    drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 28px rgba(56, 189, 248, 0.28));
}
/* subtle shadow disc under logo */
.logo-stage .shadow-disc {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 52%;
  height: 8%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(6px);
  z-index: 1;
  animation: shadowBreathe 5.5s ease-in-out infinite;
}
.logo-stage .shadow-disc.is-js-driven {
  animation: none !important;
}
@keyframes logoFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }
  25% {
    transform: translate3d(0, -16px, 0) rotate(1.2deg) scale(1.025);
  }
  50% {
    transform: translate3d(0, -26px, 0) rotate(2.4deg) scale(1.04);
  }
  75% {
    transform: translate3d(0, -12px, 0) rotate(-0.6deg) scale(1.02);
  }
}
@keyframes shadowBreathe {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.35; transform: translateX(-50%) scaleX(0.82); }
}
@keyframes bloomPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Logo floats only - no mouse interaction */
.logo-stage,
.logo-float {
  pointer-events: none;
  user-select: none;
}
/* Ambient orbs can still respect reduce-motion; hero logo bob is intentional brand motion */
@media (prefers-reduced-motion: reduce) {
  .ambience .orb,
  .ambience .orb-b {
    animation: none !important;
  }
}

/* Fatter content pages */
.content-stack {
  display: grid;
  gap: 1.15rem;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}
.content-stack .glass {
  padding: 1.35rem 1.25rem;
}
.content-stack h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #fff;
}
.content-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.content-stack ul {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.content-stack li + li { margin-top: 0.3rem; }
.steps {
  display: grid;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 52rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
.step {
  padding: 1.35rem 1.25rem;
}
.step .num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.teaser-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .teaser-grid { grid-template-columns: repeat(3, 1fr); }
}
.teaser {
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.teaser:hover {
  border-color: var(--cyan-mid);
  transform: translateY(-2px);
}
.teaser h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.teaser p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}
.teaser .more {
  color: var(--cyan-2);
  font-size: 0.85rem;
  font-weight: 700;
}
.cta-band {
  margin: 1rem 0 3rem;
  padding: 1.75rem 1.35rem;
  text-align: center;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
    var(--glass);
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 1.35rem;
}
.cta-band p {
  margin: 0 auto 1.15rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.cta-band .hero-actions {
  justify-content: center;
  margin-top: 0;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
  max-width: 56rem;
}
.proof {
  padding: 1rem 0.85rem;
  text-align: center;
  flex: 1 1 9.5rem;
  max-width: 12.5rem;
  min-width: 8.5rem;
}
.proof strong {
  display: block;
  color: var(--cyan-2);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.proof span {
  font-size: 0.78rem;
  color: var(--dim);
}

/* Beefed content blocks */
.case-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 800px) {
  .case-grid { grid-template-columns: 1fr 1fr; }
}
.case-card {
  padding: 1.45rem 1.3rem;
  text-align: left;
}
.case-card .label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.55rem;
}
.case-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}
.case-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.case-card p:last-child { margin-bottom: 0; }
.case-card .meta {
  font-size: 0.8rem;
  color: var(--dim);
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  margin-top: 0.85rem;
}
.two-col {
  display: grid;
  gap: 1rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.list-block {
  padding: 1.35rem 1.25rem;
}
.list-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}
.list-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.list-block li + li { margin-top: 0.4rem; }
.stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
  max-width: 48rem;
}
@media (min-width: 700px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); max-width: none; }
}
.stat {
  padding: 1.15rem 0.85rem;
  text-align: center;
}
.stat .big {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cyan-2);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.stat .lbl {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.35;
}
.who-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 700px) {
  .who-grid { grid-template-columns: 1fr 1fr; }
}
.who-item {
  padding: 1.15rem 1.15rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.who-item .ico {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #070b14;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
}
.who-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}
.who-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.feature-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2rem;
  font-size: 0.9rem;
}
.feature-table th,
.feature-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.feature-table th {
  color: var(--cyan-2);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-table td { color: var(--muted); }
.feature-table td:first-child {
  color: #e2e8f0;
  font-weight: 600;
  width: 32%;
}
.section-lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}
.team-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
}
@media (min-width: 800px) {
  .team-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.team-avatar {
  aspect-ratio: 1;
  max-width: 16rem;
  margin: 0 auto;
  border-radius: 1.1rem;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 40% 30%, rgba(56, 189, 248, 0.25), transparent 55%),
    var(--bg-elevated);
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.04em;
  overflow: hidden;
  padding: 0;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-facts {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}
.team-facts .glass {
  padding: 0.85rem 1rem;
}
.team-facts strong {
  display: block;
  color: var(--cyan-2);
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}
.team-facts span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Process rail */
.process-rail {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 700px) {
  .process-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .process-rail { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  padding: 1.25rem 1.1rem;
  position: relative;
}
.process-step .ps-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 0.55rem;
}
.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Sector chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1rem;
  max-width: 52rem;
}
.chip {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 18, 32, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 650;
  font-size: 0.95rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--cyan);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--cyan-2); }
.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}
.faq-item a { color: var(--cyan); }

/* Product module cards */
.module-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 600px) {
  .module-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .module-grid { grid-template-columns: repeat(3, 1fr); }
}
.module-card {
  padding: 1.2rem 1.15rem;
}
.module-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: #fff;
}
.module-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-grid-wide {
  max-width: 52rem;
}
@media (min-width: 800px) {
  .contact-grid-wide {
    grid-template-columns: 1fr 1fr;
  }
}

.prestige {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 255, 60, 0.7);
  border-top: 1px solid rgba(184, 255, 60, 0.12);
  background: linear-gradient(90deg, rgba(255, 79, 216, 0.08), rgba(0, 0, 0, 0.6), rgba(56, 189, 248, 0.08));
  backdrop-filter: blur(8px);
}

.marquee {
  padding: 0.85rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 255, 122, 0.72);
  border-block: 1px solid rgba(184, 255, 60, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 79, 216, 0.08), transparent 30%, transparent 70%, rgba(56, 189, 248, 0.1)),
    #030712;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: linear-gradient(180deg, #030712 0%, #020617 100%);
  border-block: 1px solid var(--line);
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 0.65rem;
  text-shadow: 0 0 18px rgba(184, 255, 60, 0.25);
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0.85rem auto 0;
  max-width: 38rem;
  color: var(--muted);
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.focus-card:hover,
.why-card:hover,
.product-card:hover {
  box-shadow: var(--shadow), 0 0 0 1px rgba(184, 255, 60, 0.18);
  border-color: rgba(184, 255, 60, 0.28);
}

.grid-focus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .grid-focus { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .grid-focus { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.focus-card {
  padding: 1.15rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: #e2e8f0;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.focus-card:hover {
  border-color: var(--cyan-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.grid-why {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .grid-why { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-why { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  padding: 1.4rem 1.25rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.why-card:hover {
  border-color: var(--cyan-mid);
  transform: translateY(-2px);
}
.why-card .num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 0.55rem;
}
.why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 650;
}
.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 2rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(14, 116, 144, 0.22), transparent 60%),
    var(--bg);
  text-align: center;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0.6rem 0 0;
  color: rgba(212, 255, 122, 0.75);
  font-size: 0.9rem;
}

.prose {
  padding: 1.5rem 0 4rem;
}
.prose .glass {
  padding: 1.5rem;
}
@media (min-width: 700px) {
  .prose .glass { padding: 2rem; }
}
.prose h2, .prose h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: #fff;
}
.prose p, .prose li {
  font-size: 0.95rem;
  color: #cbd5e1;
}
.prose .block + .block { margin-top: 1.5rem; }
.prose ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

/* Team */
.team-card {
  padding: 1.75rem 1.35rem;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.team-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
}
.team-card .role {
  margin: 0.35rem 0 1.25rem;
  color: var(--cyan);
  font-weight: 650;
}
.team-card p {
  margin: 0 0 1rem;
  color: #cbd5e1;
  font-size: 0.98rem;
}
.team-card p:last-child { margin-bottom: 0; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.contact-card {
  padding: 1.35rem 1.25rem;
}
.contact-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}
.contact-card a {
  color: var(--cyan);
  font-weight: 700;
  word-break: break-word;
}
.contact-card a:hover { text-decoration: underline; }
.contact-card p, .contact-card li {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.contact-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

/* Products (hidden showcase) */
.products-hero {
  padding: calc(var(--nav-h) + 2.25rem) 0 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(184, 255, 60, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 50%, rgba(255, 79, 216, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 60%, rgba(56, 189, 248, 0.1), transparent 50%),
    var(--bg);
}
.products-hero .pill { margin-bottom: 0.85rem; }
.products-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  letter-spacing: -0.02em;
}
.products-hero p {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  color: var(--muted);
}
.product-grid {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0 3.5rem;
}
@media (min-width: 800px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.product-card {
  position: relative;
  overflow: visible;
  padding: 1.6rem 1.35rem 1.45rem;
  padding-right: 6.75rem; /* room for logo on the right */
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.product-card > h2,
.product-card > .tagline,
.product-card > .desc,
.product-card > .product-boast,
.product-card > .product-badge,
.product-card > .product-badge-row,
.product-card > .product-points,
.product-card > .list-block,
.product-card > .btn {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.product-card .product-featured-inner h2,
.product-card .product-featured-inner .tagline,
.product-card .product-featured-inner .desc,
.product-card .product-featured-inner .product-boast {
  padding-right: 0.25rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.product-logo {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  z-index: 2;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 1.1rem;
  object-fit: cover;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  background: rgba(15, 23, 42, 0.65);
}
.product-card.featured {
  /* Logo sits in-flow in the left column — don't reserve absolute right gutter
     (that was overlapping / clipping the feature list on the right). */
  padding-right: 1.35rem;
}
.product-card.featured .product-logo {
  position: relative;
  top: auto;
  right: auto;
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 1.25rem;
  margin: 0 0 0.85rem;
}
.product-card.ainuze .product-logo {
  object-fit: contain;
  padding: 0.45rem;
  background: #0b1220;
}
@media (max-width: 520px) {
  .product-card {
    padding-right: 5.5rem;
  }
  .product-logo {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 0.95rem;
    top: 1.15rem;
    right: 1.15rem;
  }
  .product-card.featured {
    padding-right: 1.15rem;
  }
  .product-card.featured .product-logo {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.product-card::before {
  content: "";
  position: absolute;
  inset: auto -20% 40% -20%;
  height: 60%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 65%);
  pointer-events: none;
}
.product-card.ortally::before {
  background: radial-gradient(circle, rgba(129, 140, 248, 0.18), transparent 65%);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-mid);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.product-card.oddjobs { --accent: #38bdf8; }
.product-card.ortally { --accent: #a78bfa; }
.product-card.nudjz { --accent: #fb7185; }
.product-card.mtn { --accent: #22d3ee; }
.product-card.shtfalert { --accent: #f59e0b; }
.product-card.gohuntthis { --accent: #34d399; }
.product-card.aetherskill { --accent: #a78bfa; }
.product-card.ezishare { --accent: #38bdf8; }
.product-card.mtn::before {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 65%);
}
.product-card.mtn .product-badge {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.12);
}
.product-card.shtfalert::before {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 65%);
}
.product-card.shtfalert .product-badge {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.12);
}
.product-card.gohuntthis::before {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 65%);
}
.product-card.gohuntthis .product-badge {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
}
.product-card.aetherskill::before {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 65%);
}
.product-card.aetherskill .product-badge {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.12);
}
.product-card.ezishare::before {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 65%);
}
.product-card.ezishare .product-badge {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.12);
}
/* Ainuze: lime accent only — body copy stays high-contrast slate/white */
.product-card.ainuze {
  --accent: #b8f04a;
  background: linear-gradient(165deg, rgba(18, 22, 16, 0.92), rgba(8, 10, 12, 0.96));
  border-color: rgba(184, 240, 74, 0.28);
}
.product-card.ainuze::before {
  background: radial-gradient(circle at 30% 20%, rgba(184, 240, 74, 0.12), transparent 62%);
  inset: -10% -20% 30% -20%;
  height: 55%;
}
.product-card.ainuze:hover {
  border-color: rgba(184, 240, 74, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(184, 240, 74, 0.12);
}
.product-card.ainuze .product-badge {
  color: #e8ffb0;
  border-color: rgba(184, 240, 74, 0.4);
  background: rgba(184, 240, 74, 0.1);
}
.product-card.ainuze h2 {
  color: #f8fafc;
}
.product-card.ainuze .tagline {
  color: #d4f28a; /* soft lime on dark — still readable */
}
.product-card.ainuze .desc {
  color: #e2e8f0;
}
.product-card.ainuze .product-points li {
  color: #cbd5e1;
}
.product-card.ainuze .product-points li::before {
  background: #b8f04a;
  box-shadow: 0 0 8px rgba(184, 240, 74, 0.55);
}
.product-card.ainuze .list-block h3 {
  color: #e8ffb0 !important;
}
.product-card.ainuze .list-block ul {
  color: #cbd5e1;
}
.product-card.ainuze .btn-primary {
  background: #b8f04a;
  color: #0a1200;
  border-color: #b8f04a;
  font-weight: 750;
}
.product-card.ainuze .btn-primary:hover {
  filter: brightness(1.06);
  color: #0a1200;
}
.product-card.nudjz::before {
  background: radial-gradient(circle, rgba(251, 113, 133, 0.2), transparent 65%);
}
.product-card.featured {
  border-color: rgba(251, 113, 133, 0.45);
  box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.15), 0 24px 60px rgba(80, 20, 50, 0.35);
}
@media (min-width: 800px) {
  .product-card.featured {
    grid-column: 1 / -1;
  }
  .product-card.featured .product-featured-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem 2rem;
    align-items: start;
  }
}
.product-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, var(--cyan));
  border: 1px solid rgba(103, 232, 249, 0.35);
  background: rgba(103, 232, 249, 0.1);
  margin-bottom: 1rem;
}
.product-card.ortally .product-badge {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.12);
}
.product-card.nudjz .product-badge {
  border-color: rgba(251, 113, 133, 0.45);
  background: rgba(251, 113, 133, 0.14);
}
.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.product-badge-row .product-badge { margin-bottom: 0; }
.product-badge.live-new {
  color: #fde68a;
  border-color: rgba(253, 230, 138, 0.45);
  background: rgba(253, 230, 138, 0.12);
}
.product-boast {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(251, 113, 133, 0.3);
  background: linear-gradient(120deg, rgba(251, 113, 133, 0.12), rgba(192, 132, 252, 0.1));
  color: #fce7f3;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}
.product-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.product-card .tagline {
  margin: 0.4rem 0 1rem;
  color: var(--accent, var(--cyan));
  font-weight: 650;
  font-size: 0.95rem;
}
.product-card .desc {
  margin: 0 0 1.15rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  flex: 1;
}
.product-points {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.product-points li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.product-points li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent, var(--cyan));
  box-shadow: 0 0 8px var(--accent, var(--cyan));
}
.product-card .btn { width: 100%; }
@media (min-width: 500px) {
  .product-card .btn { width: auto; align-self: flex-start; }
}

.products-foot {
  text-align: center;
  padding-bottom: 3.5rem;
  color: var(--dim);
  font-size: 0.88rem;
}
.products-foot a { color: var(--cyan); }

/* Footer */
.site-footer {
  padding: 1.75rem 1rem 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  color: var(--dim);
}
.site-footer a {
  color: var(--muted);
  margin: 0 0.35rem;
}
.site-footer a:hover { color: var(--cyan); }
.site-footer .co {
  margin-top: 0.45rem;
}

/* Utilities */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* -- Cookie consent banner (interactiveenterpriseslimited.com � GA4) -- */
#ie-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99990;
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(7, 11, 20, 0.99));
  border-top: 1px solid var(--line-strong, rgba(56, 189, 248, 0.28));
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.45);
  color: var(--ink, #f1f5f9);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  font-family: var(--font, system-ui, sans-serif);
}
#ie-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
#ie-cookie-banner.is-leaving {
  transform: translateY(110%);
  opacity: 0;
}
#ie-cookie-banner[hidden] {
  display: none !important;
}
.ie-cookie-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}
.ie-cookie-copy {
  flex: 1 1 18rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted, #94a3b8);
}
.ie-cookie-copy strong {
  color: var(--ink, #f1f5f9);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.ie-cookie-copy span strong {
  font-size: inherit;
  color: var(--cyan-2, #7dd3fc);
  font-weight: 600;
}
.ie-cookie-copy a {
  color: var(--cyan, #38bdf8);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.8125rem;
  width: fit-content;
}
.ie-cookie-copy a:hover {
  color: var(--cyan-2, #7dd3fc);
}
.ie-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.ie-cookie-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.ie-cookie-btn:active {
  transform: scale(0.98);
}
.ie-cookie-btn--primary {
  background: var(--cyan, #38bdf8);
  color: #0c1220;
}
.ie-cookie-btn--primary:hover {
  background: var(--cyan-2, #7dd3fc);
}
.ie-cookie-btn--ghost {
  background: transparent;
  color: var(--ink, #f1f5f9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}
.ie-cookie-btn--ghost:hover {
  border-color: var(--cyan, #38bdf8);
  background: rgba(56, 189, 248, 0.08);
}
@media (max-width: 560px) {
  .ie-cookie-actions {
    width: 100%;
  }
  .ie-cookie-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* -- Live Products coverflow showcase -- */
.showcase {
  position: relative;
  margin: 0.5rem 0 2rem;
  padding: 0.25rem 0 0.5rem;
}
.showcase-head {
  text-align: center;
  margin-bottom: 1rem;
}
.showcase-head .kicker { margin-bottom: 0.35rem; }
.showcase-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.45rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}
.showcase-head p {
  margin: 0.55rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.showcase-stage {
  position: relative;
  height: 420px; /* JS raises this to fit the active card */
  perspective: 1200px;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  transition: height 0.35s ease;
}
.showcase-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.showcase-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86vw, 340px);
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(165deg, rgba(18, 24, 38, 0.96), rgba(8, 12, 22, 0.98));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  transform: translate(-50%, -50%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}
.showcase-card::before {
  content: "";
  position: absolute;
  inset: -30% -20% 40% -20%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent, #22d3ee) 28%, transparent), transparent 68%);
  pointer-events: none;
}
.showcase-card.is-active {
  border-color: color-mix(in srgb, var(--accent, #22d3ee) 55%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent, #22d3ee) 25%, transparent),
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 40px color-mix(in srgb, var(--accent, #22d3ee) 18%, transparent);
  cursor: default;
}
.showcase-card.is-far {
  pointer-events: none;
}
.showcase-card img {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: rgba(15, 23, 42, 0.7);
  position: relative;
  z-index: 1;
}
.showcase-card .sc-badge {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, var(--cyan));
  border: 1px solid color-mix(in srgb, var(--accent, #22d3ee) 40%, transparent);
  background: color-mix(in srgb, var(--accent, #22d3ee) 12%, transparent);
  position: relative;
  z-index: 1;
}
.showcase-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.28rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #f8fafc;
  position: relative;
  z-index: 1;
}
.showcase-card .sc-tag {
  margin: 0;
  color: var(--accent, var(--cyan));
  font-weight: 650;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}
.showcase-card .sc-desc {
  margin: 0.2rem 0 0;
  color: #cbd5e1;
  font-size: 0.86rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.showcase-card .sc-cta {
  position: relative;
  z-index: 1;
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 750;
  color: #0b1020;
  background: var(--accent, var(--cyan));
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent, #22d3ee) 35%, transparent);
}
.showcase-card .sc-cta:hover { filter: brightness(1.06); }
.showcase-card:not(.is-active) .sc-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}
.showcase-card.is-active .sc-cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s, filter 0.2s ease;
}
.showcase-nav {
  position: absolute;
  top: 50%;
  z-index: 20;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.75);
  color: #e2e8f0;
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.showcase-nav:hover {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
}
.showcase-nav:active { transform: translateY(-50%) scale(0.96); }
.showcase-nav.prev { left: max(0.25rem, calc(50% - min(48vw, 210px) - 2.8rem)); }
.showcase-nav.next { right: max(0.25rem, calc(50% - min(48vw, 210px) - 2.8rem)); }
.showcase-nav svg { width: 1.1rem; height: 1.1rem; }
@media (max-width: 640px) {
  .showcase-stage { height: 440px; }
  .showcase-card {
    width: min(88vw, 320px);
    padding: 1rem 1rem 1.1rem;
  }
  .showcase-nav {
    width: 2.35rem;
    height: 2.35rem;
  }
  .showcase-nav.prev { left: 0.15rem; }
  .showcase-nav.next { right: 0.15rem; }
}
.showcase-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0 0.5rem;
}
.showcase-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.showcase-dot.is-active {
  width: 1.35rem;
  background: var(--accent, var(--cyan));
}
.showcase-status {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.showcase-status strong { color: var(--muted); font-weight: 700; }

/* Pwnpet product accent */
.product-card.pwnpet { --accent: #b8ff3c; }
.product-card.pwnpet::before {
  background: radial-gradient(circle, rgba(184, 255, 60, 0.2), transparent 65%);
}
.product-card.pwnpet .product-badge {
  border-color: rgba(184, 255, 60, 0.45);
  background: rgba(184, 255, 60, 0.12);
  color: #e8ffb0;
}
.product-card.pwnpet.featured {
  border-color: rgba(184, 255, 60, 0.45);
  box-shadow: 0 0 0 1px rgba(184, 255, 60, 0.15), 0 24px 60px rgba(40, 80, 10, 0.35);
}
.product-card.pwnpet .product-boast {
  border-color: rgba(255, 79, 216, 0.35);
  background: linear-gradient(120deg, rgba(184, 255, 60, 0.12), rgba(255, 79, 216, 0.1));
  color: #f5ffe0;
}
.product-card.pwnpet .product-logo {
  object-fit: contain;
  padding: 0.2rem;
  background: #0b1020;
}
.product-badge.hot-new {
  color: #ffd6f5;
  border-color: rgba(255, 79, 216, 0.5);
  background: rgba(255, 79, 216, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .showcase-card {
    transition: opacity 0.2s ease, filter 0.2s ease !important;
  }
}
