* {
  box-sizing: border-box;
}

:root {
  --bg: #090909;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f6f6f6;
  --muted: #a8a8a8;
  --line: #2b2b2b;
  --accent: #e91d2d;
  --accent-2: #ff3344;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9,9,9,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.08));
}

.brand-name {
  font-family: "Anton", sans-serif;
  letter-spacing: 1.4px;
  font-size: 20px;
}

.brand-sub {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.7px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--accent-2);
}

.nav-cta {
  border: 1px solid var(--accent);
  padding: 11px 16px;
}

.menu-button {
  display: none;
  color: white;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 10px;
  font-size: 22px;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 35%, rgba(233,29,45,.25), transparent 24%),
    linear-gradient(135deg, #111 0%, #070707 55%, #17070a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 64px;
  padding: 90px 0;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 16px;
}

h1, h2 {
  font-family: "Anton", sans-serif;
  letter-spacing: .8px;
  line-height: .98;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 7vw, 98px);
  max-width: 790px;
}

h1 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.hero-copy > p {
  color: #c9c9c9;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  margin: 26px 0 30px;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 800;
  letter-spacing: .7px;
  border: 1px solid transparent;
  transition: .2s ease;
}

.button-primary {
  background: var(--accent);
  color: white;
}

.button-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: #555;
  background: rgba(255,255,255,.03);
}

.button-secondary:hover {
  border-color: white;
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: #bdbdbd;
  font-size: 13px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.card-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(233,29,45,.27);
  filter: blur(80px);
}

.fake-card {
  width: min(340px, 80vw);
  aspect-ratio: .70;
  position: relative;
  z-index: 2;
  background: linear-gradient(150deg, #262626, #090909 58%, #2d080c);
  border: 7px solid #e7e7e7;
  box-shadow: 0 28px 80px rgba(0,0,0,.58);
  transform: rotate(4deg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fake-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--accent);
  pointer-events: none;
}

.fake-card-top {
  font-size: 11px;
  letter-spacing: 2px;
  z-index: 1;
}

.player-silhouette {
  display: grid;
  place-items: center;
  font-family: "Anton";
  font-size: 170px;
  color: var(--accent);
  text-shadow: 0 0 45px rgba(233,29,45,.5);
}

.fake-card-bottom {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.fake-card-bottom strong {
  font-family: "Anton";
  font-size: 32px;
  letter-spacing: 1px;
}

.fake-card-bottom span {
  color: #aaa;
  font-size: 11px;
  letter-spacing: 2px;
}

.hero-card-label {
  position: relative;
  z-index: 3;
  margin-top: 25px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
}

.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-grid > div {
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.stat-grid > div:last-child {
  border-right: 0;
}

.stat-grid strong {
  display: block;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.stat-grid span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-heading > p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 430px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.platform-card {
  min-height: 230px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  gap: 20px;
  transition: .2s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.platform-icon {
  flex: 0 0 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--accent);
  font-family: "Anton";
  font-size: 25px;
}

.platform-card h3,
.inventory-card h3,
.break-panel h3 {
  margin: 3px 0 9px;
  font-size: 21px;
}

.platform-card p,
.inventory-card p,
.break-panel p,
.about-grid p,
.connect-box p {
  color: var(--muted);
  line-height: 1.65;
}

.platform-card span,
.inventory-card a {
  display: inline-block;
  color: white;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.inventory-card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.inventory-image {
  aspect-ratio: .78;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(233,29,45,.18), transparent),
    #181818;
  color: #6d6d6d;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
}

.inventory-copy {
  padding: 22px;
}

.tag,
.live-pill {
  display: inline-flex;
  padding: 6px 9px;
  background: rgba(233,29,45,.14);
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.breaks-section {
  background:
    linear-gradient(120deg, rgba(233,29,45,.13), transparent 45%),
    #090909;
}

.breaks-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.breaks-grid > div:first-child p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.7;
  margin: 24px 0 30px;
}

.break-panel {
  padding: 35px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
}

.break-panel h3 {
  font-size: 30px;
  margin-top: 22px;
}

.break-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.break-info span {
  border: 1px solid #363636;
  padding: 8px 10px;
  color: #bbb;
  font-size: 11px;
}

.about-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 70px;
  align-items: center;
}

.vault-block {
  min-height: 400px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(233,29,45,.28), transparent 40%),
    #111;
  border: 1px solid var(--line);
  font-family: "Anton";
  font-size: clamp(80px, 10vw, 150px);
  letter-spacing: 6px;
  color: var(--accent);
}

.about-grid p {
  font-size: 17px;
}

.connect-section {
  padding-top: 20px;
}

.connect-box {
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: #121212;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
}

.connect-box h2 {
  font-size: clamp(36px, 4vw, 56px);
  max-width: 760px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 35px 0;
  color: #aaa;
}

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

.footer-wrap strong {
  color: white;
  letter-spacing: 1px;
}

.footer-wrap p {
  margin: 5px 0 0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 18px;
    background: #0c0c0c;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .breaks-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 20px;
  }

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

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid > div:nth-child(2) {
    border-right: 0;
  }

  .section-heading,
  .connect-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-sub {
    display: none;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 70px 0;
  }

  h1 {
    font-size: 52px;
  }

  .section {
    padding: 72px 0;
  }

  .card-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-card {
    padding: 22px;
  }

  .connect-box {
    padding: 28px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}


.logo-showcase {
  position: relative;
  z-index: 2;
  width: min(500px, 92vw);
  display: grid;
  place-items: center;
}

.logo-showcase img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 55px rgba(0,0,0,.65));
}

@media (max-width: 560px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }
}

/* V4 — Real inventory showcase */
.vault-showcase {
  position: relative;
  overflow: hidden;
}
.vault-showcase::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(233,29,45,.12), transparent 66%);
  pointer-events: none;
}
.featured-lead {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}
.vault-card {
  background: linear-gradient(180deg,#161616,#0d0d0d);
  border: 1px solid #2d2d2d;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.vault-card:hover {
  transform: translateY(-6px);
  border-color: #555;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
.vault-photo {
  aspect-ratio: .82;
  overflow: hidden;
  background: #050505;
}
.vault-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.vault-card:hover .vault-photo img { transform: scale(1.025); }
.vault-meta {
  padding: 18px 19px 21px;
  border-top: 1px solid #262626;
}
.vault-meta span {
  color: var(--accent-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.vault-meta h3 {
  margin: 7px 0 0;
  font-size: 20px;
}
.vault-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 25%);
  gap: 16px;
  overflow-x: auto;
  padding: 3px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.vault-scroll .vault-card { scroll-snap-align: start; }
.showcase-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.showcase-cta p {
  color: #777;
  font-size: 11px;
  max-width: 460px;
}
@media (max-width: 800px) {
  .featured-lead {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
  }
  .featured-lead .vault-card {
    min-width: 78vw;
    scroll-snap-align: center;
  }
  .vault-scroll { grid-auto-columns: 64vw; }
}
@media (max-width: 520px) {
  .vault-scroll { grid-auto-columns: 72vw; }
  .vault-meta { padding: 15px; }
}
