/* =====================================================
   CASTER // VALORANT — high-end visual design
   Palette: signature red, off-white, dark navy
   ===================================================== */

:root {
  --red: #FF4655;
  --red-dark: #BD3944;
  --navy: #0F1923;
  --navy-2: #1A2530;
  --ink: #181A1F;
  --white: #ECE8E1;
  --paper: #F5F2EB;
  --muted: #8B96A3;
  --line: rgba(255,70,85,.15);

  --f-display: 'Anton', 'Oswald', 'Barlow Condensed', sans-serif;
  --f-display-vn: 'Oswald', 'Barlow Condensed', sans-serif;
  --f-heading: 'Barlow Condensed', 'Oswald', sans-serif;
  --f-body: 'Be Vietnam Pro', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --shadow-card: 0 18px 40px -20px rgba(255,70,85,.35),
                 0 6px 14px -8px rgba(15,25,35,.4);
  --shadow-deep: 0 30px 60px -30px rgba(0,0,0,.55);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--navy);
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; }

.accent { color: var(--red); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  --bg: transparent;
  --fg: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--fg);
  border: none;
  cursor: pointer;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn span { transition: transform .25s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn__icon {
  width: 16px; height: 16px;
  margin-right: -2px;
  flex-shrink: 0;
}

.btn--primary { --bg: var(--red); --fg: var(--white); }
.btn--primary:hover { --bg: #ff5b67; }

.btn--ghost {
  --bg: transparent; --fg: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(236,232,225,.4);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--white); }

.btn--live {
  --bg: rgba(255,70,85,.12);
  --fg: var(--red);
  padding: 10px 16px;
  font-size: 11px;
  box-shadow: inset 0 0 0 1px rgba(255,70,85,.35);
}
.btn--live:hover { --bg: rgba(255,70,85,.2); }

.btn--buy {
  --bg: var(--navy);
  --fg: var(--white);
  padding: 11px 16px;
  font-size: 11px;
  box-shadow: inset 0 0 0 1.5px var(--navy);
}
.btn--buy:hover { --bg: var(--red); box-shadow: inset 0 0 0 1.5px var(--red); }

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,70,85,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,70,85,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,70,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,70,85,0); }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,25,35,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236,232,225,.06);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: .1em;
}
.logo__mark {
  width: 18px; height: 18px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}
.logo__dot { color: var(--red); }

.nav__links {
  display: flex; gap: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
}
.nav__links a {
  position: relative;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--red);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 800px) {
  .nav__links { display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,70,85,.10), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,70,85,.06), transparent 50%),
    var(--navy);
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(236,232,225,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,232,225,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero__corner {
  position: absolute; width: 80px; height: 80px;
  border: 2px solid var(--red);
}
.hero__corner--tr { top: 110px; right: 32px; border-left: none; border-bottom: none; }
.hero__corner--bl { bottom: 32px; left: 32px; border-right: none; border-top: none; }

.hero__inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 960px) {
  .hero__layout { grid-template-columns: 1fr; gap: 40px; }
}

.hero__meta {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--red);
  background: rgba(255,70,85,.08);
  box-shadow: inset 0 0 0 1px rgba(255,70,85,.3);
}
.tag--mono { color: var(--muted); background: transparent; box-shadow: inset 0 0 0 1px rgba(139,150,163,.25); }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero__sub {
  max-width: 520px;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ===== Hero visual / character ===== */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__visual-bg {
  position: absolute;
  width: 80%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  background: radial-gradient(circle, rgba(255,70,85,.45), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.08); opacity: 1; }
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,70,85,.05) 0%, rgba(15,25,35,.6) 100%),
    repeating-linear-gradient(0deg, rgba(255,70,85,.08) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(255,70,85,.08) 0 1px, transparent 1px 60px),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  box-shadow: 0 30px 80px -20px rgba(255,70,85,.45);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.frame-corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--red);
  z-index: 3;
}
.frame-corner--tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.frame-corner--tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.frame-corner--bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.frame-corner--br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.hero__character {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.55))
          drop-shadow(0 0 20px rgba(255,70,85,.25));
}

.hero__scanlines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.18) 1px, transparent 1px);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
  opacity: .6;
}

.hero__id {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  display: flex; gap: 28px;
  color: var(--red);
  letter-spacing: .14em;
}
.hero__id .mono::before {
  content: '> ';
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero__visual-frame { max-width: 360px; }
}

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(236,232,225,.1);
  padding-top: 32px;
  max-width: 720px;
}
.stat {
  border-right: 1px solid rgba(236,232,225,.08);
  padding-right: 24px;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--f-display);
  font-size: 44px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
}
@media (max-width: 600px) {
  .hero__stats { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat { border-right: none; }
}

/* =====================================================
   SECTION HEADS
   ===================================================== */
.section-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.section-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--red);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}
.section-line {
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
}
.section-head--light .section-title { color: var(--navy); }
.section-head--light .section-num { color: var(--red); }
.section-head--light .section-line {
  background: linear-gradient(to right, var(--red), transparent);
}
.section-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 56px;
}
.section-sub--light { color: #6b7280; }

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  padding: 140px 0;
  position: relative;
  background: var(--navy);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; }
}

.about__bio p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 18px;
}
.about__bio .lead {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.about__bio b { color: var(--white); font-weight: 600; }

.about__card {
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  padding: 28px;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: inset 0 0 0 1px rgba(255,70,85,.15);
}
.about__card::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  height: 1px;
  background: var(--red);
}
.about__card-head {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 28px;
  padding-top: 8px;
}
.info { list-style: none; }
.info li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(236,232,225,.1);
  font-size: 14px;
}
.info li:last-child { border-bottom: none; }
.info span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
}
.info b {
  font-family: var(--f-heading);
  color: var(--white);
  font-weight: 600;
  letter-spacing: .02em;
}

/* =====================================================
   SCHEDULE
   ===================================================== */
.schedule {
  padding: 140px 0;
  background: var(--navy);
  position: relative;
}
.schedule::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,70,85,.4), transparent);
}

.sched {
  display: flex; flex-direction: column;
  gap: 8px;
}
.sched__row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: var(--navy-2);
  border-left: 3px solid transparent;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.sched__row:hover {
  border-left-color: var(--red);
  transform: translateX(6px);
  background: #1f2c39;
}
.sched__row--live {
  border-left-color: var(--red);
  background: linear-gradient(to right, rgba(255,70,85,.08), var(--navy-2) 30%);
}

.sched__day { display: flex; flex-direction: column; gap: 4px; }
.sched__day .dow {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: .14em;
}
.sched__day .date {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--white);
}

.sched__title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sched__time, .sched__platform {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
}
.sched__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--red);
}
.status--up { color: var(--muted); }

@media (max-width: 800px) {
  .sched__row {
    grid-template-columns: 80px 1fr;
    grid-template-areas: 'day title' 'day meta' 'day status';
    gap: 12px;
  }
  .sched__day { grid-area: day; }
  .sched__title { grid-area: title; }
  .sched__time { grid-area: meta; }
  .sched__platform { display: none; }
  .sched__status { grid-area: status; }
}

/* =====================================================
   REVIEWS / PRODUCTS
   ===================================================== */
.reviews {
  padding: 140px 0;
  background: var(--paper);
  color: var(--navy);
  position: relative;
}
.reviews .section-title { color: var(--navy); }

/* ===== FILTERS ===== */
.filters {
  background: var(--white);
  padding: 26px 28px;
  margin-bottom: 32px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 12px 30px -20px rgba(15,25,35,.25);
  border: 1px solid rgba(15,25,35,.06);
}

.filters__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px dashed rgba(15,25,35,.12);
}

.filters__search {
  position: relative;
  display: flex; align-items: center;
  background: var(--paper);
  padding: 12px 16px;
  box-shadow: inset 0 0 0 1.5px transparent;
  transition: box-shadow .2s var(--ease);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.filters__search:focus-within {
  box-shadow: inset 0 0 0 1.5px var(--red);
  background: #fff;
}
.filters__search svg {
  width: 18px; height: 18px;
  color: #6b7280;
  flex-shrink: 0;
  margin-right: 12px;
}
.filters__search input {
  flex: 1;
  border: none; outline: none; background: transparent;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 4px 0;
  letter-spacing: .005em;
  min-width: 0;
}
.filters__search input::placeholder { color: #9aa3ad; }
.filters__clear {
  display: none;
  background: none; border: none;
  cursor: pointer;
  color: #6b7280;
  font-size: 14px;
  padding: 4px 8px;
  transition: color .2s var(--ease);
}
.filters__clear:hover { color: var(--red); }
.filters__search.has-value .filters__clear { display: block; }

.filters__result {
  display: flex; align-items: center; gap: 8px;
  color: #6b7280;
}
.filters__result .mono { color: #9aa3ad; font-size: 11px; }
.filters__result strong {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  letter-spacing: .02em;
}

.filters__group {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding: 10px 0;
}
.filters__group + .filters__group {
  border-top: 1px dashed rgba(15,25,35,.08);
  padding-top: 16px;
  margin-top: 6px;
}
.filters__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--red);
  padding-top: 9px;
}

.chips {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 8px 16px;
  background: var(--paper);
  color: var(--navy);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.chip:hover {
  background: #fff;
  border-color: rgba(255,70,85,.4);
  transform: translateY(-1px);
}
.chip.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 12px -4px rgba(255,70,85,.5);
}
.chip.is-active:hover { background: var(--red-dark); border-color: var(--red-dark); }

@media (max-width: 700px) {
  .filters { padding: 20px; }
  .filters__top { grid-template-columns: 1fr; }
  .filters__result { justify-content: flex-end; }
  .filters__group { grid-template-columns: 1fr; gap: 8px; }
  .filters__label { padding-top: 0; }
}

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  margin-top: 12px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.no-results__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
}
.no-results svg {
  width: 56px; height: 56px;
  color: var(--red);
  opacity: .6;
}
.no-results h3 {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--navy);
  letter-spacing: .03em;
  margin-top: 4px;
}
.no-results p { color: #6b7280; margin-bottom: 14px; }

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.card { max-width: 460px; width: 100%; }
.card.is-hidden { display: none; }

.card {
  background: var(--white);
  display: flex; flex-direction: column;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 2px 0 rgba(15,25,35,.04);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card__media {
  position: relative;
  height: 200px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,70,85,.12), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100% 4px;
  pointer-events: none;
}
.card__placeholder {
  font-size: 84px;
  filter: drop-shadow(0 8px 24px rgba(255,70,85,.4));
}
.card__tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--white);
  background: var(--red);
  padding: 5px 10px;
  z-index: 2;
}

.card__body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.card__meta {
  display: flex; justify-content: space-between; align-items: center;
}
.card__meta .mono { color: #9aa3ad; }
.rating {
  color: var(--red);
  font-size: 13px;
  letter-spacing: .04em;
}
.rating small { color: #6b7280; margin-left: 4px; }

.card__title {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}
.card__desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.55;
  flex: 1;
}
.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px dashed rgba(15,25,35,.12);
}
.price {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--red);
  letter-spacing: .02em;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: 140px 0;
  background: var(--navy);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--red);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

.contact__title {
  font-family: var(--f-display-vn);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 16px 0 24px;
}
.contact__sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 380px;
  margin-bottom: 32px;
}

.socials {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(236,232,225,.1);
}
.social {
  --brand: var(--red);
  display: grid;
  grid-template-columns: 52px 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid rgba(236,232,225,.1);
  transition: padding .3s var(--ease), background .3s var(--ease);
  position: relative;
}
.social::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--brand);
  transition: width .3s var(--ease);
}
.social:hover {
  padding-left: 24px;
  background: linear-gradient(to right, rgba(255,70,85,.04), transparent 60%);
}
.social:hover::before { width: 3px; }

/* Brand colors */
.social--twitch  { --brand: #9146FF; }
.social--youtube { --brand: #FF0000; }
.social--tiktok  { --brand: #25F4EE; }
.social--x       { --brand: #ECE8E1; }
.social--discord { --brand: #5865F2; }

.social__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(236,232,225,.04);
  color: var(--muted);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.social__icon svg {
  width: 22px; height: 22px;
}
.social:hover .social__icon {
  background: var(--brand);
  color: #0a121b;
  transform: scale(1.08);
}
.social--x:hover .social__icon { color: var(--navy); }

.social__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--red);
  transition: color .3s var(--ease);
}
.social:hover .social__label { color: var(--brand); }

.social__handle {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: .02em;
  color: var(--white);
}
.social__arrow {
  font-size: 22px;
  color: var(--muted);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.social:hover .social__arrow {
  color: var(--brand);
  transform: translate(4px, -4px);
}

@media (max-width: 600px) {
  .social {
    grid-template-columns: 44px 1fr auto;
    gap: 16px;
  }
  .social__label { display: none; }
  .social__handle { font-size: 20px; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 28px 0;
  background: #0a121b;
  border-top: 1px solid rgba(236,232,225,.06);
}
.footer__inner {
  display: flex; justify-content: space-between;
  color: var(--muted);
}
@media (max-width: 600px) {
  .footer__inner { flex-direction: column; gap: 8px; align-items: center; }
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
