/* Gaming platform theme — dark UI, neon accent, image-driven */
:root {
  --bg-deep: #070a12;
  --bg-panel: #0c1220;
  --bg-elevated: #111a2e;
  --navy: #0a1744;
  --navy-mid: #1e3a8a;
  --accent: #ff2d7a;
  --accent-soft: rgba(255, 45, 122, 0.35);
  --cyan: #22d3ee;
  --white: #f8fafc;
  --text-muted: #94a3b8;
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --shadow-neon: 0 0 28px rgba(255, 45, 122, 0.45);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:active,
  .game-card:hover .game-thumb img {
    transform: none;
  }

  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--bg-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

/* Film grain */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 18, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  background: rgba(7, 10, 18, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-img {
  display: block;
  height: clamp(40px, 5vw, 52px);
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  object-position: left center;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    box-shadow 0.2s ease;
}

.btn-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover .btn-glow {
  opacity: 0.5;
}

.btn:active {
  transform: scale(0.98);
}

.btn-signup {
  background: linear-gradient(135deg, #ff2d7a, #c2186a);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-neon);
}

.btn-signup:hover {
  box-shadow: 0 0 36px rgba(255, 45, 122, 0.65);
}

.btn-primary {
  background: linear-gradient(135deg, #ff2d7a, #db2777);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(255, 45, 122, 0.35);
}

.btn-primary:hover {
  box-shadow: var(--shadow-neon);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  font-size: 0.875rem;
  padding: 0.5rem 1.1rem;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: #fff;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  /* min-height: min(92vh, 900px); */
  display: flex;
  align-items: center;
  /* padding: clamp(4rem, 10vw, 6rem) 0; */
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 10, 18, 0.92) 0%,
    rgba(7, 10, 18, 0.75) 38%,
    rgba(7, 10, 18, 0.45) 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot {
    animation: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 0 40px rgba(255, 45, 122, 0.25);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #fff 0%, #fda4af 40%, #ff2d7a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 45, 122, 0.5));
}

.hero-title-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(248, 250, 252, 0.88);
}

.hero-sub {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 440px;
}

@media (max-width: 380px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-stats li {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card-wrap {
  display: flex;
  justify-content: center;
}

/* Hero right: model + phone with app screenshot */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-width: 0;
}

.hero-phone-showcase {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(35, 25, 55, 0.5) 0%, rgba(7, 10, 18, 0.92) 100%); */
}

.hero-phone-showcase__model {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(70vh, 640px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.hero-phone-showcase__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(7, 10, 18, 0.35) 0%,
    rgba(7, 10, 18, 0.06) 50%,
    rgba(255, 45, 122, 0.1) 100%
  );
  pointer-events: none;
}

.hero-phone-showcase__device {
  position: absolute;
  z-index: 2;
  left: 6%;
  bottom: 10%;
  width: 46%;
  max-width: 200px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
  transform: rotate(-11deg) perspective(900px) rotateY(6deg);
  transform-origin: 50% 80%;
}

.hero-phone-showcase__bezel {
  position: relative;
  padding: 9px 9px 11px;
  border-radius: 28px;
  background: linear-gradient(145deg, #2d2d38 0%, #121218 50%, #0a0a0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-phone-showcase__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  background: #0c0c10;
  border-radius: 0 0 14px 14px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-phone-showcase__screen-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
}

.hero-phone-showcase__screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 959px) {
  .hero-phone-showcase {
    max-width: 380px;
    margin-inline: auto;
  }

  .hero-phone-showcase__model {
    max-height: min(60vh, 520px);
  }

  .hero-phone-showcase__device {
    width: 44%;
    max-width: 175px;
    left: 4%;
    bottom: 8%;
    transform: rotate(-9deg) perspective(800px) rotateY(4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone-showcase__device {
    transform: rotate(-8deg);
  }
}

.bonus-card {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.bonus-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.bonus-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-media-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-deep);
  background: linear-gradient(135deg, #fde047, #f97316);
  border-radius: 999px;
}

.bonus-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.bonus-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.bonus-amount {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
}

.bonus-note {
  margin: 0.65rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.bonus-cta {
  display: block;
  text-align: center;
  padding: 0.65rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 10px;
  background: rgba(255, 45, 122, 0.15);
  border: 1px solid rgba(255, 45, 122, 0.45);
  color: #fda4af;
  transition: background 0.2s ease, color 0.2s ease;
}

.bonus-cta:hover {
  background: rgba(255, 45, 122, 0.28);
  color: var(--white);
}

/* Sections */
.section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.section-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
}

/* Amazing features (reference layout) */
.features-section {
  background: #050a18;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.features-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.75rem;
}

.features-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f8fafc;
}

.features-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94a3b8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  --fc-accent: #94a3b8;
  --fc-accent-mid: #64748b;
  --fc-ripple-1: rgba(148, 163, 184, 0.25);
  --fc-ripple-2: rgba(148, 163, 184, 0.38);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  padding: 1.65rem 1.65rem 1.65rem 1.5rem;
  background: #060a12;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.feature-card--red {
  --fc-accent: #ef4444;
  --fc-accent-mid: #b91c1c;
  --fc-ripple-1: rgba(220, 38, 38, 0.22);
  --fc-ripple-2: rgba(185, 28, 28, 0.42);
}

.feature-card--purple {
  --fc-accent: #c084fc;
  --fc-accent-mid: #7c3aed;
  --fc-ripple-1: rgba(167, 139, 250, 0.22);
  --fc-ripple-2: rgba(124, 58, 237, 0.38);
}

.feature-card--orange {
  --fc-accent: #fb923c;
  --fc-accent-mid: #ea580c;
  --fc-ripple-1: rgba(251, 146, 60, 0.22);
  --fc-ripple-2: rgba(234, 88, 12, 0.38);
}

.feature-card--teal {
  --fc-accent: #2dd4bf;
  --fc-accent-mid: #0d9488;
  --fc-ripple-1: rgba(45, 212, 191, 0.22);
  --fc-ripple-2: rgba(13, 148, 136, 0.38);
}

/* Icon stack: outer ripples → solid ring → dashed inner disc → asset icon */
.feature-card__icon {
  position: relative;
  flex-shrink: 0;
  width: 108px;
  height: 108px;
}

.feature-card__ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.feature-card__ripple--1 {
  inset: 0;
  border: 2px solid var(--fc-ripple-1);
  box-shadow: 0 0 20px var(--fc-ripple-1);
}

.feature-card__ripple--2 {
  inset: 7px;
  border: 3px solid var(--fc-ripple-2);
}

.feature-card__ring-solid {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border-radius: 50%;
  background: linear-gradient(165deg, var(--fc-accent) 0%, var(--fc-accent-mid) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.feature-card__ring-inner {
  position: absolute;
  inset: 22px;
  z-index: 2;
  border-radius: 50%;
  background: #0a1020;
  border: 2px dashed rgba(203, 213, 225, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-accent);
}

.feature-card__icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.feature-card__body {
  min-width: 0;
  text-align: left;
}

.feature-card__name {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
}

.feature-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.feature-card__more:hover {
  gap: 0.5rem;
}

.feature-card__more-text {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.feature-card__more:hover .feature-card__more-text {
  color: #cbd5e1;
}

.feature-card__arrow {
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}

/* Trending */
.trending {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0f1a 100%);
}

.trending-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.trending-head .section-title {
  margin-bottom: 0.2rem;
}

.trending-sub {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.trending-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.trending-row::-webkit-scrollbar {
  height: 8px;
}

.trending-row::-webkit-scrollbar-thumb {
  background: rgba(255, 45, 122, 0.35);
  border-radius: 999px;
}

.game-card {
  flex: 0 0 min(240px, 78vw);
  scroll-snap-align: start;
}

.game-link {
  display: block;
  color: inherit;
}

.game-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.game-card:hover .game-thumb img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 10, 18, 0.85) 100%);
  opacity: 0.85;
  pointer-events: none;
}

.game-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--bg-deep);
  background: linear-gradient(135deg, #fff, #e2e8f0);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 45, 122, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.game-card:hover .game-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.game-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Reveal animation (only when JS runs) */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay {
  transition-delay: 0.12s;
}

/* Cinematic brand block (pre-footer) */
.brand-showcase {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 10vw, 7rem) 1rem clamp(4rem, 11vw, 7.5rem);
  background: #030304;
}

.brand-showcase__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 50% at 50% 8%, rgba(34, 100, 130, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(0, 0, 0, 0.55) 0%, transparent 58%),
    linear-gradient(180deg, #0b0d12 0%, #050506 42%, #020203 100%);
  pointer-events: none;
}

.brand-showcase__grain {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.brand-showcase__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 32%, rgba(0, 0, 0, 0.62) 100%);
}

.brand-showcase__silhouette {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 620px);
  height: min(42vw, 300px);
  max-height: 300px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 55% at 50% 100%, rgba(0, 0, 0, 0.82) 0%, transparent 72%),
    radial-gradient(ellipse 38% 48% at 50% 32%, rgba(25, 55, 85, 0.28) 0%, transparent 68%);
  filter: blur(1.5px);
  opacity: 0.95;
}

.brand-showcase__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12px;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.07) 0 1px,
    transparent 1px 11px
  );
  opacity: 0.65;
}

.brand-showcase__edge--left {
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-showcase__edge--right {
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-showcase__inner {
  position: relative;
  z-index: 3;
}

.brand-showcase__oval-wrap {
  position: relative;
  width: min(360px, 94vw);
  margin: 0 auto 2.25rem;
}

.brand-showcase__oval {
  width: 100%;
  height: auto;
  display: block;
}

.brand-showcase__script {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%) rotate(-3.5deg);
  margin: 0;
  max-width: 78%;
  font-family: "Caveat", cursive;
  font-size: clamp(1.65rem, 4.8vw, 2.4rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.brand-showcase__logo-stage {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin: 0 auto;
  grid-template-areas: "stack";
}

.brand-showcase__logo-stage .brand-showcase__logo-img {
  grid-area: stack;
}

/* Stacked logo.png; blur ramps up toward the bottom (linear gradient masks) */
.brand-showcase__logo-img {
  margin: 0;
  display: block;
  width: min(90vw, 32rem);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Top / upper area: lighter blur */
.brand-showcase__logo-img--sharp {
  z-index: 2;
  filter: blur(2px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0, 0, 0, 0) 78%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0, 0, 0, 0) 78%);
}

/* Bottom area: stronger blur (linear ramp via mask) */
.brand-showcase__logo-img--soft {
  z-index: 1;
  filter: blur(18px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 38%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 38%, #000 100%);
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-bottom .copyright {
    width: 100%;
    text-align: center;
  }

  .footer-bottom .back-top {
    display: inline-block;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-showcase__logo-img--sharp {
    filter: blur(1px);
  }

  .brand-showcase__logo-img--soft {
    filter: blur(7px);
  }
}

.legal-disclaimer {
  background: #030406;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.legal-disclaimer__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-disclaimer__text {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.7;
  color: rgba(148, 163, 184, 0.82);
  text-align: center;
}

@media (min-width: 640px) {
  .legal-disclaimer__text {
    font-size: 0.75rem;
  }
}

/* Footer */
.site-footer {
  text-align: center;
  background: #05070d;
  color: rgba(248, 250, 252, 0.88);
  padding: 1.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.45);
}

.back-top {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.back-top:hover {
  text-decoration: underline;
}

/* Coming soon — marquee + film frame (reference layout) */
.coming-soon {
  position: relative;
  background: #030303;
  overflow: hidden;
}

.coming-soon__grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.coming-soon__film {
  position: relative;
  z-index: 2;
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0 1px,
    transparent 1px 12px
  );
  opacity: 0.55;
}

.coming-soon__film--top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.coming-soon__film--bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.coming-soon__content {
  position: relative;
  z-index: 1;
  padding: 2.25rem 0 2.75rem;
}

.coming-soon__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  opacity: 0.92;
}

.coming-soon__marquee-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  /* gap: clamp(1rem, 3vw, 1.75rem); */
  min-height: 0;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.coming-soon__row--outline,
.coming-soon__row--solid {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  flex-shrink: 0;
}

.coming-soon__row--outline {
  opacity: 0.95;
}

.coming-soon__marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.coming-soon__track {
  display: flex;
  width: max-content;
  animation: coming-soon-scroll 52s linear infinite;
  will-change: transform;
}

.coming-soon__marquee--right .coming-soon__track {
  animation-duration: 38s;
  animation-direction: reverse;
}

@keyframes coming-soon-scroll {
  to {
    transform: translateX(-50%);
  }
}

.coming-soon__seq {
  display: inline-flex;
  flex-shrink: 0;
  align-items: baseline;
  gap: 0.5rem;
  padding-right: 2rem;
}

.coming-soon__phrase {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
}

.coming-soon__word {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  letter-spacing: -0.02em;
  line-height: 0.85;
  font-weight: 400;
}

/* COMING = flat fill, SOON = outline only (both marquee rows) */
.coming-soon__phrase .coming-soon__word:nth-child(1) {
  color: #f8fafc;
  -webkit-text-fill-color: #f8fafc;
  -webkit-text-stroke: 0;

}

.coming-soon__phrase .coming-soon__word:nth-child(2) {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2.25px rgba(255, 255, 255, 0.95);
  text-shadow: none;
}

.coming-soon__word_transparant {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2.25px rgba(255, 255, 255, 0.95);
    text-shadow: none;
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    letter-spacing: -0.02em;
    line-height: 0.85;
    font-weight: 400;
}

.coming-soon__star {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #f8fafc;
  -webkit-text-fill-color: #f8fafc;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.coming-soon__row--solid .coming-soon__star {
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon__track {
    animation: none;
    transform: none;
  }
}

/* Testimonials */
.testimonials {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.testimonials__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonials__sub {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.testimonials__carousel {
  max-width: 38rem;
  margin-inline: auto;
}

.testimonials__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
}

.testimonials__track {
  --n: 3;
  display: flex;
  width: calc(var(--n) * 100%);
  transition: transform 0.68s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track {
    transition: none;
  }
}

.testimonials__slide {
  flex: 0 0 calc(100% / var(--n));
  min-width: 0;
  box-sizing: border-box;
}

/* Desktop: three cards in a row — no sliding */
@media (min-width: 960px) {
  .testimonials__carousel {
    max-width: none;
  }

  .testimonials__viewport {
    overflow: visible;
    border-radius: 0;
  }

  .testimonials__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100% !important;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  /* Slide and card are the same element (blockquote); row flex broke the layout */
  .testimonials__track .testimonial-card.testimonials__slide {
    flex: none;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
  }

  .testimonials__track .testimonial-card__text {
    flex: 1 1 auto;
  }

  .testimonials__dots {
    display: none !important;
  }
}

.testimonials__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonials__dot:hover,
.testimonials__dot:focus-visible {
  background: rgba(255, 45, 122, 0.55);
  outline: none;
}

.testimonials__dot:focus-visible {
  box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 4px var(--cyan);
}

.testimonials__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(255, 45, 122, 0.45);
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.35rem 1.35rem;
  background: linear-gradient(165deg, rgba(17, 26, 46, 0.95) 0%, rgba(12, 18, 32, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), rgba(34, 211, 238, 0.35), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(255, 45, 122, 0.35));
}

.testimonial-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.92);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-card__avatar--1 {
  background: linear-gradient(145deg, rgba(255, 45, 122, 0.35), rgba(30, 58, 138, 0.6));
}

.testimonial-card__avatar--2 {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.25), rgba(30, 58, 138, 0.55));
}

.testimonial-card__avatar--3 {
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.7), rgba(255, 45, 122, 0.28));
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.testimonial-card__name {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
