/** Shopify CDN: Minification failed

Line 2724:0 Unexpected "}"

**/
/* ============================================================
   DREAMSTATION ESPORTS — KINETIC APEX DESIGN SYSTEM
   assets/dreamstation.css · v3.0 · March 2026
   All classes prefixed ds-. BEM: ds-block__element--modifier.
   Never hardcode hex values outside this file — use tokens.
   Light theme — white surfaces, deep purple accents.
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES (TOKENS) ── */

:root {
  /* ── Surfaces (LIGHT theme pivot) ── */
  --color-background:                #FFFFFF;   /* override Shopify's color-schemes.liquid default */
  --color-surface:                   #F9F9F9;
  --color-surface-container-low:     #FFFFFF;
  --color-surface-container-high:    #F5F5F5;
  --color-surface-container-highest: #EFEFEF;

  /* ── Brand (Kinetic Apex accents on light) ── */
  --color-primary:           #6B4EF5;
  --color-primary-container: #7D5DFF;
  --color-secondary:         #00D4E8;
  --color-secondary-accent:  #00B8D4;

  /* ── Text (dark on light background) ── */
  --color-on-surface:         #1A1A1A;
  --color-on-surface-variant: rgba(0, 0, 0, 0.6);
  --color-on-surface-muted:   rgba(0, 0, 0, 0.4);

  /* ── Decorative ── */
  --color-japanese-accent:    #A892EF;
  --color-pink-accent:        #E040C8;

  /* ── Utility ── */
  --color-error: #FF4D4D;
  --color-win:   #22C55E;

  /* ── Typography ── */
  --font-calligraphy: 'Dancing Script', cursive;

  /* ── Shadows (light theme — actual shadows, not glows) ── */
  --shadow-sm:    0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:    0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg:    0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-card:  0 2px 12px rgba(107, 78, 245, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(107, 78, 245, 0.18);

  /* ── Gradients ── */
  --gradient-hero:   linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  --gradient-btn:    linear-gradient(15deg, #6B4EF5, #7D5DFF);
  --gradient-radial: radial-gradient(ellipse at 30% 50%, rgba(107, 78, 245, 0.08) 0%, transparent 60%);

  /* ── Glows (adjusted for light background) ── */
  --glow-primary:        0 0 40px rgba(107, 78, 245, 0.08);
  --glow-primary-hover:  0 0 32px rgba(107, 78, 245, 0.30);
  --glow-pink-hover:     0 0 28px rgba(0, 212, 232, 0.25);
  --glow-card-hover:     0 0 24px rgba(107, 78, 245, 0.12);
  --glow-card:           0 0 24px rgba(107, 78, 245, 0.12);
  --glow-cyan-hover:     0 0 24px rgba(0, 212, 232, 0.25);

  /* ── Spacing ── */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   32px;
  --space-lg:   64px;
  --space-xl:   120px;
  --space-2xl:  200px;
}


/* ── 2. BASE RESET ── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Global focus — never suppress without a replacement */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* ── 3. ACCESSIBILITY UTILITIES ── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ── 4. SCROLL ANIMATION UTILITY ── */

.ds-animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s cubic-bezier(0.0, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.0, 0, 0.2, 1);
}
.ds-animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.ds-grid .ds-animate-in:nth-child(2) { transition-delay: 50ms; }
.ds-grid .ds-animate-in:nth-child(3) { transition-delay: 100ms; }
.ds-grid .ds-animate-in:nth-child(4) { transition-delay: 150ms; }
.ds-grid .ds-animate-in:nth-child(5) { transition-delay: 200ms; }
.ds-grid .ds-animate-in:nth-child(6) { transition-delay: 250ms; }


/* ── 5. GRAIN TEXTURE UTILITY ── */

.ds-surface {
  position: relative;
}
.ds-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('{{ "noise.png" | asset_url }}');
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}
/* All direct children of .ds-surface sit above the grain */
.ds-surface > * {
  position: relative;
  z-index: 1;
}


/* ── 6. 15-DEGREE CLIP-PATH UTILITIES ── */
/* NEVER use skewY() or skewX() — use clip-path only */
/* ALWAYS include -webkit-clip-path alongside clip-path */

.ds-clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  padding-bottom: 64px;
}

.ds-clip-top {
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  padding-top: 64px;
}

.ds-clip-image {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.ds-section-divider {
  height: 64px;
  display: block;
}


/* ── 7. ELEVATION ── */

/* Glass panel — sticky nav, overlays */
.ds-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}


/* ── 8. BUTTONS ── */
/* border-radius: 0 everywhere — NO exceptions */

.ds-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(15deg, var(--color-primary), var(--color-primary-container));
  border-radius: 0;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-btn-primary:hover {
  box-shadow: var(--glow-primary-hover);
}
.ds-btn-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.ds-btn-primary:active {
  opacity: 0.9;
}

.ds-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(123, 92, 231, 0.3);
  border-radius: 0;
  color: var(--color-on-surface);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-btn-ghost:hover {
  background: rgba(123, 92, 231, 0.08);
  border-color: var(--color-primary);
}
.ds-btn-ghost:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.ds-btn-ghost:active {
  background: rgba(123, 92, 231, 0.14);
}

.ds-btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(15deg, #00D4E8, #60edff);
  border-radius: 0;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-btn-cyan:hover {
  box-shadow: var(--glow-cyan-hover);
}
.ds-btn-cyan:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.ds-btn-cyan:active {
  opacity: 0.9;
}


/* ── 9. PERFORMANCE CHIPS ── */

.ds-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(123, 92, 231, 0.1);
  border: 1px solid rgba(123, 92, 231, 0.3);
  color: var(--color-primary);
  line-height: 1;
}
.ds-chip--live {
  border-color: rgba(123, 92, 231, 0.5);
  color: var(--color-primary);
  background: rgba(123, 92, 231, 0.08);
}
.ds-chip--win {
  border-color: #22C55E;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
}
.ds-chip--loss {
  border-color: #FF4D4D;
  color: #FF4D4D;
  background: rgba(255, 77, 77, 0.1);
}
.ds-chip--sub {
  border-color: rgba(123, 92, 231, 0.6);
  color: var(--color-primary);
}
.ds-chip--upcoming {
  border-color: rgba(123, 92, 231, 0.4);
  color: var(--color-primary);
  background: rgba(123, 92, 231, 0.08);
}
.ds-chip--inactive {
  border-color: rgba(26, 18, 48, 0.2);
  color: var(--color-on-surface-variant);
}


/* ── 10. INPUT FIELDS & FORMS ── */

.ds-field {
  margin-bottom: 1.5rem;
}

.ds-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-on-surface-variant);
  margin-bottom: 0.5rem;
}

.ds-input {
  display: block;
  width: 100%;
  background: var(--color-surface-container-low);
  border: 1px solid rgba(107, 78, 245, 0.15);
  border-bottom: 2px solid rgba(107, 78, 245, 0.2);
  border-radius: 0;
  color: var(--color-on-surface);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.ds-input::placeholder {
  color: rgba(26, 18, 48, 0.35);
}
.ds-input:hover {
  background: rgba(107, 78, 245, 0.02);
  border-color: rgba(107, 78, 245, 0.25);
  border-bottom-color: rgba(107, 78, 245, 0.35);
}
.ds-input:focus {
  outline: none;
  background: rgba(107, 78, 245, 0.04);
  border-color: rgba(107, 78, 245, 0.4);
  border-bottom-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(107, 78, 245, 0.1);
}
.ds-input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.ds-input.is-error {
  border-bottom-color: var(--color-error);
}

.ds-textarea {
  display: block;
  width: 100%;
  background: var(--color-surface-container-low);
  border: 1px solid rgba(107, 78, 245, 0.15);
  border-bottom: 2px solid rgba(107, 78, 245, 0.2);
  border-radius: 0;
  color: var(--color-on-surface);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  resize: vertical;
  min-height: 120px;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.ds-textarea::placeholder {
  color: rgba(26, 18, 48, 0.35);
}
.ds-textarea:hover {
  background: rgba(107, 78, 245, 0.02);
  border-color: rgba(107, 78, 245, 0.25);
  border-bottom-color: rgba(107, 78, 245, 0.35);
}
.ds-textarea:focus {
  outline: none;
  background: rgba(107, 78, 245, 0.04);
  border-color: rgba(107, 78, 245, 0.4);
  border-bottom-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(107, 78, 245, 0.1);
}
.ds-textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.ds-textarea.is-error {
  border-bottom-color: var(--color-error);
}

.ds-error-message {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 0.375rem;
}

.ds-select {
  display: block;
  width: 100%;
  background: var(--color-surface-container-low);
  border: 1px solid rgba(107, 78, 245, 0.15);
  border-bottom: 2px solid rgba(107, 78, 245, 0.2);
  border-radius: 0;
  color: var(--color-on-surface);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.ds-select:hover {
  background: rgba(107, 78, 245, 0.02);
  border-color: rgba(107, 78, 245, 0.25);
  border-bottom-color: rgba(107, 78, 245, 0.35);
}
.ds-select:focus {
  outline: none;
  background: rgba(107, 78, 245, 0.04);
  border-color: rgba(107, 78, 245, 0.4);
  border-bottom-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(107, 78, 245, 0.1);
}
.ds-select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.ds-select:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}
.ds-select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* ── 11. GLOBAL NAVIGATION ── */

.ds-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 92, 231, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0 2.5rem;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.ds-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}
.ds-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.ds-nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.ds-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-column: 2;
  align-self: stretch;
}
.ds-nav__link {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.15s ease-out;
}
.ds-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-nav__link:hover,
.ds-nav__link:focus-visible {
  color: var(--color-secondary-accent);
}
.ds-nav__link:hover::after,
.ds-nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.ds-nav__link:focus-visible {
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 4px;
}
.ds-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  grid-column: 3;
}

/* ── DS NAV CART ICON ── */
.ds-nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-on-surface);
  text-decoration: none;
  padding: 6px;
  /* Contain the pulse ring */
  overflow: visible;
}
.ds-nav__cart svg {
  display: block;
  transition: color 0.2s ease;
}
.ds-nav__cart:hover svg,
.ds-nav__cart:focus-visible svg {
  color: var(--color-primary);
}
.ds-nav__cart:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* Badge — sits top-right of the SVG icon */
.ds-nav__cart-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 0 0 2px #fff, 0 2px 6px rgba(107, 78, 245, 0.45);
  pointer-events: none;
  transform-origin: center;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease;
}
.ds-nav__cart-badge--hidden {
  display: none;
}

/* Badge pop-in animation (re-triggered by JS toggling the class) */
@keyframes ds-badge-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
.ds-nav__cart-badge--popping {
  animation: ds-badge-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Cart icon jiggle animation */
@keyframes ds-cart-jiggle {
  0%   { transform: scale(1)    rotate(0deg); }
  15%  { transform: scale(1.18) rotate(-8deg); }
  30%  { transform: scale(1.18) rotate(8deg); }
  45%  { transform: scale(1.12) rotate(-5deg); }
  60%  { transform: scale(1.06) rotate(3deg); }
  75%  { transform: scale(1.02) rotate(-1deg); }
  100% { transform: scale(1)    rotate(0deg); }
}
.ds-nav__cart--animating {
  animation: ds-cart-jiggle 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Pulse ring — expands and fades on add-to-cart */
.ds-nav__cart-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  border: 2px solid transparent;
}
@keyframes ds-cart-pulse {
  0%   { transform: scale(0.9); opacity: 1; border-color: var(--color-primary); box-shadow: 0 0 0 0 rgba(107, 78, 245, 0.5); }
  40%  { transform: scale(1.5); opacity: 0.7; border-color: var(--color-primary); box-shadow: 0 0 0 8px rgba(107, 78, 245, 0); }
  100% { transform: scale(2.2); opacity: 0; border-color: transparent; box-shadow: 0 0 0 16px rgba(107, 78, 245, 0); }
}
.ds-nav__cart-pulse--fire {
  animation: ds-cart-pulse 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Reduced motion — no animation */
@media (prefers-reduced-motion: reduce) {
  .ds-nav__cart--animating,
  .ds-nav__cart-badge--popping,
  .ds-nav__cart-pulse--fire {
    animation: none;
  }
}
/* Hamburger — mobile only */
.ds-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.ds-nav__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-on-surface);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.ds-nav__hamburger[aria-expanded="true"] .ds-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ds-nav__hamburger[aria-expanded="true"] .ds-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.ds-nav__hamburger[aria-expanded="true"] .ds-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.ds-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #FAF8FF;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.ds-nav__overlay.is-open {
  display: flex;
}
.ds-nav__overlay-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.ds-nav__overlay-link {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-on-surface);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.15s ease-out;
}
.ds-nav__overlay-link:hover,
.ds-nav__overlay-link:focus-visible {
  color: var(--color-primary);
}
.ds-nav__overlay-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* ── DESKTOP DROPDOWN ── */

.ds-nav__item--dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* Chevron icon */
.ds-nav__chevron {
  display: inline-block;
  margin-left: 0.25rem;
  vertical-align: middle;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-nav__item--dropdown:hover .ds-nav__chevron,
.ds-nav__item--dropdown:focus-within .ds-nav__chevron {
  transform: rotate(180deg);
}

.ds-nav__link--dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 4px 0;
  margin: 4px 0 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: middle;
  line-height: inherit;
}

/* Invisible bridge fills the gap between the trigger and dropdown panel */
.ds-nav__dropdown-bridge {
  display: none;
}

/* Dropdown panel — flush with nav bottom edge */
.ds-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  background: var(--color-surface-container-low);
  border: 1px solid rgba(107, 78, 245, 0.12);
  border-radius: 0;
  z-index: 101;
  box-shadow: var(--shadow-lg);
  overflow: hidden;

  /* Clip-path reveal — wipe down from top */
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translateX(-50%);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.15s ease-out;
  pointer-events: none;
}

/* Gradient accent bar at top of dropdown */
.ds-nav__dropdown-accent {
  height: 2px;
  background: var(--gradient-hero);
  width: 100%;
}

/* Open state */
.ds-nav__item--dropdown:hover .ds-nav__dropdown,
.ds-nav__item--dropdown:focus-within .ds-nav__dropdown {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  opacity: 1;
  pointer-events: auto;
}

.ds-nav__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0.375rem 0;
}

/* Staggered item entrance */
.ds-nav__dropdown-item {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s cubic-bezier(0.0, 0, 0.2, 1),
              transform 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}
.ds-nav__dropdown-item:nth-child(1) { transition-delay: 0.06s; }
.ds-nav__dropdown-item:nth-child(2) { transition-delay: 0.12s; }
.ds-nav__dropdown-item:nth-child(3) { transition-delay: 0.18s; }

.ds-nav__item--dropdown:hover .ds-nav__dropdown-item,
.ds-nav__item--dropdown:focus-within .ds-nav__dropdown-item {
  opacity: 1;
  transform: translateX(0);
}

/* Dropdown links */
.ds-nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 0.625rem 1.25rem 0.625rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-on-surface-variant);
  text-decoration: none;
  overflow: hidden;
  transition: color 0.15s ease-out,
              padding-left 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Left-edge accent that slides in on hover */
.ds-nav__dropdown-link-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-hero);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-nav__dropdown-link:hover,
.ds-nav__dropdown-link:focus-visible {
  color: var(--color-primary);
  padding-left: 1.25rem;
  background: rgba(107, 78, 245, 0.04);
}
.ds-nav__dropdown-link:hover .ds-nav__dropdown-link-accent,
.ds-nav__dropdown-link:focus-visible .ds-nav__dropdown-link-accent {
  transform: scaleY(1);
}
.ds-nav__dropdown-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}


/* ── MOBILE DROPDOWN ── */

.ds-nav__overlay-item--dropdown {
  position: relative;
}
.ds-nav__overlay-link--dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Chevron rotation on mobile */
.ds-nav__overlay-link--dropdown-trigger .ds-nav__chevron {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-nav__overlay-link--dropdown-trigger[aria-expanded="true"] .ds-nav__chevron {
  transform: rotate(180deg);
}

.ds-nav__overlay-dropdown {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.ds-nav__overlay-link--dropdown-trigger[aria-expanded="true"] ~ .ds-nav__overlay-dropdown {
  grid-template-rows: 1fr;
}
/* Inner wrapper needed for grid row animation */
.ds-nav__overlay-dropdown > * {
  overflow: hidden;
}

/* Staggered item entrance for mobile */
.ds-nav__overlay-dropdown-item {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.ds-nav__overlay-link--dropdown-trigger[aria-expanded="true"] ~ .ds-nav__overlay-dropdown .ds-nav__overlay-dropdown-item {
  opacity: 1;
  transform: translateY(0);
}
.ds-nav__overlay-dropdown-item:nth-child(1) { transition-delay: 0.08s; }
.ds-nav__overlay-dropdown-item:nth-child(2) { transition-delay: 0.14s; }
.ds-nav__overlay-dropdown-item:nth-child(3) { transition-delay: 0.20s; }

.ds-nav__overlay-dropdown-link {
  display: block;
  padding: 0.5rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-on-surface-variant);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.ds-nav__overlay-dropdown-link:hover,
.ds-nav__overlay-dropdown-link:focus-visible {
  color: var(--color-primary);
}
.ds-nav__overlay-dropdown-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* Reduced motion — skip all animation, show immediately */
@media (prefers-reduced-motion: reduce) {
  .ds-nav__dropdown {
    clip-path: none;
    -webkit-clip-path: none;
    transition: none;
  }
  .ds-nav__dropdown-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ds-nav__chevron {
    transition: none;
  }
  .ds-nav__overlay-dropdown {
    transition: none;
  }
  .ds-nav__overlay-dropdown-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media screen and (max-width: 768px) {
  .ds-nav__links,
  .ds-nav__actions {
    display: none;
  }
  .ds-nav__hamburger {
    display: flex;
  }
}


/* ── 11b. HEADER OVERRIDES — Logo hide + menu centering ── */

/* Hide the logo block (text fallback / shop name) */
.header-logo {
  display: none;
}

/* With logo hidden, ensure the left column collapses so the menu is truly centred */
.header__column--left:not(:has(header-menu)):not(:has(.header-actions)) {
  flex: 0 0 0;
  min-width: 0;
  overflow: hidden;
}

/* Mobile drawer — hide flat child sub-lists so sub-pages only show on expand.
   When drawer_accordion is enabled (list-item--deep), the <details> element
   handles show/hide natively. This rule covers the fallback flat render. */
.menu-drawer__list-item--flat > .menu-drawer__menu--childlist {
  display: none;
}

/* ── 12. TICKER / MARQUEE ── */

.ds-ticker {
  background: var(--color-primary);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ds-ticker__track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: ds-marquee 40s linear infinite;
}
.ds-ticker__track:hover {
  animation-play-state: paused;
}
.ds-ticker__item {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  padding: 0 1.25rem;
}
.ds-ticker__separator {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 1.1rem;
}
@keyframes ds-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── 13. SPONSOR LOGO BAR ── */

.ds-sponsor-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
.ds-sponsor-bar__logo {
  display: block;
  filter: brightness(0) saturate(0);
  opacity: 0.4;
  transition: opacity 0.2s ease, filter 0.2s ease;
  max-height: 40px;
  width: auto;
}
.ds-sponsor-bar__logo:hover {
  opacity: 0.85;
  filter: none;
}
.ds-sponsor-bar__logo:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* CTA fallback — shown when no active partners */
.ds-sponsor-cta {
  text-align: center;
  padding: 4rem 2rem;
}
.ds-sponsor-cta__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 1rem;
}
.ds-sponsor-cta__body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ── 14. PLAYER CARDS ── */

.ds-player-card {
  background: #1A1230;
  border: 1px solid rgba(123, 92, 231, 0.2);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.ds-player-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123, 92, 231, 0.28);
}

/* Image zone — square aspect, fills card top */
.ds-player-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}
.ds-player-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(40%) contrast(1.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}
.ds-player-card:hover .ds-player-card__image {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.15);
}
.ds-player-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-surface-container-highest) 0%, rgba(123, 92, 231, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Diagonal accent overlay on image — 15° brand signature */
.ds-player-card__accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(123, 92, 231, 0.35) 75%,
    rgba(26, 18, 48, 0.90) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Card body — dark, tight, editorial */
.ds-player-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  background: #1A1230;
  position: relative;
  flex: 1;
}
/* Pink accent top border */
.ds-player-card__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}
.ds-player-card__name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: nowrap;
}
.ds-player-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}
.ds-player-card__role {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary-accent);
  margin: 0 0 0.75rem;
}
.ds-player-card__nationality {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.75rem;
}
.ds-player-card__bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0 0 1rem;
}
.ds-player-card__socials {
  display: flex;
  gap: 0.625rem;
  margin-top: auto;
}
.ds-player-card__social-link {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s ease-out;
  text-decoration: none;
}
.ds-player-card__social-link:hover,
.ds-player-card__social-link:focus-visible {
  color: var(--color-secondary-accent);
}
.ds-player-card__social-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* ── 15. FOOTER — THREE CONCEPTS (c1 · c2 · c3) ── */
/*
  Active concept: set class on <footer> element in snippets/ds-footer.liquid
    class="c1"  Ghost Light      — white, editorial, ghost watermark  ← DEFAULT
    class="c2"  Dark Terminus    — near-black, radial glow, big gradient headline
    class="c3"  Inverse Gradient — white nav zone + full-bleed gradient band

  All dark tokens in c2 are locally scoped on .c2 — they do not pollute :root.
  Speed B — no clip-path on outer edges, no blossom props.
*/

/* ── CONCEPT 1: GHOST LIGHT (Compact) ── */

.c1 {
  --c1-bg:            #FAFBFF;
  --c1-bg-alt:        #F5F4FA;
  --c1-on:            #1A1A1A;
  --c1-on-muted:      rgba(26, 26, 26, 0.55);
  --c1-accent:        #6B4EF5;
  --c1-cyan:          #00D4E8;
  --c1-gradient:      linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  --c1-glow:          0 0 30px rgba(107, 78, 245, 0.18);
  --c1-glow-cyan:     0 0 24px rgba(0, 212, 232, 0.35);
  position: relative;
  background: var(--c1-bg);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* 3px gradient top bar */
.c1__accent-bar {
  height: 3px;
  background: var(--c1-gradient);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Naming rights strip ── */
.c1__naming-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2.5rem;
  background: linear-gradient(90deg, var(--c1-bg-alt) 0%, rgba(0, 212, 232, 0.03) 100%);
  border-bottom: 1px solid rgba(107, 78, 245, 0.08);
  position: relative;
  z-index: 1;
}
.c1__naming-dot {
  width: 8px;
  height: 8px;
  background: var(--c1-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: c1-pulse 2.2s ease-in-out infinite;
}
@keyframes c1-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.c1__naming-chip {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c1-bg);
  background: var(--c1-accent);
  padding: 0.2rem 0.5rem;
  line-height: 1.4;
}
.c1__naming-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--c1-on-muted);
  flex: 1;
}
.c1__naming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c1-accent);
  text-decoration: none;
  transition: color 0.15s ease-out;
  margin-left: auto;
}
.c1__naming-link:hover { color: var(--c1-cyan); }
.c1__naming-link:focus-visible {
  outline: 2px solid var(--c1-cyan);
  outline-offset: 2px;
}

/* ── Main grid — 4 columns: brand | email | explore | follow ── */
.c1__main {
  display: grid;
  grid-template-columns: 1fr 1.8fr 0.7fr 0.7fr;
  gap: 2.5rem;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  align-items: start;
}

/* Brand column — logo + manifesto */
.c1__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.c1__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.c1__logo-img {
  display: block;
  height: 176px;
  width: auto;
}
.c1__manifesto {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--c1-on-muted);
  margin: 0;
  max-width: 28ch;
}

/* Email signup column */
.c1__email-signup {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  width: 100%;
}
.c1__email-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c1-on);
  margin-bottom: 1rem;
}
.c1__email-form {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.c1__email-input {
  flex: 1;
  min-width: 0;
  padding: 0.625rem 0.75rem;
  background: var(--c1-bg) !important;
  border: 1px solid rgba(107, 78, 245, 0.2) !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--c1-on) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.c1__email-input::placeholder {
  color: rgba(26, 26, 26, 0.35);
}
.c1__email-input:hover {
  background: var(--c1-bg) !important;
  border-color: rgba(107, 78, 245, 0.4) !important;
}
.c1__email-input:focus {
  outline: none;
  background: var(--c1-bg) !important;
  border-color: var(--c1-accent) !important;
  box-shadow: 0 0 12px rgba(107, 78, 245, 0.1);
}
.c1__email-input:focus-visible {
  outline: 2px solid var(--c1-cyan);
  outline-offset: 2px;
}
.c1__email-btn {
  flex-shrink: 0;
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: var(--c1-accent);
  border: 1px solid rgba(107, 78, 245, 0.4);
  border-radius: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.c1__email-btn:hover {
  background: rgba(107, 78, 245, 0.08);
  border-color: rgba(200, 191, 255, 0.6);
  box-shadow: 0 0 20px rgba(107, 78, 245, 0.15);
}
.c1__email-btn:focus-visible {
  outline: 2px solid var(--c1-cyan);
  outline-offset: 2px;
}

/* Nav columns */
.c1__nav-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.c1__nav-label {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c1-on);
  margin: 0 0 1rem;
}
.c1__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c1__nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--c1-on-muted);
  text-decoration: none;
  transition: color 0.15s ease-out;
  display: inline-block;
}
.c1__nav-link:hover { color: var(--c1-accent); }
.c1__nav-link:focus-visible {
  outline: 2px solid var(--c1-cyan);
  outline-offset: 2px;
}

/* Social tiles */
.c1__social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.c1__social-tile {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 78, 245, 0.05);
  border: 1px solid rgba(107, 78, 245, 0.12);
  color: var(--c1-on-muted);
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.c1__social-tile:hover {
  color: var(--c1-cyan);
  background: rgba(0, 212, 232, 0.08);
  border-color: rgba(0, 212, 232, 0.3);
  box-shadow: 0 0 16px rgba(0, 212, 232, 0.15);
  transform: translateY(-2px);
}
.c1__social-tile:focus-visible {
  outline: 2px solid var(--c1-cyan);
  outline-offset: 2px;
}
.c1__email-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--c1-on-muted);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.c1__email-link:hover { color: var(--c1-accent); }
.c1__email-link:focus-visible {
  outline: 2px solid var(--c1-cyan);
  outline-offset: 2px;
}

/* Bottom bar — compact copyright */
.c1__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--c1-bg-alt);
  border-top: 1px solid rgba(107, 78, 245, 0.06);
  position: relative;
  z-index: 1;
}
.c1__copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  color: var(--c1-on-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── c1 responsive ── */
@media (max-width: 1024px) {
  .c1__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 1.75rem;
  }
  .c1__brand { grid-column: 1; }
  .c1__email-signup { grid-column: 2; max-width: none; }
}
@media (max-width: 600px) {
  .c1__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem 1.25rem;
  }
  .c1__logo-img { height: 120px; }
  .c1__email-signup { max-width: none; }
  .c1__email-form { flex-direction: column; gap: 0.5rem; }
  .c1__naming-strip { padding: 0.625rem 1.25rem; flex-wrap: wrap; }
  .c1__naming-link { margin-left: 0; }
  .c1__bottom { padding: 0.75rem 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .c1__naming-dot { animation: none; }
  .c1__social-tile:hover { transform: none; }
}


/* ── CONCEPT 2: DARK TERMINUS ── */

.c2 {
  --c2-bg:            #0F0F11;
  --c2-bg-strip:      #141417;
  --c2-bg-bottom:     #0A0A0C;
  --c2-on:            rgba(255, 255, 255, 0.87);
  --c2-on-muted:      rgba(255, 255, 255, 0.45);
  --c2-accent:        #6B4EF5;
  --c2-cyan:          #00D4E8;
  --c2-cyan-soft:     rgba(0, 212, 232, 0.12);
  --c2-gradient:      linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  --c2-glow:          0 0 40px rgba(107, 78, 245, 0.35);
  --c2-glow-cyan:     0 0 28px rgba(0, 212, 232, 0.45);
  --c2-radial:        radial-gradient(ellipse at 35% 60%, rgba(107,78,245,0.14) 0%, transparent 65%);
  position: relative;
  background: var(--c2-bg);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* DS watermark — bleeds off right */
.c2__watermark {
  position: absolute;
  top: 50%;
  right: -0.04em;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(14rem, 38vw, 32rem);
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(107, 78, 245, 0.12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* Radial ambient glow overlay */
.c2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c2-radial);
  pointer-events: none;
  z-index: 0;
}

/* 3px gradient top bar */
.c2__accent-bar {
  height: 3px;
  background: var(--c2-gradient);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Naming rights strip ── */
.c2__naming-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2.5rem;
  background: var(--c2-bg-strip);
  position: relative;
  z-index: 1;
}
.c2__naming-dot {
  width: 8px;
  height: 8px;
  background: var(--c2-cyan);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: c2-pulse 2.2s ease-in-out infinite;
}
@keyframes c2-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}
.c2__naming-chip {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c2-bg);
  background: var(--c2-cyan);
  padding: 0.2rem 0.5rem;
  line-height: 1.4;
}
.c2__naming-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--c2-on-muted);
  flex: 1;
}
.c2__naming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c2-cyan);
  text-decoration: none;
  transition: color 0.15s ease-out;
  margin-left: auto;
}
.c2__naming-link:hover { color: #FFFFFF; }
.c2__naming-link:focus-visible {
  outline: 2px solid var(--c2-cyan);
  outline-offset: 2px;
}

/* ── Main zone ── */
.c2__main {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 0;
  position: relative;
  z-index: 1;
  min-height: 340px;
}
.c2__left {
  padding: 4rem 3rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c2__season-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c2-cyan);
  margin: 0 0 1.25rem;
}
.c2__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.0;
  margin: 0 0 1.25rem;
}
.c2__headline-plain {
  display: block;
  color: var(--c2-on);
}
.c2__headline-gradient {
  display: block;
  background: var(--c2-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c2__subcopy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--c2-on-muted);
  margin: 0 0 2rem;
  max-width: 34ch;
}
.c2__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.c2__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--c2-gradient);
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.c2__btn-primary:hover { box-shadow: var(--c2-glow); }
.c2__btn-primary:focus-visible {
  outline: 2px solid var(--c2-cyan);
  outline-offset: 2px;
}
.c2__btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--c2-on);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.c2__btn-ghost:hover {
  background: rgba(107, 78, 245, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.c2__btn-ghost:focus-visible {
  outline: 2px solid var(--c2-cyan);
  outline-offset: 2px;
}
.c2__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--c2-bg-strip);
  padding: 4rem 2.5rem 4rem 3rem;
}
.c2__nav-group { display: flex; flex-direction: column; }
.c2__nav-label {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c2-on-muted);
  margin: 0 0 1.25rem;
}
.c2__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.c2__nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--c2-on);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.c2__nav-link:hover { color: var(--c2-cyan); }
.c2__nav-link:focus-visible {
  outline: 2px solid var(--c2-cyan);
  outline-offset: 2px;
}

/* Social tiles — square with cyan glow */
.c2__social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.c2__social-tile {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c2-on);
  text-decoration: none;
  border-radius: 0;
  transition: color 0.15s ease-out, background 0.15s ease-out, border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.c2__social-tile:hover {
  color: var(--c2-cyan);
  background: var(--c2-cyan-soft);
  border-color: rgba(0, 212, 232, 0.35);
  box-shadow: var(--c2-glow-cyan);
}
.c2__social-tile:focus-visible {
  outline: 2px solid var(--c2-cyan);
  outline-offset: 2px;
}
.c2__email-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--c2-on-muted);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.c2__email-link:hover { color: var(--c2-cyan); }
.c2__email-link:focus-visible {
  outline: 2px solid var(--c2-cyan);
  outline-offset: 2px;
}

/* Big gradient hashtag headline */
.c2__headline-band {
  padding: 3.5rem 2.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.c2__big-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0;
  background: var(--c2-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* Bottom bar */
.c2__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 2.5rem;
  background: var(--c2-bg-bottom);
  position: relative;
  z-index: 1;
}
.c2__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.c2__logo-img { display: block; height: 28px; width: auto; }
.c2__logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c2-on);
}
.c2__copyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--c2-on-muted);
  margin: 0;
  white-space: nowrap;
}
.c2__hashtag {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--c2-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

/* ── c2 responsive ── */
@media (max-width: 900px) {
  .c2__main { grid-template-columns: 1fr; }
  .c2__left { padding: 3rem 1.75rem; }
  .c2__right { padding: 3rem 1.75rem; }
  .c2__watermark { font-size: clamp(8rem, 35vw, 14rem); top: 30%; }
}
@media (max-width: 600px) {
  .c2__naming-strip { padding: 0.75rem 1.25rem; flex-wrap: wrap; }
  .c2__naming-link { margin-left: 0; }
  .c2__right { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .c2__bottom { flex-direction: column; gap: 0.75rem; padding: 1.25rem; }
  .c2__copyright { position: static; transform: none; }
  .c2__headline-band { padding: 2.5rem 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .c2__naming-dot { animation: none; }
}


/* ── CONCEPT 3: INVERSE GRADIENT ── */

.c3 {
  --c3-bg:            #FFFFFF;
  --c3-bg-nav:        #F4F4F6;
  --c3-on:            #1A1A1A;
  --c3-on-muted:      rgba(26, 26, 26, 0.55);
  --c3-accent:        #6B4EF5;
  --c3-cyan:          #00D4E8;
  --c3-gradient:      linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  --c3-glow-cyan:     0 0 28px rgba(0, 212, 232, 0.5);
  position: relative;
  background: var(--c3-bg);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* 3px gradient top bar */
.c3__accent-bar {
  height: 3px;
  background: var(--c3-gradient);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Naming rights strip ── */
.c3__naming-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2.5rem;
  background: var(--c3-bg-nav);
  position: relative;
  z-index: 1;
}
.c3__naming-dot {
  width: 8px;
  height: 8px;
  background: var(--c3-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: c3-pulse 2.2s ease-in-out infinite;
}
@keyframes c3-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.c3__naming-chip {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  background: var(--c3-accent);
  padding: 0.2rem 0.5rem;
  line-height: 1.4;
}
.c3__naming-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--c3-on-muted);
  flex: 1;
}
.c3__naming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c3-accent);
  text-decoration: none;
  transition: color 0.15s ease-out;
  margin-left: auto;
}
.c3__naming-link:hover { color: var(--c3-cyan); }
.c3__naming-link:focus-visible {
  outline: 2px solid var(--c3-cyan);
  outline-offset: 2px;
}

/* ── 4-column nav zone ── */
.c3__nav-zone {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  background: var(--c3-bg-nav);
  padding: 3.5rem 2.5rem;
  position: relative;
  z-index: 1;
}
.c3__brand-col {
  padding-right: 3rem;
  border-right: 1px solid rgba(26, 26, 26, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.c3__season-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c3-cyan);
  margin: 0 0 0.75rem;
}
.c3__tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.c3__tagline-plain { display: block; color: var(--c3-on); }
.c3__tagline-gradient {
  display: block;
  background: var(--c3-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c3__social-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.c3__social-tile {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: var(--c3-on);
  text-decoration: none;
  border-radius: 0;
  transition: color 0.15s ease-out, background 0.15s ease-out, border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.c3__social-tile:hover {
  color: var(--c3-cyan);
  background: rgba(0, 212, 232, 0.06);
  border-color: rgba(0, 212, 232, 0.3);
  box-shadow: var(--c3-glow-cyan);
}
.c3__social-tile:focus-visible {
  outline: 2px solid var(--c3-cyan);
  outline-offset: 2px;
}
.c3__nav-col {
  padding: 0 1.5rem;
}
.c3__nav-col:first-of-type { padding-left: 2.5rem; }
.c3__nav-label {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c3-on-muted);
  margin: 0 0 1.25rem;
}
.c3__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.c3__nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--c3-on);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.c3__nav-link:hover { color: var(--c3-accent); }
.c3__nav-link:focus-visible {
  outline: 2px solid var(--c3-cyan);
  outline-offset: 2px;
}
.c3__email-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--c3-on-muted);
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.15s ease-out;
}
.c3__email-link:hover { color: var(--c3-accent); }
.c3__email-link:focus-visible {
  outline: 2px solid var(--c3-cyan);
  outline-offset: 2px;
}

/* ── Full-bleed gradient band ── */
.c3__gradient-band {
  position: relative;
  background: var(--c3-gradient);
  padding: 3.5rem 2.5rem;
  overflow: hidden;
  z-index: 1;
}
.c3__band-watermark {
  position: absolute;
  top: 50%;
  right: -0.04em;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 20vw, 16rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.c3__band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.c3__big-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  color: #FFFFFF;
}
.c3__band-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 32ch;
  line-height: 1.6;
  margin: 0;
}
.c3__band-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #FFFFFF;
  color: var(--c3-accent);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease;
}
.c3__band-cta:hover { box-shadow: 0 0 30px rgba(255,255,255,0.35); }
.c3__band-cta:focus-visible {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}

/* Bottom bar */
.c3__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: var(--c3-bg-nav);
  position: relative;
  z-index: 1;
}
.c3__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.c3__logo-img { display: block; height: 28px; width: auto; }
.c3__logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c3-on);
}
.c3__copyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--c3-on-muted);
  margin: 0;
  white-space: nowrap;
}
.c3__hashtag {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--c3-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

/* ── c3 responsive ── */
@media (max-width: 900px) {
  .c3__nav-zone { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.75rem; }
  .c3__brand-col { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid rgba(26,26,26,0.07); padding-right: 0; padding-bottom: 2rem; }
  .c3__nav-col:first-of-type { padding-left: 0; }
  .c3__nav-col { padding: 0; }
  .c3__band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .c3__naming-strip { padding: 0.75rem 1.25rem; flex-wrap: wrap; }
  .c3__naming-link { margin-left: 0; }
  .c3__gradient-band { padding: 2.5rem 1.25rem; }
  .c3__bottom { flex-direction: column; gap: 0.75rem; padding: 1.25rem; }
  .c3__copyright { position: static; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .c3__naming-dot { animation: none; }
}


/* ── 16. SECTION LAYOUT UTILITIES ── */

.ds-section {
  padding: 5rem 2rem;
}
.ds-section--surface-low {
  background: var(--color-surface-container-low);
}
.ds-section--surface {
  background: var(--color-surface);
}
.ds-container {
  max-width: 1280px;
  margin: 0 auto;
}
.ds-section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}
.ds-section__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-on-surface);
  margin: 0 0 1.5rem;
}
.ds-section__body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 640px;
}
.ds-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ds-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .ds-grid--3col { grid-template-columns: repeat(2, 1fr); }
  .ds-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 640px) {
  .ds-grid--3col,
  .ds-grid--4col { grid-template-columns: 1fr; }
  .ds-section__heading { font-size: 1.75rem; }
}

/* Empty state */
.ds-empty-state {
  padding: 3rem;
  text-align: center;
}
.ds-empty-state__text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  margin: 0;
}


/* ── 17. PREFERS-REDUCED-MOTION ── */
/* Must be last rule to override all animations */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .ds-animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ds-ticker__track {
    animation: none;
  }
}


/* ── DS-HERO SECTION ── */

.ds-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  display: flex;
  flex-direction: column;
}

/* Grain texture — 18% opacity over vivid gradient for tactile depth */
.ds-hero.ds-surface::after {
  opacity: 0.18;
  z-index: 2;
}

/* Depth radials — white highlight at car position, deep shadow bottom-left */
.ds-hero__bg,
.ds-hero__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 72% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 10% 80%, rgba(50, 20, 100, 0.50) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* 15° diagonal frame shapes — above and below car, framing the composition */
.ds-hero__diagonal-frame {
  position: absolute;
  width: 130%;
  height: 42%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(0, 210, 220, 0.12) 100%
  );
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 1;
}
.ds-hero__diagonal-frame--above {
  top: -20%;
  left: -15%;
}
.ds-hero__diagonal-frame--below {
  bottom: -20%;
  right: -15%;
}

/* bg-split: removed dark diagonal — replaced with a subtle light divider zone */
.ds-hero__bg-split {
  position: absolute;
  inset: 0;
  background: var(--color-surface-container-low);
  clip-path: polygon(0 0, 60% 0, 50% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 60% 0, 50% 100%, 0 100%);
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

/* Inner layout container — NO z-index: stacking context isolation would break hs3 layering */
.ds-hero__inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Decorative thin purple diagonal line */
.ds-hero__diagonal {
  position: absolute;
  top: 0;
  left: -5%;
  width: 2px;
  height: 140%;
  background: var(--color-primary);
  opacity: 0.12;
  transform: rotate(-15deg);
  transform-origin: top left;
  pointer-events: none;
}

/* Content block — left-aligned — NO z-index (see hs3 stacking note on __inner) */
.ds-hero__content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Eyebrow label */
.ds-hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-on-surface-variant);
  margin: 0;
}

/* Chip wrapper — inline flow */
.ds-hero__chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero headline */
.ds-hero__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 9vw, 8.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  line-height: 0.95;
  margin: 0;
}

/* Supporting subheading */
.ds-hero__subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

/* CTA row */
.ds-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Japanese decorative text — aria-hidden, purely visual */
.ds-hero__japanese {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--color-japanese-accent);
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  opacity: 0.18;
}

/* ── HS3 HERO: "car breaking through text" technique ──
   The headline is split into three <span> layers. The car (z:3) sits
   BETWEEN the top spans (z:2) and the bottom span (z:5), creating the
   illusion that the car is physically embedded in the typography.
   CRITICAL: ds-hero__inner and ds-hero__content must NOT have z-index
   values — any z-index on a parent creates a stacking context that
   isolates child z-indices from siblings outside that parent.
── */

/* Giant calligraphic brand mark — decorative, lowest layer */
.ds-hero__brand-mark {
  position: absolute;
  bottom: -8%;
  right: 28%;
  font-size: clamp(12rem, 28vw, 28rem);
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  color: var(--color-primary);
  opacity: 0.06;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Car visual layer — z:3, sits BETWEEN hl-top(z:2) and hl-bot(z:5) */
/* CRITICAL: No transform/opacity on this wrapper — breaks stacking context */
.ds-hero__visual {
  position: absolute;
  right: -5%;
  top: 38%;
  transform: translateY(-50%);
  width: 66%;
  max-width: 920px;
  z-index: 3;
  pointer-events: none;
}
.ds-hero__car {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.5);
  animation: ds-car-enter 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

/* Headline span layers — staggered entrance animations */
.ds-hero__hl-top,
.ds-hero__hl-mid {
  display: block;
  position: relative;
  z-index: 2; /* car (z:3) paints in FRONT — these go "behind" the car */
}
.ds-hero__hl-top { animation: ds-text-rise 0.6s cubic-bezier(0, 0, 0.2, 1) 0.40s both; }
.ds-hero__hl-mid { animation: ds-text-rise 0.6s cubic-bezier(0, 0, 0.2, 1) 0.50s both; }

.ds-hero__hl-bot {
  display: block;
  position: relative;
  z-index: 5; /* this text paints IN FRONT of the car (z:3) — "breaks free" */
  animation: ds-text-rise 0.6s cubic-bezier(0, 0, 0.2, 1) 0.60s both;
}

/* Meta row — eyebrow + chip side by side */
.ds-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

/* #ALWAYSDREAM hashtag */
.ds-hero__hashtag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-on-surface-muted);
  margin: 0.5rem 0 0;
  position: relative;
  z-index: 5;
  animation: ds-fade-up 0.5s ease 0.85s both;
}

/* Meta + supporting elements — entrance animations */
.ds-hero__meta    { animation: ds-fade-up 0.5s ease 0.70s both; }
.ds-hero__subheading { animation: ds-fade-up 0.5s ease 0.75s both; }
.ds-hero__ctas    { animation: ds-fade-up 0.5s ease 0.80s both; }

/* ── Hero entrance keyframes ── */
@keyframes ds-car-enter {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes ds-text-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ds-fade-up {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: none; }
}
/* Honour system motion preference */
@media (prefers-reduced-motion: reduce) {
  .ds-hero__car,
  .ds-hero__hl-top, .ds-hero__hl-mid, .ds-hero__hl-bot,
  .ds-hero__meta, .ds-hero__subheading, .ds-hero__ctas, .ds-hero__hashtag,
}

/* ── Mobile responsive ── */
@media (max-width: 767px) {

  .ds-hero__headline {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .ds-hero__cta-ghost {
    display: none;
  }

  /* Car: stack below content on mobile, full width, B&W maintained */
  .ds-hero__visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: -1rem;
    z-index: 3;
  }

  /* Diagonal frames — smaller on mobile */
  .ds-hero__diagonal-frame {
    height: 30%;
  }

  /* Reorganise inner to column on mobile */
  .ds-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 1.25rem 3rem;
    min-height: 100svh;
  }

  .ds-hero__brand-mark {
    font-size: clamp(8rem, 40vw, 14rem);
    opacity: 0.05;
    right: 0;
    bottom: -4%;
  }

  .ds-hero__sakura {
    width: 70%;
    top: -3%;
    right: -6%;
    opacity: 0.5;
  }

  .ds-hero__bg-split {
    clip-path: polygon(0 0, 80% 0, 65% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 80% 0, 65% 100%, 0 100%);
  }
}


/* ── HERO VARIATION 2 (V2) — Car anchored lower, content spans wider ── */

.ds-hero-v2__visual {
  position: absolute;
  right: -5%;
  bottom: 5%;
  transform: none;
  width: 60%;
  max-width: 850px;
  z-index: 3;
  pointer-events: none;
}

.ds-hero-v2__inner {
  align-items: flex-start;
  padding-top: 12rem;
  padding-bottom: 8rem;
}

.ds-hero-v2__content {
  position: relative;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 5;
}

.ds-hero-v2__headline {
  font-size: clamp(4.5rem, 10vw, 7rem);
}

.ds-hero-v2__subheading {
  max-width: 620px;
}

@media (max-width: 767px) {
  .ds-hero-v2__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: -1rem;
  }

  .ds-hero-v2__inner {
    padding-top: 9rem;
    padding-bottom: 4rem;
  }

  .ds-hero-v2__headline {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }
}


/* ── HERO VARIATION 3 (V3) — Gradient accent overlap, staggered headline ── */

.ds-hero-v3__accent-shape {
  position: absolute;
  width: 55%;
  height: 70%;
  right: -8%;
  top: 15%;
  background: linear-gradient(135deg, rgba(107, 78, 245, 0.2) 0%, rgba(0, 212, 232, 0.15) 100%);
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.ds-hero-v3__visual {
  position: absolute;
  right: 2%;
  top: 42%;
  transform: translateY(-50%);
  width: 58%;
  max-width: 900px;
  z-index: 3;
  pointer-events: none;
}

.ds-hero-v3__inner {
  align-items: flex-start;
  padding-top: 10rem;
}

.ds-hero-v3__content {
  position: relative;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 5;
}

.ds-hero-v3__headline {
  font-size: clamp(4.5rem, 9.5vw, 8rem);
}

/* Stagger the headline lines for v3 — create dynamic asymmetry */
.ds-hero-v3__hl-top {
  margin-left: 0;
}

.ds-hero-v3__hl-mid {
  margin-left: 3%;
}

.ds-hero-v3__hl-bot {
  margin-left: 6%;
}

.ds-hero-v3__subheading {
  max-width: 550px;
}

@media (max-width: 767px) {
  .ds-hero-v3__accent-shape {
    width: 80%;
    height: 50%;
    right: -15%;
    top: 40%;
  }

  .ds-hero-v3__visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: -1rem;
    z-index: 3;
  }

  .ds-hero-v3__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8rem;
  }

  .ds-hero-v3__headline {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .ds-hero-v3__hl-top,
  .ds-hero-v3__hl-mid,
  .ds-hero-v3__hl-bot {
    margin-left: 0;
  }
}


/* ── DS-ROSTER PREVIEW SECTION ── */

.ds-roster-preview {
  background: #0D0A1A;
}

.ds-roster-preview__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 6rem 2rem;
}

.ds-roster-preview__header {
  margin-bottom: 3rem;
  text-align: center;
}

.ds-roster-preview__sub-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary-accent);
  margin: 0 0 0.75rem;
}

.ds-roster-preview__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin: 0;
}

.ds-roster-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.ds-roster-preview__footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.ds-roster-preview__empty {
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
}

/* Stagger delays on grid children */
.ds-roster-preview__grid .ds-animate-in:nth-child(2) { transition-delay: 50ms; }
.ds-roster-preview__grid .ds-animate-in:nth-child(3) { transition-delay: 100ms; }
.ds-roster-preview__grid .ds-animate-in:nth-child(4) { transition-delay: 150ms; }
.ds-roster-preview__grid .ds-animate-in:nth-child(5) { transition-delay: 200ms; }
.ds-roster-preview__grid .ds-animate-in:nth-child(6) { transition-delay: 250ms; }

@media (max-width: 1200px) {
  .ds-roster-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .ds-roster-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ds-roster-preview__inner {
    padding: 4rem 1.25rem;
  }

  .ds-roster-preview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .ds-roster-preview__header {
    margin-bottom: 2rem;
  }

  .ds-roster-preview__footer {
    margin-top: 2rem;
  }
}


/* ============================================================
   T18 — ds-content-proof
   sections/ds-content-proof.liquid
   ============================================================ */

/* ── Section wrapper ── */

.ds-content-proof {
  background: var(--color-surface-container-low);
}

.ds-content-proof__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 6rem 2rem;
}

/* ── Section header ── */

.ds-content-proof__header {
  margin-bottom: 3rem;
}

.ds-content-proof__sublabel {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

.ds-content-proof__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0;
  line-height: 1.1;
}

/* ── Tweets grid — 2 columns side by side ── */

.ds-content-proof__tweets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Each tweet wrapper — constrain to card width for uniform layout */
.ds-content-proof__tweet-wrap {
  display: flex;
  flex-direction: column;
}

/* Force Twitter embeds to fill their column */
.ds-content-proof__tweet-wrap .twitter-tweet {
  width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  .ds-content-proof__tweets {
    grid-template-columns: 1fr;
  }
}

/* ── Creator card ── */

.ds-content-proof__creator {
  background: var(--color-surface-container-highest);
  padding: 2rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ds-content-proof__creator-media {
  flex-shrink: 0;
}

.ds-content-proof__creator-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.ds-content-proof__creator-initials {
  width: 80px;
  height: 80px;
  background: var(--color-primary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #FFFFFF;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.ds-content-proof__creator-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ds-content-proof__creator-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-on-surface);
  margin: 0;
  text-transform: uppercase;
}

.ds-content-proof__creator-subs {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-primary);
  margin: 0;
}

.ds-content-proof__creator-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--color-on-surface-variant);
  margin: 0;
  line-height: 1.5;
}

.ds-content-proof__creator-cta {
  align-self: flex-start;
}

/* ── Section footer CTA ── */

.ds-content-proof__footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* ── Stagger delays on post tiles ── */

.ds-content-proof__posts .ds-animate-in:nth-child(1) { transition-delay: 0ms; }
.ds-content-proof__posts .ds-animate-in:nth-child(2) { transition-delay: 100ms; }
.ds-content-proof__posts .ds-animate-in:nth-child(3) { transition-delay: 200ms; }

/* ── Responsive ── */

@media (max-width: 767px) {
  .ds-content-proof__inner {
    padding: 4rem 1.25rem;
  }

  .ds-content-proof__heading {
    font-size: 1.75rem;
  }

  .ds-content-proof__posts {
    grid-template-columns: 1fr;
  }

  .ds-content-proof__creator {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ── DS-SPONSOR SIGNAL SECTION ── */

.ds-sponsor-signal {
  background: var(--color-surface-container-high);
}

.ds-sponsor-signal__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 6rem 2rem;
  text-align: center;
}

.ds-sponsor-signal__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 0.5rem;
}

.ds-sponsor-signal__sublabel {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 3rem;
}

/* CTA state */

.ds-sponsor-signal__cta-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Sponsor bar state */

.ds-sponsor-signal .ds-sponsor-bar {
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .ds-sponsor-signal__inner {
    padding: 4rem 1.25rem;
  }

  .ds-sponsor-signal .ds-sponsor-bar {
    gap: 2rem;
  }
}


/* ── DS-MERCH ENTRY SECTION ── */

.ds-merch-entry {
  background: var(--color-surface-container-low);
}

.ds-merch-entry__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 6rem 2rem;
}

/* ── Section header ── */

.ds-merch-entry__header {
  margin-bottom: 0;
}

.ds-merch-entry__sublabel {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

.ds-merch-entry__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 0.25rem;
}

/* ── Product grid ── */

.ds-merch-entry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

/* ── Product tile ── */

.ds-merch-entry__tile {
  background: var(--color-surface);
  border: 1px solid rgba(123, 92, 231, 0.1);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-merch-entry__tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.ds-merch-entry__tile-image-link {
  display: block;
  overflow: hidden;
}

.ds-merch-entry__tile-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-merch-entry__tile:hover .ds-merch-entry__tile-img {
  transform: scale(1.03);
}

.ds-merch-entry__tile-img-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-surface-container-highest);
}

.ds-merch-entry__tile-body {
  padding: 1.25rem;
}

.ds-merch-entry__tile-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-on-surface);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.ds-merch-entry__tile-price {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.ds-merch-entry__tile-atc,
.ds-merch-entry__tile-view {
  width: 100%;
  justify-content: center;
}

/* ── Empty state ── */

.ds-merch-entry__empty {
  margin: 3rem 0 2rem;
  padding: 3rem 2rem;
  background: var(--color-surface-container-high);
  border-radius: 0;
  text-align: center;
}

.ds-merch-entry__empty-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  margin: 0;
}

/* ── Footer CTA ── */

.ds-merch-entry__footer {
  text-align: center;
  margin-top: 1rem;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .ds-merch-entry__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ds-merch-entry__inner {
    padding: 4rem 1.25rem;
  }

  .ds-merch-entry__grid {
    grid-template-columns: 1fr;
  }
}


/* === T22 ADDITIONS ===
   Team Page — sections/ds-team-page.liquid
   ========================================== */


/* ── T22-1. TEAM PAGE HEADER ── */

.ds-team-header {
  position: relative;
  overflow: hidden;
  background-color: var(--color-surface);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  padding-bottom: 64px;
  padding-top: 10rem;
  min-height: 52vh;
  display: flex;
  align-items: center;
}

.ds-team-header.ds-surface::after {
  opacity: 0.02;
}

/* Soft radial lavender glow */
.ds-team-header__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123, 92, 231, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Oversized decorative background text — aria-hidden, purely visual */
.ds-team-header__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 18rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Inner layout container */
.ds-team-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Sub-label eyebrow */
.ds-team-header__sub-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0;
}

/* Display headline */
.ds-team-header__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  line-height: 1;
  margin: 0;
}

@media (max-width: 600px) {
  .ds-team-header {
    padding-top: 7rem;
    min-height: 40vh;
  }
  .ds-team-header__heading {
    font-size: 3rem;
  }
}


/* ── T22-2. ROSTER GRID SECTION ── */

.ds-team-roster {
  background: var(--color-surface);
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  padding-top: 64px;
  margin-top: -2px;
}

.ds-team-roster.ds-surface::after {
  opacity: 0.02;
}

.ds-team-roster__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

.ds-team-roster__header {
  margin-bottom: 3rem;
}

.ds-team-roster__sub-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}

.ds-team-roster__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-on-surface);
  margin: 0;
}

/* 3-column grid */
.ds-team-roster__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Chip row inside each card */
.ds-team-roster__chips {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.ds-team-roster__bio {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Substitute card modifier */
.ds-player-card--substitute {
  transform: scale(0.85);
  opacity: 0.8;
  transform-origin: top center;
}

.ds-player-card--substitute:hover {
  transform: scale(0.85) translateY(-4px);
  opacity: 1;
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 900px) {
  .ds-team-roster__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ds-team-roster__grid {
    grid-template-columns: 1fr;
  }
  .ds-team-roster__inner {
    padding: 4rem 1.25rem 5rem;
  }
  .ds-player-card--substitute {
    transform: none;
    opacity: 0.8;
  }
  .ds-player-card--substitute:hover {
    transform: translateY(-4px);
  }
}


/* ── T22-3. ACTIVE CHIP VARIANT ── */

.ds-chip--live {
  border-color: rgba(123, 92, 231, 0.5);
  color: var(--color-primary);
  background: rgba(123, 92, 231, 0.08);
}


/* ── T22-4. TITLES & HISTORY SECTION ── */

.ds-team-titles {
  background: var(--color-surface-container-low);
}

.ds-team-titles__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.ds-team-titles__header {
  margin-bottom: 2.5rem;
}

.ds-team-titles__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-team-titles__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ds-team-titles__entry {
  background: var(--color-surface);
  border: 1px solid rgba(123, 92, 231, 0.1);
  border-radius: 0;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}

.ds-team-titles__game {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-team-titles__region {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.ds-team-titles__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

@media (max-width: 600px) {
  .ds-team-titles__inner {
    padding: 3rem 1.25rem;
  }
  .ds-team-titles__list {
    flex-direction: column;
  }
  .ds-team-titles__entry {
    min-width: 0;
  }
}


/* ════════════════════════════════════════════════════════════════════════════
   === T23 ADDITIONS ===
   Results Page · ds-results-page.liquid
════════════════════════════════════════════════════════════════════════════ */


/* ── T23-1. RESULTS HEADER ── */

.ds-results-header {
  background: var(--color-surface);
  position: relative;
  padding-top: 10rem;
  padding-bottom: 64px;
  min-height: 52vh;
  display: flex;
  align-items: center;
}

.ds-results-header.ds-surface::after {
  opacity: 0.02;
}

/* Soft radial lavender glow */
.ds-results-header__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123, 92, 231, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Oversized decorative background text */
.ds-results-header__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 18rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Inner layout container */
.ds-results-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Sub-label eyebrow */
.ds-results-header__sub-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0;
}

/* Display headline */
.ds-results-header__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  line-height: 1;
  margin: 0;
}

@media (max-width: 600px) {
  .ds-results-header {
    padding-top: 7rem;
    min-height: 40vh;
  }
  .ds-results-header__heading {
    font-size: 3rem;
  }
}


/* ── T23-2. FEATURED TILES SECTION ── */

.ds-results-featured {
  background: var(--color-surface);
}

.ds-results-featured__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.ds-results-featured__header {
  margin-bottom: 3rem;
}

.ds-results-featured__sub-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

.ds-results-featured__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-results-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .ds-results-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ds-results-featured__grid {
    grid-template-columns: 1fr;
  }
  .ds-results-featured__inner {
    padding: 3rem 1.25rem 4rem;
  }
}

/* Stagger for featured grid tiles */
.ds-results-featured__grid .ds-animate-in:nth-child(1) { transition-delay: 0ms; }
.ds-results-featured__grid .ds-animate-in:nth-child(2) { transition-delay: 80ms; }
.ds-results-featured__grid .ds-animate-in:nth-child(3) { transition-delay: 160ms; }


/* ── T23-2a. RESULT TILE CARD ── */

.ds-result-tile {
  background: var(--color-surface-container-low);
  border: 1px solid rgba(123, 92, 231, 0.1);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-result-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.ds-result-tile:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.ds-result-tile__placement-wrap {
  padding: 1.5rem 1.5rem 0;
  line-height: 1;
}

.ds-result-tile__placement {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  user-select: none;
}

.ds-result-tile__body {
  padding: 0.75rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.ds-result-tile__event-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-result-tile__meta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0;
}

.ds-result-tile__date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.ds-result-tile__prize {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-win);
  margin: 0;
}

.ds-result-tile__footer {
  padding: 0 1.5rem 1.5rem;
  margin-top: auto;
}

.ds-result-tile__link {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.ds-result-tile__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* ── T23-3. PULL-QUOTE STAT SECTION ── */

.ds-results-pullquote {
  background: var(--color-surface-container-low);
}

.ds-results-pullquote__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.ds-results-pullquote__stat {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
}

.ds-results-pullquote__label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0;
}

.ds-results-pullquote__support {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0;
}

@media (max-width: 600px) {
  .ds-results-pullquote__inner {
    padding: 4rem 1.25rem;
  }
}


/* ── T23-4. FULL RESULTS TABLE SECTION ── */

.ds-results-table-section {
  background: var(--color-surface);
}

.ds-results-table-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

.ds-results-table-section__header {
  margin-bottom: 2.5rem;
}

.ds-results-table-section__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-results-table-section__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}


/* ── T23-4a. YEAR FILTER TABS ── */

.ds-results-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-results-tabs__tab {
  background: transparent;
  border: 1px solid rgba(123, 92, 231, 0.2);
  border-radius: 0;
  color: var(--color-on-surface-variant);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-results-tabs__tab.is-active {
  background: var(--color-primary-container);
  border-color: var(--color-primary-container);
  color: #FFFFFF;
}

.ds-results-tabs__tab:hover:not(.is-active) {
  background: rgba(123, 92, 231, 0.1);
  border-color: var(--color-primary);
  color: var(--color-on-surface);
}

.ds-results-tabs__tab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Sort toggle button */
.ds-results-table-section__sort-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.ds-results-table-section__sort-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* ── T23-4b. DATA TABLE ── */

.ds-results-table-section__scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ds-results-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  min-width: 640px;
}

.ds-results-table__head {
  position: sticky;
  top: 0;
  background: var(--color-surface);
  z-index: 2;
}

/* th — subtle border on bottom edge */
.ds-results-table__th {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-on-surface-variant);
  text-align: left;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(26, 18, 48, 0.1);
  white-space: nowrap;
}

/* td */
.ds-results-table__td {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-on-surface);
  padding: 0.875rem 1rem;
  vertical-align: middle;
}

/* Tonal zebra */
.ds-results-table__body .ds-results-table__row:nth-child(even) {
  background: var(--color-surface-container-low);
}
.ds-results-table__body .ds-results-table__row:nth-child(odd) {
  background: var(--color-surface);
}

/* Hidden row (JS year filter) */
.ds-results-table__row[aria-hidden="true"] {
  display: none;
}

.ds-results-table__td--placement {
  white-space: nowrap;
}

.ds-results-table__td--event {
  min-width: 180px;
}

.ds-results-table__td--prize {
  color: var(--color-win);
  font-weight: 500;
  white-space: nowrap;
}

.ds-results-table__ext-link {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  vertical-align: middle;
  transition: color 0.15s;
}

.ds-results-table__ext-link:hover {
  color: var(--color-secondary);
}

.ds-results-table__ext-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.ds-results-table__empty {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  padding: 3rem 1rem;
  text-align: center;
}

@media (max-width: 600px) {
  .ds-results-table-section__inner {
    padding: 3rem 1.25rem 5rem;
  }
  .ds-results-table-section__controls {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ── ds-content-page ── */

.ds-content-page {
  background: var(--color-surface);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.ds-content-page__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(123, 92, 231, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(224, 64, 200, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.ds-content-page__header {
  position: relative;
  padding: 7rem var(--space-md) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.ds-content-page__header-inner {
  max-width: 640px;
}

.ds-content-page__label {
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-sm);
}

.ds-content-page__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 1rem;
}

.ds-content-page__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0;
  max-width: 48ch;
}

.ds-content-page__creators {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md) var(--space-xl);
}

.ds-content-page__creators-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

/* Creator card */
.ds-creator-card {
  background: var(--color-surface-container-low);
  border: 1px solid rgba(123, 92, 231, 0.1);
  position: relative;
  overflow: visible;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-creator-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.ds-creator-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ds-creator-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Full color — no desaturation on light theme */
}

.ds-creator-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-surface-container-highest);
}

.ds-creator-card__accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(15deg, rgba(123, 92, 231, 0.12), transparent);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  pointer-events: none;
}

.ds-creator-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ds-creator-card__platform {
  color: var(--color-primary);
  font-size: 0.6875rem;
}

.ds-creator-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-creator-card__handle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.ds-creator-card__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0.25rem 0 0;
}

.ds-creator-card__stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-on-surface);
}

.ds-creator-card__stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
}

.ds-creator-card__cta {
  margin-top: 0.75rem;
  align-self: flex-start;
  font-size: 0.75rem;
  padding: 0.625rem 1.25rem;
}

/* Social CTA bar */
.ds-content-page__cta-bar {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid rgba(123, 92, 231, 0.1);
}

.ds-content-page__cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  margin: 0;
  flex: 1;
  max-width: 48ch;
}

@media (max-width: 767px) {
  .ds-content-page__header {
    padding: 6rem 1.25rem var(--space-lg);
  }
  .ds-content-page__creators {
    padding: 0 1.25rem var(--space-lg);
  }
  .ds-content-page__creators-inner {
    grid-template-columns: 1fr;
  }
  .ds-content-page__cta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg) 1.25rem;
  }
}


/* ── ds-contact ── */

.ds-contact {
  background: var(--color-surface);
  min-height: 100vh;
  padding: 7rem var(--space-md) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.ds-contact__header {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.ds-contact__label {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.ds-contact__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 1rem;
}

.ds-contact__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.ds-contact__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.ds-contact__col-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(123, 92, 231, 0.15);
}

.ds-contact__submit {
  margin-top: var(--space-md);
}

.ds-contact__success {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-win);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(34, 197, 94, 0.08);
  border-left: 2px solid var(--color-win);
}

.ds-contact__error {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-error);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(255, 77, 77, 0.08);
  border-left: 2px solid var(--color-error);
}

.ds-contact__col--partnership {
  padding-left: var(--space-lg);
  border-left: 1px solid rgba(123, 92, 231, 0.15);
}

.ds-contact__partnership-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0 0 var(--space-md);
}

.ds-contact__partnership-email {
  margin: 0 0 var(--space-md);
}

.ds-contact__email-link {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease-out;
}
.ds-contact__email-link:hover { color: var(--color-secondary); }
.ds-contact__email-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.ds-contact__partnership-ctas {
  margin-bottom: var(--space-lg);
}

.ds-contact__divider {
  height: 1px;
  background: rgba(123, 92, 231, 0.1);
  margin-bottom: var(--space-lg);
}

.ds-contact__detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ds-contact__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
}

.ds-contact__detail .ds-label {
  color: var(--color-primary);
  font-size: 0.6875rem;
}

@media (max-width: 767px) {
  .ds-contact {
    padding: 6rem 1.25rem var(--space-xl);
  }
  .ds-contact__body {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .ds-contact__col--partnership {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(123, 92, 231, 0.1);
    padding-top: var(--space-lg);
  }
}


/* ── ds-404 ── */

.ds-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-surface);
  position: relative;
}

.ds-404__number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-surface-container-highest);
  user-select: none;
  pointer-events: none;
  margin-bottom: -2rem;
}

.ds-404__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 1rem;
}

.ds-404__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0 0 2.5rem;
  max-width: 32ch;
}

@media (max-width: 600px) {
  .ds-404__number {
    font-size: clamp(6rem, 28vw, 8rem);
  }
}


/* ── NEW UTILITY CLASSES — Brand Decorative ── */

/* Japanese/calligraphy accent text */
.ds-japanese-text {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 900;
  color: var(--color-japanese-accent);
  letter-spacing: -0.01em;
  line-height: 1;
}

.ds-calligraphy {
  font-family: var(--font-calligraphy);
  color: var(--color-primary);
}

/* Decorative wiggly line SVG element */
.ds-wiggle {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
  color: var(--color-primary);
}


/* ── Navigation CTA Button ── */

.ds-nav__cta {
  display: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}

@media (min-width: 1024px) {
  .ds-nav__cta {
    display: inline-flex;
    align-items: center;
    margin-right: 2rem;
  }
}

.ds-nav__cta:hover {
  background-color: var(--color-primary-dark, #6B3FA0);
}


/* ── RESULTS PREVIEW SECTION ── */

.ds-results-preview {
  background: var(--color-surface-container-high);
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem);
}

.ds-results-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.ds-results-preview__header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.ds-results-preview__sublabel {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.ds-results-preview__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-on-surface);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}

/* ── Featured + List Grid ── */
.ds-results-preview__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ── Featured Result Tile ── */
.ds-results-preview__featured {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  gap: 1.5rem;
}

.ds-results-preview__featured-label {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  opacity: 0.7;
}

.ds-results-preview__featured-placement {
  font-family: var(--font-secondary);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0;
}

.ds-results-preview__featured-event {
  font-family: var(--font-secondary);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0;
  line-height: 1.2;
}

.ds-results-preview__featured-meta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── List ── */
.ds-results-preview__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-results-preview__list-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.ds-results-preview__list-row:last-child {
  border-bottom: none;
}

.ds-results-preview__list-placement {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  min-width: 3rem;
  text-align: center;
}

.ds-results-preview__list-event {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-results-preview__list-date {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  text-align: right;
  white-space: nowrap;
}

/* ── Empty State ── */
.ds-results-preview__empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
}

.ds-results-preview__empty-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── CTA Footer ── */
.ds-results-preview__footer {
  text-align: center;
  padding-top: clamp(1rem, 2vw, 2rem);
}

/* ── Animation ── */
.ds-results-preview .ds-animate-in {
  animation: ds-reveal 0.6s cubic-bezier(0.0, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.ds-results-preview__content .ds-animate-in:nth-child(1) {
  animation-delay: 0ms;
}

.ds-results-preview__content .ds-animate-in:nth-child(2) {
  animation-delay: 100ms;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ds-results-preview__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ds-results-preview__featured {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .ds-results-preview {
    padding: 2rem 1rem;
  }

  .ds-results-preview__heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .ds-results-preview__featured-placement {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .ds-results-preview__list-row {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .ds-results-preview__list-date {
    grid-column: 2;
    text-align: left;
  }
}



/* ══════════════════════════════════════════════════════════════
   DS-SQUAD-GATEWAY — 3-Column Roster Gateway Grid
   sections/ds-squad-gateway.liquid
   ══════════════════════════════════════════════════════════════ */

.ds-squad-gateway {
  background: var(--color-surface);
  padding: 6rem 2rem;
}

.ds-squad-gateway__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Header ── */
.ds-squad-gateway__header {
  margin-bottom: 3.5rem;
}

.ds-squad-gateway__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary-accent);
  margin: 0 0 0.75rem;
}

.ds-squad-gateway__title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.ds-squad-gateway__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  margin: 0;
}

/* ── Grid ── */
.ds-squad-gateway__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Card ── */
.ds-squad-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-container-high);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Card Image Wrap ── */
.ds-squad-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}

.ds-squad-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle purple gradient overlay on image bottom — pulls content up visually */
.ds-squad-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(107, 78, 245, 0.08) 100%
  );
  pointer-events: none;
}

/* ── Card Content ── */
.ds-squad-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  gap: 0.75rem;
}

.ds-squad-card__content-inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ds-squad-card__meta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.ds-squad-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  margin: 0;
  line-height: 1.1;
}

.ds-squad-card__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary-accent);
  margin-top: 1rem;
  transition: color 0.15s ease-out,
              gap 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-squad-card__arrow {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Focus visible ── */
.ds-squad-card:focus-visible {
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 2px;
}

/* ── Hover — desktop only ── */
@media (hover: hover) {
  .ds-squad-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-card);
  }

  .ds-squad-card:hover .ds-squad-card__image {
    transform: scale(1.05);
  }

  .ds-squad-card:hover .ds-squad-card__cta {
    color: var(--color-secondary);
    text-decoration: underline;
    gap: 0.75rem;
  }

  .ds-squad-card:hover .ds-squad-card__arrow {
    transform: translateX(4px);
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ds-squad-card,
  .ds-squad-card__image,
  .ds-squad-card__cta,
  .ds-squad-card__arrow {
    transition: none;
  }
}

/* ── Responsive: tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .ds-squad-gateway__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ds-squad-gateway {
    padding: 4rem 1.5rem;
  }
}

/* ── Responsive: mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .ds-squad-gateway__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ds-squad-gateway {
    padding: 4rem 1.25rem;
  }

  .ds-squad-card__title {
    font-size: 1.25rem;
  }
}


/* ════════════════════════════════════════════════════════════
   HERO VARIATIONS V4–V8
   All classes scoped to .ds-hero-v4 through .ds-hero-v8
   to prevent bleed into existing sections.
   ════════════════════════════════════════════════════════════ */


/* ── New shared keyframes ── */

@keyframes ds-split-reveal {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes ds-num-appear {
  from { opacity: 0; }
  to   { opacity: 0.05; }
}

@keyframes ds-sakura-bloom {
  from { opacity: 0; transform: scale(0.93) rotate(-22deg); }
  to   { opacity: 1; transform: scale(1) rotate(-19deg); }
}

@keyframes ds-sakura-bloom-v8 {
  from { opacity: 0; transform: scale(0.94) rotate(-22deg); }
  to   { opacity: 1; transform: scale(1) rotate(-18deg); }
}

@keyframes ds-branch-slide {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes ds-word-compress {
  from { opacity: 0; letter-spacing: 0.8em; }
  to   { opacity: 1; letter-spacing: 0.04em; }
}


/* ── HERO VARIATION 4 (V4) — Editorial Split: White left / Gradient right ── */

.ds-hero-v4 {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  overflow: hidden;
}

/* Left panel — white, all text content, dark text */
.ds-hero-v4__left {
  position: relative;
  flex: 0 0 45%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 10rem 3rem 6rem 3rem;
  overflow: hidden;
  z-index: 2;
}

/* Right panel — purple-to-cyan gradient with diagonal left edge */
.ds-hero-v4__right {
  position: relative;
  flex: 0 0 55%;
  background: linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  clip-path: polygon(32px 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(32px 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  z-index: 1;
}

/* Vertical seam accent line — scaleY reveal from top */
.ds-hero-v4__seam {
  position: absolute;
  left: calc(45% - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: #6B4EF5;
  transform: scaleY(0);
  transform-origin: top;
  animation: ds-split-reveal 0.3s ease 0.15s forwards;
  z-index: 10;
  pointer-events: none;
}

/* Calligraphic "DS" watermark — bottom-left of left panel */
.ds-hero-v4__brand-mark {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: clamp(6rem, 14vw, 12rem);
  color: #6B4EF5;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* Content column inside left panel */
.ds-hero-v4__content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 1;
}

/* Left panel text — dark (inherits --color-on-surface = #1A1A1A) */
.ds-hero-v4__headline {
  color: var(--color-on-surface);
}

.ds-hero-v4__hl-bot {
  color: var(--color-primary);
}

.ds-hero-v4__subheading {
  color: var(--color-on-surface-variant);
  max-width: 480px;
}

.ds-hero-v4__hashtag {
  color: var(--color-on-surface-muted);
}

/* Headline entrance animations — on span elements (leaf), not wrappers */
.ds-hero-v4 .ds-hero__hl-top { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.4s both; }
.ds-hero-v4 .ds-hero__hl-mid { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v4 .ds-hero-v4__hl-bot { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.6s both; }
.ds-hero-v4 .ds-hero__meta     { animation: ds-fade-up 0.35s ease 0.7s both; }
.ds-hero-v4 .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.75s both; }
.ds-hero-v4 .ds-hero__ctas     { animation: ds-fade-up 0.35s ease 0.8s both; }

/* Car — absolutely positioned in right panel, bleeds top+right */
.ds-hero-v4__visual {
  position: absolute;
  top: -5%;
  right: -4%;
  width: 85%;
  max-width: none;
  z-index: 3;
  pointer-events: none;
}

.ds-hero-v4__car {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.5);
  animation: ds-car-enter 0.35s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

/* V4 Mobile — stack vertically */
@media (max-width: 767px) {
  .ds-hero-v4 {
    flex-direction: column;
  }

  .ds-hero-v4__left {
    flex: none;
    width: 100%;
    padding: 8rem 1.25rem 3rem;
  }

  .ds-hero-v4__right {
    flex: none;
    width: 100%;
    min-height: 40vh;
    clip-path: none;
    -webkit-clip-path: none;
  }

  .ds-hero-v4__seam {
    display: none;
  }

  .ds-hero-v4__visual {
    top: -8%;
    right: -6%;
    width: 90%;
  }

  .ds-hero-v4__brand-mark {
    font-size: clamp(4rem, 28vw, 8rem);
  }
}


/* ── HERO VARIATION 5 (V5) — Tactical Grid: Dark data dashboard ── */

.ds-hero-v5 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0D0A1A;
  background-image:
    linear-gradient(rgba(107, 78, 245, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 78, 245, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Giant decorative "01" numeral — behind everything */
.ds-hero-v5__numeral {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(16rem, 32vw, 38rem);
  color: #6B4EF5;
  opacity: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: ds-num-appear 0.4s ease 0.2s forwards;
}

/* Left bracket line — scaleY reveal */
.ds-hero-v5__bracket {
  position: absolute;
  left: 2rem;
  top: 10%;
  bottom: 22%;
  width: 1px;
  background: rgba(107, 78, 245, 0.25);
  transform: scaleY(0);
  transform-origin: top;
  animation: ds-split-reveal 0.3s ease 0.2s forwards;
  z-index: 4;
  pointer-events: none;
}

/* Car — centre-right, vertically centred */
.ds-hero-v5__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
  max-width: 880px;
  z-index: 3;
  pointer-events: none;
}

.ds-hero-v5__car {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.5);
  animation: ds-car-enter 0.35s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

/* Content inner wrapper — top-left */
.ds-hero-v5__inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 2rem 8rem 4rem;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  z-index: 5;
}

.ds-hero-v5__content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Text overrides — all white on dark surface */
.ds-hero-v5 .ds-hero__eyebrow { color: rgba(255, 255, 255, 0.5); }
.ds-hero-v5 .ds-hero__headline { color: rgba(255, 255, 255, 0.92); }
.ds-hero-v5 .ds-hero__subheading { color: rgba(255, 255, 255, 0.55); max-width: 480px; }
.ds-hero-v5 .ds-hero__hashtag { color: rgba(255, 255, 255, 0.3); }

/* Headline entrance animations — on span elements only */
.ds-hero-v5 .ds-hero__hl-top { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.4s both; }
.ds-hero-v5 .ds-hero__hl-mid { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v5 .ds-hero__hl-bot { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.6s both; }
.ds-hero-v5 .ds-hero__meta     { animation: ds-fade-up 0.35s ease 0.7s both; }
.ds-hero-v5 .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.75s both; }
.ds-hero-v5 .ds-hero__ctas     { animation: ds-fade-up 0.35s ease 0.8s both; }

/* Stat strip — full-width pinned to bottom */
.ds-hero-v5__stat-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(107, 78, 245, 0.15);
  z-index: 6;
  background: rgba(13, 10, 26, 0.8);
}

.ds-hero-v5__stat {
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid rgba(107, 78, 245, 0.1);
}

.ds-hero-v5__stat:last-child {
  border-right: none;
}

.ds-hero-v5__stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  letter-spacing: 0.04em;
}

.ds-hero-v5__stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00D4E8;
}

/* Stat strip entrance stagger */
.ds-hero-v5__stat--1 { animation: ds-fade-up 0.35s ease 0.7s both; }
.ds-hero-v5__stat--2 { animation: ds-fade-up 0.35s ease 0.75s both; }
.ds-hero-v5__stat--3 { animation: ds-fade-up 0.35s ease 0.8s both; }

/* V5 Mobile */
@media (max-width: 767px) {
  .ds-hero-v5__visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: -1rem;
  }

  .ds-hero-v5__inner {
    flex-direction: column;
    padding: 7rem 1.25rem 3rem;
  }

  .ds-hero-v5__numeral {
    font-size: clamp(10rem, 50vw, 18rem);
    right: -5%;
    opacity: 0;
    animation: ds-num-appear 0.4s ease 0.2s forwards;
  }

  .ds-hero-v5__bracket {
    display: none;
  }

  .ds-hero-v5__stat-strip {
    position: relative;
    grid-template-columns: 1fr;
    border-top: none;
    margin-top: 2rem;
  }

  .ds-hero-v5__stat {
    border-right: none;
    border-top: 1px solid rgba(107, 78, 245, 0.15);
    padding: 0.875rem 1.25rem;
  }
}


/* ── HERO VARIATION 6 (V6) — Cinematic Immersion: Full-bleed photo ── */

.ds-hero-v6 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0A0815;
}

/* Full-bleed background photo — <img> element, not CSS background */
.ds-hero-v6__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.65) saturate(0.5);
  z-index: 0;
}

/* Gradient darkening overlay — heaviest at bottom */
.ds-hero-v6__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 21, 0.1) 0%,
    rgba(10, 8, 21, 0.75) 65%,
    rgba(10, 8, 21, 0.98) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Sakura prop — top-right, full colour (NOT grayscaled) */
.ds-hero-v6__sakura-wrap {
  position: absolute;
  top: -10%;
  right: -6%;
  width: 36%;
  max-width: 560px;
  z-index: 3;
  pointer-events: none;
}

.ds-hero-v6__sakura {
  display: block;
  width: 100%;
  height: auto;
  /* intentionally NOT filtered — blossom stays full colour */
  animation: ds-sakura-bloom 0.35s cubic-bezier(0, 0, 0.2, 1) 0.2s both;
}

/* Car — centre, lower-middle of frame, z:4 */
.ds-hero-v6__visual {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  width: 52%;
  max-width: 760px;
  z-index: 4;
  pointer-events: none;
}

.ds-hero-v6__car {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.5);
  animation: ds-car-enter 0.35s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

/* Inner — bottom-anchored flex, content left-aligned */
.ds-hero-v6__inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 5;
}

/* Content block with glass backdrop */
.ds-hero-v6__content {
  max-width: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Glass panel via ::before pseudoelement — no inline styles */
.ds-hero-v6__content::before {
  content: '';
  position: absolute;
  inset: -1.5rem;
  background: rgba(10, 8, 21, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}

/* Text overrides — white on dark */
.ds-hero-v6 .ds-hero__eyebrow   { color: rgba(255, 255, 255, 0.5); }
.ds-hero-v6 .ds-hero__headline  { color: rgba(255, 255, 255, 0.93); }
.ds-hero-v6 .ds-hero__subheading { color: rgba(255, 255, 255, 0.6); max-width: 520px; }
.ds-hero-v6 .ds-hero__hashtag   { color: rgba(255, 255, 255, 0.3); }

/* Content entrance animations */
.ds-hero-v6 .ds-hero__meta       { animation: ds-fade-up 0.35s ease 0.4s both; }
.ds-hero-v6 .ds-hero__hl-top     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v6 .ds-hero__hl-mid     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.55s both; }
.ds-hero-v6 .ds-hero__hl-bot     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.6s both; }
.ds-hero-v6 .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.7s both; }
.ds-hero-v6 .ds-hero__ctas       { animation: ds-fade-up 0.35s ease 0.8s both; }

/* V6 Mobile */
@media (max-width: 767px) {
  .ds-hero-v6__sakura-wrap {
    width: 45%;
  }

  .ds-hero-v6__visual {
    width: 75%;
    bottom: 30%;
  }

  .ds-hero-v6__inner {
    padding: 0 1.25rem 4rem;
  }

  .ds-hero-v6__content::before {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}


/* ── HERO VARIATION 7 (V7) — Typographic Monument: Giant letterforms ── */

.ds-hero-v7 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Car — z:0, positioned BEHIND the type block */
.ds-hero-v7__visual {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  width: 68%;
  max-width: 1000px;
  z-index: 0;
  pointer-events: none;
}

.ds-hero-v7__car {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.5);
  animation: ds-car-enter 0.35s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

/*
  Type block — z:1, mix-blend-mode: difference on the BLOCK (not words).
  This creates the inversion effect where the car shows through the letterforms.
  CRITICAL: mix-blend-mode creates a stacking context — this is intentional here.
*/
.ds-hero-v7__type-block {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
  line-height: 0.88;
  user-select: none;
  padding: 0 1rem;
}

/* Individual words — edge-to-edge width */
.ds-hero-v7__word {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16vw, 20vw, 24vw);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Word compress entrance animation */
.ds-hero-v7__word--dream {
  animation: ds-word-compress 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.ds-hero-v7__word--station {
  animation: ds-word-compress 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Content strip — below type block, z:5 (above blend context) */
.ds-hero-v7__strip {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding: 2rem 2rem 4rem;
}

.ds-hero-v7__subheading {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 440px;
}

.ds-hero-v7__ctas {
  margin-top: 0;
}

.ds-hero-v7 .ds-hero__eyebrow  { color: rgba(255, 255, 255, 0.6); }
.ds-hero-v7 .ds-hero__hashtag  { color: rgba(255, 255, 255, 0.35); margin: 0; }

/* V7 Mobile */
@media (max-width: 767px) {
  .ds-hero-v7__word {
    font-size: clamp(14vw, 16vw, 20vw);
  }

  .ds-hero-v7__strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem 3rem;
    gap: 1rem;
  }

  .ds-hero-v7__subheading {
    max-width: 100%;
  }
}


/* ── HERO VARIATION 8 (V8) — Sakura Depth: Blossom occludes car ── */

.ds-hero-v8 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(160deg, #0A0815 0%, #1A0845 40%, #2A1060 100%);
}

/* Grain override — 12% opacity for this variation */
.ds-hero-v8.ds-surface::after {
  opacity: 0.12;
}

/* Sakura branch — top-left, z:4, slides in from left */
.ds-hero-v8__sakura-branch {
  position: absolute;
  top: -3%;
  left: -5%;
  width: 30%;
  max-width: 400px;
  z-index: 4;
  pointer-events: none;
}

/* Animate the img tag — NOT the wrapper */
.ds-hero-v8__branch-img {
  display: block;
  width: 100%;
  height: auto;
  animation: ds-branch-slide 0.35s cubic-bezier(0, 0, 0.2, 1) 0.3s both;
}

/* Car — z:3, right side. Sakura main (z:4) occludes car's top half */
.ds-hero-v8__visual {
  position: absolute;
  right: 3%;
  top: 38%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 880px;
  z-index: 3;
  pointer-events: none;
}

/* Animate the img tag — NOT the wrapper */
.ds-hero-v8__car {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.5);
  animation: ds-car-enter 0.35s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

/* Sakura main — top-right, LARGE, z:4 (above car z:3).
   Full colour — intentionally NOT grayscaled or filtered. */
.ds-hero-v8__sakura-main {
  position: absolute;
  top: -14%;
  right: -8%;
  width: 55%;
  max-width: 820px;
  z-index: 4;
  pointer-events: none;
}

/* Animate the img tag — NOT the wrapper */
.ds-hero-v8__sakura-img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(-18deg);
  animation: ds-sakura-bloom-v8 0.35s cubic-bezier(0, 0, 0.2, 1) 0.15s both;
}

/* Diagonal frames — reduced opacity for moody dark bg */
.ds-hero-v8__frame {
  opacity: 0.3;
}

/* Inner content wrapper */
.ds-hero-v8__inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  z-index: 5;
}

.ds-hero-v8__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Text overrides — white on dark moody bg */
.ds-hero-v8 .ds-hero__eyebrow   { color: rgba(255, 255, 255, 0.5); }
.ds-hero-v8 .ds-hero__headline  { color: rgba(255, 255, 255, 0.93); }
.ds-hero-v8 .ds-hero__subheading { color: rgba(255, 255, 255, 0.6); max-width: 500px; }
.ds-hero-v8 .ds-hero__hashtag   { color: rgba(255, 255, 255, 0.3); }

/* Headline entrance animations — on span elements only */
.ds-hero-v8 .ds-hero__hl-top { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.4s both; }
.ds-hero-v8 .ds-hero__hl-mid { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v8 .ds-hero__hl-bot { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.6s both; }
.ds-hero-v8 .ds-hero__meta     { animation: ds-fade-up 0.35s ease 0.7s both; }
.ds-hero-v8 .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.75s both; }
.ds-hero-v8 .ds-hero__ctas     { animation: ds-fade-up 0.35s ease 0.8s both; }

/* V8 Mobile */
@media (max-width: 767px) {
  .ds-hero-v8__sakura-branch {
    display: none;
  }

  .ds-hero-v8__sakura-main {
    width: 55%;
    opacity: 0.7;
    right: -4%;
    top: -8%;
  }

  .ds-hero-v8__visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: -1rem;
    z-index: 3;
  }

  .ds-hero-v8__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 1.25rem 3rem;
  }
}


/* ── Reduced motion: V4–V8 additions ── */
@media (prefers-reduced-motion: reduce) {
  /* V4 */
  .ds-hero-v4__seam,
  .ds-hero-v4__car,
  .ds-hero-v4 .ds-hero__hl-top,
  .ds-hero-v4 .ds-hero__hl-mid,
  .ds-hero-v4 .ds-hero-v4__hl-bot,
  .ds-hero-v4 .ds-hero__meta,
  .ds-hero-v4 .ds-hero__subheading,
  .ds-hero-v4 .ds-hero__ctas,
  /* V5 */
  .ds-hero-v5__numeral,
  .ds-hero-v5__bracket,
  .ds-hero-v5__car,
  .ds-hero-v5 .ds-hero__hl-top,
  .ds-hero-v5 .ds-hero__hl-mid,
  .ds-hero-v5 .ds-hero__hl-bot,
  .ds-hero-v5 .ds-hero__meta,
  .ds-hero-v5 .ds-hero__subheading,
  .ds-hero-v5 .ds-hero__ctas,
  .ds-hero-v5__stat--1,
  .ds-hero-v5__stat--2,
  .ds-hero-v5__stat--3,
  /* V6 */
  .ds-hero-v6__sakura,
  .ds-hero-v6__car,
  .ds-hero-v6 .ds-hero__meta,
  .ds-hero-v6 .ds-hero__hl-top,
  .ds-hero-v6 .ds-hero__hl-mid,
  .ds-hero-v6 .ds-hero__hl-bot,
  .ds-hero-v6 .ds-hero__subheading,
  .ds-hero-v6 .ds-hero__ctas,
  /* V7 */
  .ds-hero-v7__car,
  .ds-hero-v7__word--dream,
  .ds-hero-v7__word--station,
  /* V8 */
  .ds-hero-v8__branch-img,
  .ds-hero-v8__car,
  .ds-hero-v8__sakura-img,
  .ds-hero-v8 .ds-hero__hl-top,
  .ds-hero-v8 .ds-hero__hl-mid,
  .ds-hero-v8 .ds-hero__hl-bot,
  .ds-hero-v8 .ds-hero__meta,
  .ds-hero-v8 .ds-hero__subheading,
  .ds-hero-v8 .ds-hero__ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* Restore V4 seam line — make it visible without animation */
  .ds-hero-v4__seam {
    transform: scaleY(1);
  }

  /* Restore V5 numeral opacity */
  .ds-hero-v5__numeral {
    opacity: 0.05;
  }

  /* Restore V5 bracket */
  .ds-hero-v5__bracket {
    transform: scaleY(1);
  }

  /* Restore V8 sakura rotation */
  .ds-hero-v8__sakura-img {
    transform: rotate(-18deg);
  }
}


/* ════════════════════════════════════════════════════════════
   HERO VARIATIONS V9 · V10 · V11
   ════════════════════════════════════════════════════════════ */

/* ── New keyframes ── */

@keyframes ds-car-enter-right {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes ds-script-enter {
  from { opacity: 0; transform: translateY(20px) rotate(-1deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}


/* ════════════════════════════════════════════════════════════
   HERO VARIATION 9 (V9) — Cinematic Evolved
   Full-bleed photo · Car exits right · Kanji watermark
   ════════════════════════════════════════════════════════════ */

.ds-hero-v9 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #07050F;
}

/* Full-bleed background photo */
.ds-hero-v9__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.4);
  z-index: 0;
}

/* Dual overlay: left purple tint + bottom dark gradient */
.ds-hero-v9__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(107, 78, 245, 0.28) 0%,
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(7, 5, 15, 0.05) 0%,
      rgba(7, 5, 15, 0.65) 55%,
      rgba(7, 5, 15, 0.97) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* "夢をいつも。" — vertical Japanese accent, right side */
.ds-hero-v9__yume {
  position: absolute;
  right: 3.5%;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 3rem);
  letter-spacing: 0.12em;
  line-height: 1;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-secondary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  animation: ds-fade-up 0.4s ease 0.2s both;
}

/* Gradient accent line — left edge of content area */
.ds-hero-v9__accent-line {
  position: absolute;
  left: 2.25rem;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #6B4EF5 30%, #00D4E8 70%, transparent);
  z-index: 3;
  pointer-events: none;
  animation: ds-split-reveal 0.35s ease 0.15s both;
}

/* Inner — vertically centred, content left */
.ds-hero-v9__inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 6;
}

/* Content block with glass panel + left accent border */
.ds-hero-v9__content {
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ds-hero-v9__content::before {
  content: '';
  position: absolute;
  inset: -1.75rem -1.5rem;
  background: rgba(7, 5, 15, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 2px solid rgba(200, 191, 255, 0.12);
  z-index: -1;
}

/* Text colour overrides */
.ds-hero-v9 .ds-hero__eyebrow   { color: rgba(255, 255, 255, 0.5); }
.ds-hero-v9 .ds-hero__headline  { color: rgba(255, 255, 255, 0.93); }
.ds-hero-v9 .ds-hero__subheading { color: rgba(255, 255, 255, 0.6); max-width: 520px; }
.ds-hero-v9 .ds-hero__hashtag   { color: rgba(255, 255, 255, 0.28); }

/* Staggered entrance animations */
.ds-hero-v9 .ds-hero__meta       { animation: ds-fade-up 0.35s ease 0.35s both; }
.ds-hero-v9 .ds-hero__hl-top     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.45s both; }
.ds-hero-v9 .ds-hero__hl-mid     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v9 .ds-hero__hl-bot     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.55s both; }
.ds-hero-v9 .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.65s both; }
.ds-hero-v9 .ds-hero__ctas       { animation: ds-fade-up 0.35s ease 0.75s both; }

/* V9 Mobile */
@media (max-width: 767px) {
  .ds-hero-v9__yume {
    font-size: 1.1rem;
    right: 2%;
    opacity: 0.16;
  }

  .ds-hero-v9__accent-line {
    left: 1.5rem;
    top: 10%;
    bottom: 10%;
  }

  .ds-hero-v9__inner {
    padding: 0 1.5rem;
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .ds-hero-v9__content {
    max-width: 100%;
  }

  .ds-hero-v9__content::before {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}


/* ════════════════════════════════════════════════════════════
   HERO VARIATION 10 (V10) — Script Collision
   Calligraphic D + bold REAMSTATION + car top-right
   ════════════════════════════════════════════════════════════ */

.ds-hero-v10 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0B0418;
}

/* Radial gradient background layer */
.ds-hero-v10__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(180, 80, 200, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 212, 232, 0.07) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

/* Car — top-right, bleeds off top and right edges */
.ds-hero-v10__visual {
  position: absolute;
  top: -5%;
  right: -4%;
  width: 46%;
  max-width: 680px;
  z-index: 3;
  pointer-events: none;
}

.ds-hero-v10__car {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.3);
  animation: ds-car-enter 0.35s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

/* Visual type stage — full section, aria-hidden */
.ds-hero-v10__type-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-left: 3%;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

/* Giant script "D" — Great Vibes calligraphy */
.ds-hero-v10__script-d {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(18vw, 24vw, 32vw);
  font-weight: 400;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.88);
  display: block;
  animation: ds-script-enter 0.35s cubic-bezier(0, 0, 0.2, 1) 0.1s both;
}

/* Bold group: REAM + STATION stacked to the right of D */
.ds-hero-v10__bold-group {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  margin-left: -2vw;
}

.ds-hero-v10__ream {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: clamp(12vw, 17vw, 22vw);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  line-height: 0.88;
  display: block;
  animation: ds-word-compress 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.ds-hero-v10__station {
  font-family: 'Bebas Neue', 'Bebas Neue', sans-serif;
  font-size: clamp(7vw, 11vw, 14vw);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 191, 255, 0.5);
  letter-spacing: -0.01em;
  line-height: 0.92;
  display: block;
  animation: ds-word-compress 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.28s both;
}

/* Kanji outline watermark — bottom-right */
.ds-hero-v10__kanji {
  position: absolute;
  bottom: -2%;
  right: 2%;
  font-size: 20vw;
  line-height: 1;
  font-family: 'Noto Sans JP', 'Bebas Neue', sans-serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 191, 255, 0.1);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Bottom content strip */
.ds-hero-v10__content {
  position: absolute;
  bottom: 3rem;
  left: 4%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 520px;
}

.ds-hero-v10__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ds-hero-v10__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Text overrides */
.ds-hero-v10 .ds-hero__eyebrow { color: rgba(255, 255, 255, 0.45); }

/* Entrance animations for bottom content */
.ds-hero-v10__meta  { animation: ds-fade-up 0.35s ease 0.55s both; }
.ds-hero-v10__sub   { animation: ds-fade-up 0.35s ease 0.65s both; }
.ds-hero-v10 .ds-hero__ctas { animation: ds-fade-up 0.35s ease 0.72s both; }

/* V10 Mobile */
@media (max-width: 767px) {
  .ds-hero-v10__visual {
    width: 65%;
    top: -2%;
    right: -6%;
  }

  .ds-hero-v10__type-stage {
    padding-left: 2%;
    align-items: flex-start;
    padding-top: 18vw;
  }

  .ds-hero-v10__script-d {
    font-size: clamp(22vw, 30vw, 40vw);
  }

  .ds-hero-v10__ream {
    font-size: clamp(16vw, 22vw, 28vw);
  }

  .ds-hero-v10__station {
    font-size: clamp(10vw, 14vw, 18vw);
  }

  .ds-hero-v10__kanji {
    font-size: 32vw;
    bottom: 18%;
  }

  .ds-hero-v10__content {
    bottom: 2rem;
    left: 1.25rem;
    max-width: calc(100% - 2.5rem);
  }
}


/* ════════════════════════════════════════════════════════════
   HERO VARIATION 11 (V11) — Stadium Split
   Dark editorial left panel · Cinematic photo right · Car at seam
   ════════════════════════════════════════════════════════════ */

.ds-hero-v11 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #08051A;
}

/* ── Right photo panel ── */
.ds-hero-v11__photo-panel {
  position: absolute;
  left: 44%;
  right: 0;
  top: 0;
  bottom: 0;
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  z-index: 0;
}

.ds-hero-v11__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.45) saturate(0.35);
}

/* Subtle cyan tint overlay on photo panel */
.ds-hero-v11__photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 212, 232, 0.04) 100%
  );
  pointer-events: none;
}

/* ── Left editorial panel ── */
.ds-hero-v11__editorial {
  position: relative;
  width: 52%;
  min-height: 100vh;
  background: #08051A;
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
  padding-right: 100px;
  z-index: 2;
  display: flex;
  align-items: center;
  background-image: radial-gradient(
    ellipse at 0% 80%,
    rgba(107, 78, 245, 0.14) 0%,
    transparent 60%
  );
}

/* Vertical Japanese watermark — left edge of editorial panel */
.ds-hero-v11__kanji-bg {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Noto Sans JP', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.1vw, 1rem);
  letter-spacing: 0.2em;
  color: var(--color-primary-container);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

/* Content block inside editorial panel */
.ds-hero-v11__content {
  position: relative;
  padding: 8rem 0 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 580px;
  z-index: 1;
}

/* Headline sizing override for V11 */
.ds-hero-v11__headline .ds-hero__hl-top,
.ds-hero-v11__headline .ds-hero__hl-mid,
.ds-hero-v11__headline .ds-hero__hl-bot {
  display: block;
}

/* Text colour overrides */
.ds-hero-v11 .ds-hero__eyebrow   { color: rgba(255, 255, 255, 0.45); }
.ds-hero-v11 .ds-hero__headline  { color: rgba(255, 255, 255, 0.93); }
.ds-hero-v11 .ds-hero__subheading { color: rgba(255, 255, 255, 0.58); max-width: 460px; }
.ds-hero-v11 .ds-hero__hashtag   { color: rgba(255, 255, 255, 0.25); }

/* Seam gradient accent line — right edge of editorial panel */
.ds-hero-v11__seam {
  position: absolute;
  right: 79px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-primary-container) 25%,
    var(--color-secondary-accent) 75%,
    transparent 100%
  );
  transform: scaleY(0);
  transform-origin: top;
  animation: ds-split-reveal 0.35s ease 0.15s forwards;
  z-index: 10;
  pointer-events: none;
}

/* Car — straddles the split seam, z:5 above both panels */
.ds-hero-v11__visual {
  position: absolute;
  bottom: 0;
  left: 38%;
  transform: translateX(-50%);
  width: 46%;
  max-width: 660px;
  z-index: 5;
  pointer-events: none;
}

.ds-hero-v11__car {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.25);
  animation: ds-car-enter 0.35s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
}

/* Staggered content entrance animations */
.ds-hero-v11 .ds-hero__meta       { animation: ds-fade-up 0.35s ease 0.4s both; }
.ds-hero-v11 .ds-hero__hl-top     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v11 .ds-hero__hl-mid     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.55s both; }
.ds-hero-v11 .ds-hero__hl-bot     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.6s both; }
.ds-hero-v11 .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.7s both; }
.ds-hero-v11 .ds-hero__ctas       { animation: ds-fade-up 0.35s ease 0.8s both; }

/* V11 Mobile */
@media (max-width: 767px) {
  .ds-hero-v11__editorial {
    width: 100%;
    clip-path: none;
    -webkit-clip-path: none;
    padding-right: 0;
    min-height: 75vh;
  }

  .ds-hero-v11__photo-panel {
    left: 0;
    top: auto;
    bottom: 0;
    height: 25%;
    clip-path: none;
    -webkit-clip-path: none;
    z-index: 0;
  }

  .ds-hero-v11__seam {
    display: none;
  }

  .ds-hero-v11__content {
    padding: 7rem 1.5rem 3rem;
    max-width: 100%;
  }

  .ds-hero-v11__kanji-bg {
    font-size: 0.65rem;
    opacity: 0.05;
  }

  .ds-hero-v11__visual {
    position: relative;
    left: auto;
    transform: none;
    width: 80%;
    margin: 0 auto;
    bottom: auto;
  }
}


/* ── Reduced motion — V9 / V10 / V11 ── */
@media (prefers-reduced-motion: reduce) {
  /* V9 */
  .ds-hero-v9__yume,
  .ds-hero-v9__accent-line,
  .ds-hero-v9 .ds-hero__meta,
  .ds-hero-v9 .ds-hero__hl-top,
  .ds-hero-v9 .ds-hero__hl-mid,
  .ds-hero-v9 .ds-hero__hl-bot,
  .ds-hero-v9 .ds-hero__subheading,
  .ds-hero-v9 .ds-hero__ctas,
  /* V10 */
  .ds-hero-v10__car,
  .ds-hero-v10__script-d,
  .ds-hero-v10__ream,
  .ds-hero-v10__station,
  .ds-hero-v10__meta,
  .ds-hero-v10__sub,
  .ds-hero-v10 .ds-hero__ctas,
  /* V11 */
  .ds-hero-v11__car,
  .ds-hero-v11__seam,
  .ds-hero-v11 .ds-hero__meta,
  .ds-hero-v11 .ds-hero__hl-top,
  .ds-hero-v11 .ds-hero__hl-mid,
  .ds-hero-v11 .ds-hero__hl-bot,
  .ds-hero-v11 .ds-hero__subheading,
  .ds-hero-v11 .ds-hero__ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* Restore V11 seam line — make it visible without animation */
  .ds-hero-v11__seam {
    transform: scaleY(1);
  }
}


/* ════════════════════════════════════════════════════════════
   HERO V9A — WEIGHT
   ds-mainevent.jpg · Content bottom-anchored · Large
   horizontal 夢をいつも。watermark · No car · No blossom
   ════════════════════════════════════════════════════════════ */

.ds-hero-v9a {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #06040E;
}

.ds-hero-v9a__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.38) saturate(0.32) contrast(1.05);
  z-index: 0;
}

/* Strong purple from left + heavy bottom fade */
.ds-hero-v9a__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(107, 78, 245, 0.48) 0%, rgba(107, 78, 245, 0.12) 42%, transparent 65%),
    linear-gradient(to bottom, rgba(6, 4, 14, 0) 0%, rgba(6, 4, 14, 0.52) 38%, rgba(6, 4, 14, 0.98) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Diagonal accent shape — Kinetic Apex right panel */
.ds-hero-v9a__diagonal {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 78, 245, 0.05) 0%, rgba(0, 212, 232, 0.04) 100%);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

/* Large horizontal Japanese watermark — lower third */
.ds-hero-v9a__yume {
  position: absolute;
  bottom: 12%;
  right: 3%;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(2.96rem, 5.92vw, 7.6rem);
  line-height: 1;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  animation: ds-fade-up 0.5s ease 0.1s both;
}

/* Bottom gradient bar */
.ds-hero-v9a__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #6B4EF5, #00D4E8 50%, transparent);
  z-index: 4;
  animation: ds-split-reveal 0.4s ease 0s both;
}

/* Content — bottom-anchored */
.ds-hero-v9a__inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 5.5rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 6;
}

.ds-hero-v9a__content {
  max-width: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* No glass panel — direct on dark overlay */
.ds-hero-v9a .ds-hero__eyebrow   { color: rgba(255, 255, 255, 0.5); }
.ds-hero-v9a .ds-hero__headline  { color: rgba(255, 255, 255, 0.95); }
.ds-hero-v9a .ds-hero__subheading { color: rgba(255, 255, 255, 0.58); max-width: 520px; }
.ds-hero-v9a .ds-hero__hashtag   { color: rgba(255, 255, 255, 0.28); }

.ds-hero-v9a .ds-hero__meta       { animation: ds-fade-up 0.35s ease 0.3s both; }
.ds-hero-v9a .ds-hero__hl-top     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.4s both; }
.ds-hero-v9a .ds-hero__hl-mid     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.45s both; }
.ds-hero-v9a .ds-hero__hl-bot     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v9a .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.6s both; }
.ds-hero-v9a .ds-hero__ctas       { animation: ds-fade-up 0.35s ease 0.7s both; }

@media (max-width: 767px) {
  .ds-hero-v9a__yume {
    font-size: 8.45vw;
    bottom: 8%;
    opacity: 0.4;
  }

  .ds-hero-v9a__inner {
    padding: 0 1.5rem 4.5rem;
  }

  .ds-hero-v9a__content {
    max-width: 100%;
  }

  .ds-hero-v9a__diagonal {
    display: none;
  }
}


/* ════════════════════════════════════════════════════════════
   HERO V9B — SIGNAL
   ds-matchday.jpg · More colour · Vertical 夢をいつも。
   featured right · Enhanced cyan glass panel
   ════════════════════════════════════════════════════════════ */

.ds-hero-v9b {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #060413;
}

.ds-hero-v9b__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.52) saturate(0.62);
  z-index: 0;
}

/* Purple left + cyan right tint + dark bottom */
.ds-hero-v9b__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(107, 78, 245, 0.32) 0%, transparent 48%),
    linear-gradient(to left, rgba(0, 212, 232, 0.1) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(6, 4, 19, 0) 0%, rgba(6, 4, 19, 0.55) 42%, rgba(6, 4, 19, 0.98) 100%);
  z-index: 1;
  pointer-events: none;
}

/* "夢をいつも。" — vertical, right, more visible, smaller/sharper */
.ds-hero-v9b__yume {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 3.4rem);
  letter-spacing: 0.14em;
  line-height: 1;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-secondary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.38;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  animation: ds-fade-up 0.4s ease 0.2s both;
}

/* Short horizontal cyan bar — accent above content headline */
.ds-hero-v9b__accent-bar {
  position: absolute;
  left: 0;
  top: -1.25rem;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, #6B4EF5, #00D4E8);
  animation: ds-split-reveal 0.35s ease 0.38s both;
}

/* Inner — vertically centred */
.ds-hero-v9b__inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 6;
}

.ds-hero-v9b__content {
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Enhanced glass panel — cyan accent border */
.ds-hero-v9b__content::before {
  content: '';
  position: absolute;
  inset: -2rem -1.75rem;
  background: rgba(6, 4, 19, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-left: 2px solid rgba(0, 212, 232, 0.22);
  border-bottom: 1px solid rgba(0, 212, 232, 0.08);
  z-index: -1;
}

.ds-hero-v9b .ds-hero__eyebrow   { color: rgba(255, 255, 255, 0.5); }
.ds-hero-v9b .ds-hero__headline  { color: rgba(255, 255, 255, 0.94); }
.ds-hero-v9b .ds-hero__subheading { color: rgba(255, 255, 255, 0.6); max-width: 510px; }
.ds-hero-v9b .ds-hero__hashtag   { color: rgba(255, 255, 255, 0.28); }

.ds-hero-v9b .ds-hero__meta       { animation: ds-fade-up 0.35s ease 0.3s both; }
.ds-hero-v9b .ds-hero__hl-top     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.4s both; }
.ds-hero-v9b .ds-hero__hl-mid     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.45s both; }
.ds-hero-v9b .ds-hero__hl-bot     { animation: ds-text-rise 0.35s cubic-bezier(0, 0, 0.2, 1) 0.5s both; }
.ds-hero-v9b .ds-hero__subheading { animation: ds-fade-up 0.35s ease 0.6s both; }
.ds-hero-v9b .ds-hero__ctas       { animation: ds-fade-up 0.35s ease 0.7s both; }

@media (max-width: 767px) {
  .ds-hero-v9b__yume {
    font-size: 1.2rem;
    right: 1.5%;
    opacity: 0.28;
  }

  .ds-hero-v9b__inner {
    padding: 0 1.5rem;
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .ds-hero-v9b__content {
    max-width: 100%;
  }

  .ds-hero-v9b__content::before {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* ── Reduced motion — V9A / V9B ── */
@media (prefers-reduced-motion: reduce) {
  .ds-hero-v9a__yume,
  .ds-hero-v9a__bottom-bar,
  .ds-hero-v9a .ds-hero__meta,
  .ds-hero-v9a .ds-hero__hl-top,
  .ds-hero-v9a .ds-hero__hl-mid,
  .ds-hero-v9a .ds-hero__hl-bot,
  .ds-hero-v9a .ds-hero__subheading,
  .ds-hero-v9a .ds-hero__ctas,
  .ds-hero-v9b__yume,
  .ds-hero-v9b__accent-bar,
  .ds-hero-v9b .ds-hero__meta,
  .ds-hero-v9b .ds-hero__hl-top,
  .ds-hero-v9b .ds-hero__hl-mid,
  .ds-hero-v9b .ds-hero__hl-bot,
  .ds-hero-v9b .ds-hero__subheading,
  .ds-hero-v9b .ds-hero__ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   FOOTER CONCEPT B — EDITORIAL SPLIT
   All classes prefixed ds-footer-b__
   Dark panel values declared locally — this footer uses the
   dark Kinetic Apex palette regardless of the site :root tokens
   (which are currently light theme).
   ============================================================ */

/* ── Local palette scoped to this footer ── */
.ds-footer-b {
  --fb-surface:          #131315;
  --fb-surface-low:      #1a1a1d;
  --fb-surface-high:     #222226;
  --fb-primary:          #6B4EF5;
  --fb-cyan:             #00D4E8;
  --fb-on-surface:       rgba(255, 255, 255, 0.87);
  --fb-on-surface-var:   rgba(255, 255, 255, 0.6);
  --fb-gradient:         linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  --fb-radial-left:      radial-gradient(ellipse at 20% 80%, rgba(107, 78, 245, 0.25) 0%, transparent 60%);
  --fb-glow-cyan:        0 0 24px rgba(0, 212, 232, 0.4);
  --fb-glow-primary:     0 0 24px rgba(107, 78, 245, 0.5);
  --fb-watermark-color:  rgba(107, 78, 245, 0.15);

  background: var(--fb-surface);
  position: relative;
}

/* ── 3px gradient bar ── */
.ds-footer-b__gradient-bar {
  height: 3px;
  background: var(--fb-gradient);
  width: 100%;
  flex-shrink: 0;
}

/* ── Naming rights strip (conditional) ── */
.ds-footer-b__naming-strip {
  background: rgba(107, 78, 245, 0.1);
  padding: 0.625rem 0;
}
.ds-footer-b__naming-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ds-footer-b__naming-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--fb-cyan);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: ds-footer-b-pulse 1.8s ease-in-out infinite;
}
@keyframes ds-footer-b-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}
.ds-footer-b__naming-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fb-on-surface-var);
  flex: 1;
}
.ds-footer-b__naming-link {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 212, 232, 0.1);
  color: var(--fb-cyan);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-footer-b__naming-link:hover {
  background: rgba(0, 212, 232, 0.2);
}
.ds-footer-b__naming-link:focus-visible {
  outline: 2px solid var(--fb-cyan);
  outline-offset: 2px;
}

/* ── Body: two-panel asymmetric split ── */
.ds-footer-b__body {
  display: grid;
  /*
    55% left panel / 45% right panel.
    The visual split is produced by clip-path on the left panel —
    the grid itself is a straightforward two-column layout.
  */
  grid-template-columns: 55% 45%;
  min-height: 360px;
  position: relative;
}

/* ── LEFT PANEL ── */
.ds-footer-b__left {
  background: var(--fb-radial-left), var(--fb-surface);
  position: relative;
  overflow: hidden;
  padding: 4rem 5rem 4rem 2rem;
  /*
    8 degree forward diagonal clip on the right edge.
    The right boundary of the left panel advances toward the
    bottom-right corner, creating a dynamic editorial split.
    calc(100% - 60px) at the bottom-right keeps enough clearance
    for the text stack even at mid viewports.
    Padding-right is generous (5rem) to keep copy clear of the cut.
  */
  clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
}

/* Large decorative DS watermark — visual depth layer */
.ds-footer-b__watermark {
  position: absolute;
  right: -0.06em;
  bottom: -0.1em;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--fb-watermark-color);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

/* Left panel content — above the watermark */
.ds-footer-b__left-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 480px;
}

/* Season / region meta label */
.ds-footer-b__season-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fb-cyan);
  margin: 0;
}

/* #ALWAYSDREAM — anchor headline */
.ds-footer-b__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--fb-on-surface);
  margin: 0;
}

/* Social icon row */
.ds-footer-b__social-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Individual social icon — 44px square tile */
.ds-footer-b__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--fb-on-surface-var);
  text-decoration: none;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-footer-b__social-icon:hover {
  background: rgba(0, 212, 232, 0.15);
  color: var(--fb-cyan);
  box-shadow: var(--fb-glow-cyan);
}
.ds-footer-b__social-icon:focus-visible {
  outline: 2px solid var(--fb-cyan);
  outline-offset: 2px;
}

/* Inline partner CTA — only rendered when naming_rights_available */
.ds-footer-b__partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--fb-on-surface-var);
  transition: color 0.15s ease-out,
              border-bottom-color 0.15s ease-out;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ds-footer-b__partner-cta:hover {
  color: var(--fb-cyan);
  border-bottom-color: var(--fb-cyan);
}
.ds-footer-b__partner-cta:focus-visible {
  outline: 2px solid var(--fb-cyan);
  outline-offset: 2px;
}

/* ── RIGHT PANEL ── */
.ds-footer-b__right {
  background: var(--fb-surface-low);
  display: flex;
  align-items: center;
  /*
    Left padding absorbs the diagonal overhang from the left panel clip.
    Right panel does NOT use clip-path — it is a flat surface.
    The perceived split is entirely produced by the left panel clip.
  */
  padding: 4rem 2rem 4rem 4rem;
}

/* Two nav columns side by side */
.ds-footer-b__nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 480px;
}

.ds-footer-b__nav-col {
  display: flex;
  flex-direction: column;
}

/* Column label — cyan, uppercase, Inter */
.ds-footer-b__nav-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fb-cyan);
  margin: 0 0 1.125rem;
}

.ds-footer-b__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Nav links — Inter 400, muted default, bright on hover */
.ds-footer-b__nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--fb-on-surface-var);
  text-decoration: none;
  display: inline-block;
  transition: color 0.15s ease-out;
}
.ds-footer-b__nav-link:hover {
  color: var(--fb-on-surface);
}
.ds-footer-b__nav-link:focus-visible {
  outline: 2px solid var(--fb-cyan);
  outline-offset: 2px;
}

/* ── Bottom bar ── */
.ds-footer-b__bottom {
  background: var(--fb-surface);
  padding: 1.25rem 0;
}
.ds-footer-b__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.ds-footer-b__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--fb-on-surface-var);
  margin: 0;
}
/* #ALWAYSDREAM — gradient text */
.ds-footer-b__alwaysdream {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  background: var(--fb-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Responsive: tablet (max 1024px) ── */
@media screen and (max-width: 1024px) {
  .ds-footer-b__body {
    grid-template-columns: 1fr 1fr;
  }
  .ds-footer-b__left {
    padding: 3.5rem 4rem 3.5rem 1.5rem;
  }
  .ds-footer-b__right {
    padding: 3.5rem 1.5rem 3.5rem 3.5rem;
  }
  .ds-footer-b__headline {
    font-size: 2rem;
  }
}

/* ── Responsive: mobile (max 768px) ── */
@media screen and (max-width: 768px) {
  /* Stack panels vertically — diagonal clip removed on mobile */
  .ds-footer-b__body {
    grid-template-columns: 1fr;
  }
  .ds-footer-b__left {
    clip-path: none;
    -webkit-clip-path: none;
    padding: 3rem 1.25rem;
  }
  .ds-footer-b__left-content {
    max-width: 100%;
    gap: 1.25rem;
  }
  .ds-footer-b__right {
    padding: 3rem 1.25rem;
  }
  .ds-footer-b__nav-grid {
    max-width: 100%;
  }
  .ds-footer-b__headline {
    font-size: 2rem;
  }
  .ds-footer-b__watermark {
    font-size: clamp(6rem, 40vw, 10rem);
  }
  .ds-footer-b__naming-strip-inner {
    padding: 0 1.25rem;
    row-gap: 0.5rem;
  }
  .ds-footer-b__bottom-inner {
    padding: 0 1.25rem;
    justify-content: center;
    text-align: center;
  }
}

/* ── Responsive: small mobile (max 480px) ── */
@media screen and (max-width: 480px) {
  .ds-footer-b__nav-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ds-footer-b__naming-pulse {
    animation: none;
  }
}


/* ════════════════════════════════════════════════════════════════════════════
   FOOTER CONCEPT A — "COMMAND CENTER"
   Single-pass 3-column layout. Deep dark surfaces. No redundant zones.
   Prefix: .ds-footer-a__
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Outer shell ── */
.ds-footer-a {
  background: var(--color-surface-container-low);
  position: relative;
}

/* ── Zone 1: 3px gradient accent bar ── */
.ds-footer-a__bar {
  height: 3px;
  background: linear-gradient(90deg, #6B4EF5 0%, #00D4E8 100%);
  width: 100%;
}

/* ── Zone 2: Body wrapper ── */
.ds-footer-a__body {
  background: var(--color-surface-container-low);
  padding: 4rem 0 3.5rem;
}

/* ── 3-column grid ── */
.ds-footer-a__grid {
  display: grid;
  grid-template-columns: 40% 1fr 1fr;
  gap: 0;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* ── Column base — right padding creates internal gutters ── */
.ds-footer-a__col {
  padding-right: 3rem;
}
.ds-footer-a__col:last-child {
  padding-right: 0;
}

/* ── Col 1: Brand ── */
.ds-footer-a__col--brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-footer-a__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.75rem;
}
.ds-footer-a__logo-link:focus-visible {
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 2px;
}
.ds-footer-a__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* Large Bebas Neue #ALWAYSDREAM — gradient text */
.ds-footer-a__hashtag {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ds-footer-a__tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--color-on-surface-variant);
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Social icon row */
.ds-footer-a__social-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* 44px square icon tile — glows cyan on hover */
.ds-footer-a__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-surface-container-high);
  color: var(--color-on-surface-variant);
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-footer-a__social-icon:hover {
  background: rgba(0, 212, 232, 0.12);
  color: var(--color-secondary-accent);
  box-shadow: var(--glow-cyan);
}
.ds-footer-a__social-icon:focus-visible {
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 2px;
}

/* ── Col 2: Explore ── */
.ds-footer-a__col-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-secondary-accent);
  margin: 0 0 1.375rem;
  display: block;
}

.ds-footer-a__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}

.ds-footer-a__nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--color-on-surface-variant);
  text-decoration: none;
  display: inline-block;
  transition: color 0.15s ease-out;
  position: relative;
}
/* Left-edge cyan accent bar — reveals on hover */
.ds-footer-a__nav-link::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 100%;
  background: var(--color-secondary-accent);
  transform-origin: center;
  transition: transform 0.15s ease-out;
}
.ds-footer-a__nav-link:hover {
  color: var(--color-on-surface);
}
.ds-footer-a__nav-link:hover::before {
  transform: translateY(-50%) scaleY(1);
}
.ds-footer-a__nav-link:focus-visible {
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 2px;
}

/* ── Col 3: Partnership ── */
.ds-footer-a__col--partner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ds-footer-a__partner-email {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-on-surface);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.15s ease-out;
  display: block;
}
.ds-footer-a__partner-email:hover {
  color: var(--color-secondary-accent);
}
.ds-footer-a__partner-email:focus-visible {
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 2px;
}

/* Naming rights row: pulsing diamond + chip */
.ds-footer-a__naming-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

/* 6px rotated square indicator — no border-radius, keyframe opacity only */
.ds-footer-a__naming-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-secondary-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: ds-footer-a-pulse 1.8s ease-in-out infinite;
}
@keyframes ds-footer-a-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

/* ENQUIRE arrow link — low-profile, uppercase */
.ds-footer-a__enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-on-surface-variant);
  text-decoration: none;
  margin-top: 0.25rem;
  transition: color 0.15s ease-out;
}
.ds-footer-a__enquire:hover {
  color: var(--color-secondary-accent);
}
.ds-footer-a__enquire:focus-visible {
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 2px;
}

/* ── Zone 3: Bottom bar ── */
/* Tonal shift to --color-surface — no border-top per rules */
.ds-footer-a__bottom {
  background: var(--color-surface);
  padding: 1.125rem 0;
}
.ds-footer-a__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  /* Subtle inset top shadow separates from body — no border-top */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.ds-footer-a__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-on-surface-variant);
  margin: 0;
}
/* Gradient text hashtag — right-aligned */
.ds-footer-a__bottom-hashtag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  background: linear-gradient(135deg, #6B4EF5 0%, #00D4E8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Responsive: tablet (max 1024px) ── */
@media screen and (max-width: 1024px) {
  .ds-footer-a__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }
  .ds-footer-a__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .ds-footer-a__col {
    padding-right: 0;
  }
  .ds-footer-a__hashtag {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

/* ── Responsive: mobile (max 640px) ── */
@media screen and (max-width: 640px) {
  .ds-footer-a__body {
    padding: 3rem 0 2.5rem;
  }
  .ds-footer-a__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.25rem;
  }
  .ds-footer-a__col--brand {
    grid-column: 1;
  }
  .ds-footer-a__bottom-inner {
    padding: 0 1.25rem;
    justify-content: center;
    text-align: center;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ds-footer-a__naming-pulse {
    animation: none;
  }
}


/* ============================================================
   ROCKET LEAGUE ROSTER PAGE — ds-rl-*
   sections/ds-rl-roster.liquid · Speed A
   ============================================================ */

/* ── BLOCK 1: Page Header ─────────────────────────────────── */

.ds-rl-header {
  position: relative;
  padding: 9rem 4rem 7rem;
  background: var(--color-surface);
  overflow: hidden;
}

.ds-rl-header__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(107, 78, 245, 0.28) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 30%, rgba(0, 212, 232, 0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.ds-rl-header__bg-text {
  position: absolute;
  right: 4%;
  bottom: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(107, 78, 245, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0.02em;
}

.ds-rl-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.ds-rl-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary-accent);
  margin: 0 0 1.5rem;
}

.ds-rl-header__title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  margin: 0 0 1.5rem;
}

.ds-rl-header__title-line2 {
  display: block;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ds-rl-header__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-on-surface-variant);
  margin: 0;
}


/* ── BLOCK 2: Player Grid ─────────────────────────────────── */

.ds-rl-roster {
  background: var(--color-surface-container-low);
  padding: 5rem 4rem 6rem;
}

.ds-rl-roster__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.ds-rl-roster__label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary-accent);
  margin: 0 0 2.5rem;
}

.ds-rl-roster__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .ds-rl-roster__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ds-rl-roster__grid {
    grid-template-columns: 1fr;
  }
}


/* ── Player Card ──────────────────────────────────────────── */

.ds-rl-card {
  background: var(--color-surface-container-high);
  border-radius: 0;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-rl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-card);
}

.ds-rl-card--sub {
  opacity: 0.85;
}
.ds-rl-card--sub:hover {
  opacity: 1;
}

.ds-rl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-btn);
  z-index: 1;
}

.ds-rl-card--sub::before {
  background: linear-gradient(180deg, var(--color-secondary-accent), var(--color-primary));
}

.ds-rl-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  background: var(--color-surface-container-highest);
}

.ds-rl-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.3s ease;
}

.ds-rl-card:hover .ds-rl-card__image {
  filter: grayscale(0.7) contrast(1.05);
}

.ds-rl-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(107, 78, 245, 0.25) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.ds-rl-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-surface-container-highest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-rl-card__placeholder-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(107, 78, 245, 0.3);
  letter-spacing: 0.04em;
}

.ds-rl-card__body {
  padding: 1.25rem 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.ds-rl-card__name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  margin-bottom: 0.25rem;
}

.ds-rl-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  margin: 0;
  line-height: 1.1;
}

.ds-rl-card__game-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary-accent);
  margin: 0;
}

.ds-rl-card__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.625rem;
}

.ds-rl-card__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-on-surface-variant);
  text-decoration: none;
  border-radius: 0;
  transition: color 0.15s ease-out;
}

.ds-rl-card__social-link:hover {
  color: var(--color-secondary-accent);
}

.ds-rl-card__social-link:focus-visible {
  color: var(--color-secondary-accent);
  outline: 2px solid var(--color-secondary-accent);
  outline-offset: 2px;
}

.ds-empty-state {
  padding: 4rem 0;
}
.ds-empty-state__text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--color-on-surface-variant);
  letter-spacing: 0.08em;
  margin: 0;
}


/* ── BLOCK 3: Titles & History ───────────────────────────── */

.ds-rl-titles {
  background: var(--color-surface-container-low);
  padding: 4rem;
}

.ds-rl-titles__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.ds-rl-titles__header {
  margin-bottom: 2.5rem;
}

.ds-rl-titles__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary-accent);
  margin: 0 0 0.5rem;
}

.ds-rl-titles__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-on-surface);
  margin: 0;
}

.ds-rl-titles__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}

.ds-rl-titles__entry {
  padding: 1.5rem 2rem 1.5rem 0;
}

.ds-rl-titles__entry + .ds-rl-titles__entry {
  padding-left: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.ds-rl-titles__placement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.25rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.ds-rl-titles__event {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-on-surface);
  margin: 0 0 0.25rem;
}

.ds-rl-titles__season {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-on-surface-variant);
  margin: 0 0 0.75rem;
}

.ds-rl-titles__badge {
  margin-top: 0.5rem;
}


/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .ds-rl-header {
    padding: 7rem 2.5rem 5rem;
  }
  .ds-rl-roster {
    padding: 4rem 2.5rem 5rem;
  }
  .ds-rl-titles {
    padding: 3rem 2.5rem;
  }
}

@media (max-width: 767px) {
  .ds-rl-header {
    padding: 6rem 1.5rem 4rem;
  }
  .ds-rl-header__title {
    font-size: clamp(3rem, 12vw, 4rem);
  }
  .ds-rl-roster {
    padding: 3rem 1.5rem 4rem;
  }
  .ds-rl-titles {
    padding: 2.5rem 1.5rem;
  }
  .ds-rl-titles__list {
    grid-template-columns: 1fr;
  }
  .ds-rl-titles__entry + .ds-rl-titles__entry {
    padding-left: 0;
    padding-top: 1.5rem;
    background: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ds-rl-card,
  .ds-rl-card__image {
    transition: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   16. CONTACT PAGE (Light Theme, Speed B)
   sections/ds-contact.liquid
   5-section structure: Header + Intro + Form + Proof + Naming Rights
   ═══════════════════════════════════════════════════════════ */

.ds-contact {
  background: var(--color-surface);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(107, 78, 245, 0.03) 0%, transparent 60%);
  min-height: 100vh;
  padding: 7rem var(--space-md) var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
}

/* ── SECTION 1: PAGE HEADER ── */

.ds-contact__header {
  background: var(--color-surface-container-low);
  padding: var(--space-xl) var(--space-md);
  margin: -7rem calc(var(--space-md) * -1) var(--space-xl);
  padding-top: 7rem;
}

.ds-contact__header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ds-contact__header-label {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: block;
  font-size: 0.75rem;
}

.ds-contact__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 1.5rem;
}

.ds-contact__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0;
}

/* ── SECTION 2: CONTACT INTRO ── */

.ds-contact__intro-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-surface);
}

.ds-contact__intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.ds-contact__intro-col {
  padding: 0;
}

.ds-contact__intro-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  margin: 0 0 var(--space-lg);
}

.ds-contact__intro-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 var(--space-sm);
}

.ds-contact__intro-link-group {
  margin: 0 0 var(--space-xl);
}

.ds-contact__email-link {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease-out;
  word-break: break-word;
}

.ds-contact__email-link:hover {
  color: var(--color-secondary);
}

.ds-contact__email-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.ds-contact__intro-col--social {
  display: flex;
  flex-direction: column;
}

.ds-contact__social-links {
  display: flex;
  gap: var(--space-sm);
  margin: 0 0 var(--space-md);
  flex-wrap: wrap;
}

.ds-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(107, 78, 245, 0.06);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(107, 78, 245, 0.15);
}

.ds-contact__social-link:hover {
  background: var(--color-primary);
  color: var(--color-surface);
  box-shadow: var(--glow-primary-hover);
  transform: translateY(-2px);
}

.ds-contact__social-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.ds-contact__social-icon {
  width: 20px;
  height: 20px;
}

.ds-contact__intro-handle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-on-surface-variant);
  margin: 0;
}

/* ── SECTION 3: TWO-TAB FORM ── */

.ds-contact__form-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-surface);
}

.ds-contact__form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-surface-container-low);
  background-image: radial-gradient(ellipse at 60% 40%, rgba(107, 78, 245, 0.04) 0%, transparent 70%);
  padding: var(--space-lg);
  border-radius: 0;
  box-shadow: var(--shadow-md);
}

.ds-contact__tabs {
  position: relative;
}

.ds-contact__tab-input {
  display: none;
}

.ds-contact__tab-label {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-on-surface-variant);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 0;
  position: relative;
}

.ds-contact__tab-label:hover {
  color: var(--color-primary);
}

.ds-contact__tab-input:checked + .ds-contact__tab-label {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.ds-contact__form-group {
  display: none;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(107, 78, 245, 0.1);
  margin-top: var(--space-lg);
}

.ds-contact__tab-input:nth-of-type(1):checked ~ .ds-contact__form-group--general,
.ds-contact__tab-input:nth-of-type(2):checked ~ .ds-contact__form-group--partnership {
  display: block;
}

.ds-contact__submit {
  margin-top: var(--space-lg);
}

.ds-contact__success {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-win);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(34, 197, 94, 0.08);
  border-left: 3px solid var(--color-win);
}

.ds-contact__error {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-error);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(255, 77, 77, 0.08);
  border-left: 3px solid var(--color-error);
}

/* ── SECTION 4: PROOF CALLOUT ── */

.ds-contact__proof {
  background: var(--color-surface-container-low);
  padding: var(--space-xl) var(--space-md);
}

.ds-contact__proof-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.ds-contact__proof-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-on-surface);
  margin: 0 0 var(--space-lg);
}

.ds-contact__proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.ds-contact__proof-stat {
  padding: var(--space-lg);
  background: var(--color-surface);
  background-image: linear-gradient(135deg, rgba(107, 78, 245, 0.04) 0%, rgba(0, 212, 232, 0.02) 100%);
  border-radius: 0;
  border: 1px solid rgba(107, 78, 245, 0.08);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-contact__proof-stat:hover {
  background-image: linear-gradient(135deg, rgba(107, 78, 245, 0.06) 0%, rgba(0, 212, 232, 0.04) 100%);
  box-shadow: var(--glow-card-hover);
  transform: translateY(-2px);
  border-color: rgba(107, 78, 245, 0.15);
}

.ds-contact__proof-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  margin: 0 0 var(--space-sm);
  display: block;
}

.ds-contact__proof-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0;
}

/* ── SECTION 5: NAMING RIGHTS CALLOUT ── */

.ds-contact__naming-rights {
  background: var(--color-surface);
  padding: var(--space-xl) var(--space-md);
}

.ds-contact__naming-rights-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(107, 78, 245, 0.06) 0%, rgba(0, 212, 232, 0.04) 100%);
  border-left: 3px solid var(--color-primary);
  border: 1px solid rgba(107, 78, 245, 0.12);
  border-left: 3px solid var(--color-primary);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-contact__naming-rights-inner:hover {
  background: linear-gradient(135deg, rgba(107, 78, 245, 0.08) 0%, rgba(0, 212, 232, 0.06) 100%);
  box-shadow: 0 4px 12px rgba(107, 78, 245, 0.08);
}

.ds-contact__naming-rights-chip {
  margin-bottom: var(--space-md);
}

.ds-contact__naming-rights-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 var(--space-md);
}

.ds-contact__naming-rights-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin: 0 0 var(--space-lg);
}

.ds-contact__naming-rights-cta {
  margin: 0;
}

.ds-contact__naming-rights-link {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(15deg, var(--color-primary), var(--color-primary-container));
  color: var(--color-surface);
  text-decoration: none;
  border-radius: 0;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-contact__naming-rights-link:hover {
  box-shadow: var(--glow-primary-hover);
}

.ds-contact__naming-rights-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ── ANIMATIONS ── */

.ds-animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s cubic-bezier(0.0, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.0, 0, 0.2, 1);
}

.ds-animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ds-contact__proof-grid .ds-animate-in:nth-child(2) {
  transition-delay: 50ms;
}

.ds-contact__proof-grid .ds-animate-in:nth-child(3) {
  transition-delay: 100ms;
}

@media (prefers-reduced-motion: reduce) {
  .ds-animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── RESPONSIVE DESIGN ── */

@media (max-width: 1024px) {
  .ds-contact {
    padding: 5rem var(--space-md) var(--space-lg);
  }

  .ds-contact__intro-grid {
    gap: var(--space-md);
  }

  .ds-contact__proof-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 767px) {
  .ds-contact {
    padding: 4rem 1.25rem var(--space-lg);
  }

  .ds-contact__header {
    margin: -4rem calc(1.25rem * -1) var(--space-lg);
    padding: 4rem 1.25rem;
    padding-top: 4rem;
  }

  .ds-contact__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .ds-contact__intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .ds-contact__intro-text {
    font-size: 1rem;
  }

  .ds-contact__email-link {
    font-size: 1rem;
  }

  .ds-contact__form-container {
    padding: var(--space-md);
  }

  .ds-input {
    padding: 0.75rem 0.875rem;
  }

  .ds-contact__tab-label {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.75rem;
  }

  .ds-contact__proof-heading {
    font-size: 1.5rem;
  }

  .ds-contact__proof-stat {
    padding: var(--space-md);
  }

  .ds-contact__naming-rights-heading {
    font-size: 1.5rem;
  }

  .ds-contact__social-links {
    gap: var(--space-sm);
  }

  .ds-contact__social-link {
    width: 40px;
    height: 40px;
  }

  .ds-contact__social-icon {
    width: 18px;
    height: 18px;
  }
}


/* ── Contact page — native form overrides (light theme) ── */

.contact-form__input {
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 2px solid rgba(107, 78, 245, 0.2) !important;
  background: var(--color-surface-container-high) !important;
  color: var(--color-on-surface) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  padding: 0.875rem 1rem !important;
  transition: all 0.2s ease !important;
}

.contact-form__input::placeholder {
  color: rgba(26, 26, 26, 0.35) !important;
}

.contact-form__input:hover {
  background: rgba(107, 78, 245, 0.03) !important;
  border-bottom-color: rgba(107, 78, 245, 0.35) !important;
}

.contact-form__input:focus {
  outline: none !important;
  background: rgba(107, 78, 245, 0.05) !important;
  border-bottom-color: var(--color-primary) !important;
  box-shadow: 0 2px 8px rgba(107, 78, 245, 0.1) !important;
}

.contact-form__input:focus-visible {
  outline: 2px solid var(--color-primary) !important;
  outline-offset: 2px !important;
}

.contact-form__form {
  gap: 1.25rem !important;
}
