/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* Global mobile overflow prevention */
section, header, footer {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-hot);
  transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 13px 28px; font-size: 0.75rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}

.nav-burger span {
  height: 2px;
  background: var(--white);
  width: 100%;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

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

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  max-width: none;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  /* Flat 70% black scrim keeps the video at ~30% visibility, with extra
     darkening toward the bottom so the hero text stays legible. */
  background: linear-gradient(180deg, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.78) 65%, rgba(10,9,8,0.97) 100%);
}

.hero-slash-mask {
  position: absolute;
  top: 0;
  right: 8%;
  width: 26vw;
  min-width: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(240,27,0,0.5) 0%, rgba(61,0,16,0.15) 70%, transparent 100%);
  transform: skewX(-13deg);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 160px 32px 96px;
}

.hero-title {
  margin-bottom: 28px;
}

.hero-line {
  display: block;
  font-size: clamp(5.5rem, 17vw, 13.5rem);
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-line-accent {
  background: linear-gradient(180deg, var(--red-hot) 0%, var(--maroon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-top: -0.12em;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  color: var(--white);
  opacity: 0.85;
  max-width: 50ch;
  margin-bottom: 44px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-dim);
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--red-hot), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll-cue { display: none; }
  .hero-content { padding-top: 120px; padding-bottom: 56px; padding-left: 18px; padding-right: 18px; }
  .hero-line { font-size: clamp(3.2rem, 18vw, 5.5rem); }
}

/* ---------- CROSS-CUT BREAK (bright section) ---------- */
.break-light {
  background: var(--cream);
  padding: 110px 0;
  position: relative;
  transition: background 0.4s ease;
}

.break-light.is-subtle {
  background: #2A2624;
}

.break-light.is-subtle .break-statement { color: var(--white); }
.break-light.is-subtle .break-accent { color: var(--red-hot); }

.break-statement {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  color: var(--ink);
  max-width: 1100px;
  letter-spacing: 0.005em;
  transition: color 0.4s ease;
}

.break-accent {
  color: var(--red-deep);
  transition: color 0.4s ease;
}

.break-toggle {
  position: absolute;
  bottom: 16px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-dim);
  border: 1px solid currentColor;
  padding: 6px 12px;
  border-radius: 2px;
  opacity: 0.6;
}

.break-toggle:hover { opacity: 1; }

@media (max-width: 768px) {
  .break-light { padding: 72px 0; }
}

/* ---------- SLASH DIVIDER (SVG version) ---------- */
.slash-divider svg.slash-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--steel);
  font-size: 1.05rem;
}

/* ---------- WHO WE FEATURE ---------- */
.feature-who {
  background: var(--black-soft);
  padding: 110px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feature-who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.feature-who-copy h2 { margin-bottom: 28px; }
.feature-who-copy .lede { margin-bottom: 20px; }

.feature-who-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.feature-who-list li {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--white);
  padding: 18px 4px 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-who-list li:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 20px;
}

.feature-who-list li:nth-child(even) {
  padding-left: 20px;
}

@media (max-width: 880px) {
  .feature-who-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .feature-who-list { grid-template-columns: 1fr; }
  .feature-who-list li:nth-child(odd) { border-right: none; padding-right: 0; }
  .feature-who-list li:nth-child(even) { padding-left: 0; }
}

/* ---------- EPISODES ---------- */
.featured-episode {
  background: var(--black);
  padding: 120px 0;
}

.featured-video-frame {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  clip-path: polygon(0 0, 100% 0, 100% 97%, 97% 100%, 0 100%);
  overflow: hidden;
  margin-bottom: 64px;
}

.featured-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black-soft);
}

.featured-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-video-info {
  padding: 32px 36px 38px;
  border-top: 3px solid var(--red-hot);
}

.featured-video-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.featured-video-tags {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--steel);
  max-width: none;
}

/* ---------- ALSO WATCH ---------- */
.also-watch {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.also-watch-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 22px;
}

.also-watch-frame {
  /* Same as featured-video-frame but with slightly dimmer border to signal secondary status */
  border-color: rgba(255,255,255,0.05);
}

/* ---------- YOUTUBE PUSH ---------- */
.youtube-push {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--maroon-deep) 0%, var(--black-soft) 100%);
  border: 1px solid rgba(240,27,0,0.25);
  padding: 40px 44px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%, 0 88%);
}

.youtube-push-text h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--white);
  margin-bottom: 8px;
}

.youtube-push-text p {
  color: var(--steel);
  margin: 0;
  max-width: 48ch;
}

.youtube-push-btn {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .youtube-push {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }
  .youtube-push-btn { width: 100%; justify-content: center; }
  .featured-video-info { padding: 26px 24px 30px; }
}

/* ---------- PROMO BANNER ---------- */
.promo-banner {
  position: relative;
  width: 100%;
  height: clamp(320px, 60vw, 620px);
  overflow: hidden;
  background: var(--black);
}

.promo-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.promo-banner-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, transparent 12%, transparent 88%, var(--black) 100%),
    linear-gradient(to bottom, transparent 80%, var(--black) 100%);
  pointer-events: none;
}

/* ---------- HOST ---------- */
.host {
  background: var(--black-soft);
  padding: 130px 0;
}

.host-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-hot);
}

.host-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.host-image { position: relative; }

.host-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%, 0 88%);
  background: var(--black-card);
  overflow: hidden;
}

.host-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.host-slash-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 90px;
  height: 90px;
  background: var(--red-hot);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 80% 100%);
  z-index: -1;
}

.host-copy h2 { margin: 16px 0 24px; }
.host-copy p { margin-bottom: 20px; }
.host-copy em { color: var(--white); font-style: normal; }
.host-copy strong { color: var(--white); font-weight: 800; }

.host-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-top: 12px;
  transition: gap 0.25s ease;
}

.host-link:hover { gap: 14px; }

@media (max-width: 880px) {
  .host-grid { grid-template-columns: 1fr; gap: 48px; }
  .host-image { max-width: 380px; margin: 0 auto; }
}

/* ---------- MARQUEE STRIP ---------- */
.marquee-section {
  background: var(--maroon-deep);
  padding: 36px 0 44px;
  overflow: hidden;
}

.marquee-section .cred-label {
  text-align: center;
  margin-bottom: 28px;
}

.marquee-outer {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  border-right: 1px solid rgba(255,255,255,0.1);
  min-width: 160px;
  height: 72px;
}

.marquee-item:last-child { border-right: none; }

/* Placeholder treatment — replace these with <img> tags when real logos are ready */
.marquee-logo-placeholder {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  border: 1px dashed rgba(255,255,255,0.18);
  padding: 10px 18px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.marquee-item:hover .marquee-logo-placeholder {
  color: var(--white);
  border-color: var(--red-hot);
}

/* When swapping in real logo images, use this class instead of the placeholder div:
   .marquee-logo { height: 36px; width: auto; filter: grayscale(1) brightness(0.6); transition: filter 0.25s ease; }
   .marquee-item:hover .marquee-logo { filter: grayscale(0) brightness(1); }
*/

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-outer { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- CREDIBILITY (keeping rule in case referenced elsewhere) ---------- */
.credibility {
  background: var(--maroon-deep);
  padding: 70px 0;
}

.cred-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: center;
  margin-bottom: 32px;
}

.cred-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--steel);
  opacity: 0.85;
}

@media (max-width: 700px) {
  .cred-logos { gap: 32px; font-size: 1.05rem; }
}

/* ---------- NEWSLETTER ---------- */
.newsletter-inner {
  text-align: center;
  max-width: 760px;
}

.newsletter-inner h2 { margin-bottom: 20px; }
.newsletter-inner .lede { margin: 0 auto 40px; }

.newsletter-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 auto 40px;
  line-height: 1.2;
}

.newsletter-form {
  display: flex;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 22px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--red-hot);
}

.newsletter-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--steel);
}

@media (max-width: 560px) {
  .newsletter-form { flex-direction: column; }
}

/* ---------- CONNECT (Be a Guest / Contact) ---------- */
.connect {
  background: var(--black-soft);
  padding: 130px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.connect-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.connect-copy h2 { margin-bottom: 24px; }
.connect-copy .lede { margin-bottom: 20px; }
.connect-copy p { margin-bottom: 24px; }

.connect-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.connect-points li {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--white);
  padding-left: 24px;
  position: relative;
}

.connect-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 3px;
  background: var(--red-hot);
}

.connect-form {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 96% 100%, 0 100%);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-row label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 14px 16px;
  border-radius: 2px;
  width: 100%;
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%238A8580' d='M7 9 0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row select:invalid { color: var(--steel); }

.form-row textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red-hot);
}

.connect-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.connect-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--steel);
  text-align: center;
}

@media (max-width: 880px) {
  .connect-grid { grid-template-columns: 1fr; gap: 48px; }
  .connect-form { padding: 32px 28px; }
}

@media (max-width: 600px) {
  .connect { padding: 88px 0; }
}

.nav-vip {
  color: var(--red-hot) !important;
  font-weight: 800;
  position: relative;
}

.nav-vip::after {
  background: var(--red-hot) !important;
}

/* ---------- LISTEN STRIP ---------- */
.listen-strip {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.listen-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 28px;
}

.listen-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}

.listen-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 24px 18px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  min-width: 110px;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), border-color 0.25s ease, background 0.25s ease;
}

.listen-card:hover {
  transform: translateY(-4px);
  background: var(--black-soft);
  border-color: rgba(255,255,255,0.22);
}

.listen-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.listen-card:hover .listen-logo {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
  transform: scale(1.06);
}

.listen-card-name {
  color: var(--steel);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.listen-card:hover .listen-card-name {
  color: var(--white);
}

.listen-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.listen-card:hover .listen-logo-img {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .listen-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .listen-card { min-width: unset; }
}

@media (max-width: 400px) {
  .listen-platforms { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- VIP EMAIL SECTION ---------- */
.vip-section {
  background: var(--black);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.vip-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,27,0,0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.vip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.vip-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 20px;
}

.vip-headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 44px;
}

.vip-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vip-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.4;
}

.vip-perk-icon {
  color: var(--red-hot);
  font-size: 0.6rem;
  margin-top: 0.45em;
  flex-shrink: 0;
}

.vip-form-wrap {
  background: var(--black-card);
  border: 1px solid rgba(240,27,0,0.2);
  padding: 48px 44px;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 96% 100%, 0 100%);
}

.vip-form-headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.vip-form-row {
  margin-bottom: 16px;
}

.vip-form-row input,
.vip-form-row select {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 15px 16px;
  border-radius: 2px;
}

.vip-form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%238A8580' d='M7 9 0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.vip-form-row select:invalid,
.vip-form-row input::placeholder { color: var(--steel); }

.vip-form-row input:focus,
.vip-form-row select:focus {
  outline: none;
  border-color: var(--red-hot);
}

.vip-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 0.88rem;
}

.vip-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .vip-inner { grid-template-columns: 1fr; gap: 48px; }
  .vip-form-wrap { padding: 36px 28px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { height: 44px; }

.footer-social {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social a:hover { color: var(--red-hot); }

.footer-links {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  flex-wrap: wrap;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  font-size: 0.82rem;
  color: var(--steel-dim);
}
