@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Thai';
  src: url('/fonts/noto-sans-thai-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Thai';
  src: url('/fonts/noto-sans-thai-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Thai';
  src: url('/fonts/noto-sans-thai-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Thai';
  src: url('/fonts/noto-sans-thai-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #052f46;
  --ink-soft: #073852;
  --panel: #083c59;
  --panel-2: #0a4566;
  --paper: #fff9ef;
  --paper-dim: #d8e4eb;
  --muted: #a8bdc8;
  --orange: #f04b12;
  --orange-bright: #ff6a21;
  --amber: #f5b53f;
  --line: oklch(95% 0.02 79 / 0.18);
  --line-strong: oklch(79% 0.152 74 / 0.55);
  --shadow: 0 28px 90px oklch(3% 0.018 252 / 0.58);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  background: var(--ink);
  font-family: 'Poppins', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  text-rendering: geometricPrecision;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(16px, 4vw, 54px);
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--paper-dim);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a,
.text-link {
  transition: color 160ms var(--ease-out);
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--amber);
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  transition:
    transform 120ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}

.header-cta,
.button.primary {
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 12px 38px oklch(45% 0.19 38 / 0.3);
}

.button.secondary {
  color: var(--paper);
  border-color: var(--line-strong);
  background: oklch(96% 0.011 79 / 0.06);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button:active,
.header-cta:active,
.action-link:active {
  transform: translateY(1px) scale(0.98);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 5px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--paper);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.mobile-nav[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.icon {
  width: 1.15em;
  height: 1.15em;
}

.mobile-nav[open] .mobile-menu {
  display: grid;
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  display: none;
  align-content: start;
  gap: 1px;
  padding: 18px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--panel);
  font-weight: 800;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(22px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(690px, calc(100svh - 160px));
  max-width: min(720px, 58vw);
  padding: clamp(18px, 3vw, 42px) 0;
}

.eyebrow-label,
.kicker {
  margin: 0 0 18px;
  width: fit-content;
  color: var(--amber);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  max-width: 9ch;
  color: var(--paper);
  font-size: clamp(5.4rem, 13vw, 11.4rem);
  text-shadow: 0 14px 60px oklch(3% 0.018 252 / 0.62);
}

h2 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

p {
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.62;
}

.hero-lede {
  max-width: 48ch;
  margin-bottom: 28px;
  color: var(--paper);
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  line-height: 1.34;
}

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

.hero-media,
.media-stack,
.story-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(5% 0.018 252 / 0.18) 0%, oklch(5% 0.018 252 / 0.1) 32%, oklch(5% 0.018 252 / 0.82) 100%),
    linear-gradient(90deg, oklch(4% 0.018 252 / 0.9) 0%, oklch(6% 0.02 252 / 0.58) 38%, transparent 72%);
  pointer-events: none;
}

.hero-media video {
  filter: saturate(1.15) contrast(1.06);
}

.hero-media picture,
.hero-media img,
.hero-media video,
.story-media picture,
.story-media img,
.media-stack picture,
.media-stack img,
.video-frame video,
.subhero-video video {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img,
.hero-media video,
.story-media img,
.media-stack img,
.video-frame video,
.subhero-video video {
  object-fit: cover;
}

.media-stack img {
  object-position: left top;
}

.fixture-card {
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 2;
  width: min(420px, calc(100% - 32px));
  padding: clamp(20px, 3vw, 30px);
  border-radius: 14px;
  background: oklch(12% 0.028 252 / 0.92);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(18px);
}

.fixture-card span,
.tile-top span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
}

.fixture-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.05;
}

.fixture-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 800;
}

.action-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  margin: 0 0 clamp(70px, 10vw, 130px);
  border: 1px solid var(--line);
  background: var(--line);
}

.action-link {
  min-height: 132px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  background: var(--panel);
  transition:
    transform 140ms var(--ease-out),
    background-color 200ms var(--ease-out);
}

.action-link:hover {
  background: var(--panel-2);
}

.action-link .icon,
.fixture-tile .icon,
.squad-panel > .icon,
.partner-row .icon,
.partner-cta > .icon,
.commerce .icon,
.latest .icon,
.final-cta > .icon,
.fan-info .icon {
  color: var(--orange-bright);
  flex: 0 0 auto;
}

.action-link span {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 54px;
}

.action-link small {
  color: var(--muted);
}

.club-story,
.squad-media,
.commerce,
.fan-info {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto clamp(80px, 12vw, 150px);
}

.match-index,
.match-hub,
.news-strip,
.shop-strip {
  width: min(1340px, calc(100% - 36px));
  margin: 0 auto clamp(80px, 12vw, 150px);
}

.match-hub {
  margin-top: clamp(52px, 8vw, 96px);
}

.hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.hub-main,
.hub-stack article,
.news-card,
.shop-tile {
  background: var(--panel);
}

.hub-main {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, oklch(61% 0.205 38 / 0.22), transparent 48%),
    var(--panel);
}

.hub-main span,
.hub-stack span,
.news-card span,
.shop-tile span {
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.hub-main h3 {
  max-width: 12ch;
  font-family: 'Bebas Neue Local', Impact, sans-serif;
  font-size: clamp(3.7rem, 6.2vw, 6.7rem);
  line-height: 0.9;
}

.hub-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
}

.hub-stack article {
  min-height: 120px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
}

.hub-stack strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.hub-stack small {
  color: var(--paper-dim);
  line-height: 1.35;
}

.strip-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.strip-heading .text-link {
  margin-bottom: 18px;
}

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

.news-card,
.shop-tile {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.news-card strong,
.shop-tile strong {
  display: block;
  margin-top: 44px;
  color: var(--paper);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.02;
}

.news-card p,
.shop-tile p {
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.index-card {
  min-height: 254px;
  display: grid;
  grid-template-rows: 22px minmax(78px, 1fr) minmax(66px, auto);
  align-items: stretch;
  padding: 22px;
  background:
    linear-gradient(180deg, oklch(61% 0.205 38 / 0.14), transparent 52%),
    var(--panel);
}

.index-card span {
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
}

.index-card strong {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.18rem, 1.5vw, 1.5rem);
  line-height: 1.08;
}

.index-card p {
  align-self: end;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.42;
}

.club-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: center;
}

.story-media {
  min-height: 760px;
}

.story-copy {
  padding-right: clamp(0px, 4vw, 70px);
}

.section-intro {
  max-width: 850px;
}

.section-intro p:not(.kicker) {
  max-width: 65ch;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-block {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--ink-soft);
}

.stat-block strong {
  font-family: 'Bebas Neue Local', Impact, sans-serif;
  color: var(--amber);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.stat-block span {
  color: var(--paper-dim);
  line-height: 1.45;
}

.fixtures,
.partners,
.architecture,
.latest,
.final-cta {
  width: min(1340px, calc(100% - 36px));
  margin: 0 auto clamp(80px, 12vw, 150px);
}

.fixture-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: 32px;
}

.fixture-tile {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 14px;
  background:
    linear-gradient(135deg, oklch(61% 0.205 38 / 0.18), transparent 46%),
    var(--panel);
  border: 1px solid var(--line);
}

.video-band {
  width: min(1340px, calc(100% - 36px));
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
  margin: 0 auto clamp(80px, 12vw, 150px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, oklch(61% 0.205 38 / 0.18), transparent 42%),
    oklch(9% 0.019 252 / 0.84);
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10px, 3vw, 34px);
}

.video-copy > .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--orange-bright);
}

.video-copy h2 {
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.video-frame,
.subhero-video {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.video-frame video,
.subhero-video video {
  position: absolute;
  inset: 0;
}

.video-frame::after,
.subhero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(8% 0.025 252 / 0.64) 100%);
  pointer-events: none;
}

.tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tile-top span {
  margin: 0;
}

.squad-media {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(18px, 4vw, 50px);
  align-items: stretch;
}

.squad-panel,
.partner-cta,
.shop-card,
.latest,
.final-cta,
.fan-info {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.squad-panel {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 62px);
}

.squad-groups {
  display: grid;
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.squad-group {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: oklch(9% 0.018 252 / 0.5);
}

.squad-group strong {
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.squad-group span {
  color: var(--paper-dim);
  line-height: 1.45;
}

.squad-panel > .icon,
.commerce .icon,
.latest .icon,
.final-cta > .icon,
.fan-info .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}

.media-stack {
  min-height: 540px;
}

.play-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  font-weight: 800;
}

.partners {
  padding: clamp(0px, 2vw, 24px) 0;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
  margin-top: 32px;
}

.partner-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.partner-row {
  min-height: 140px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 800;
}

.partner-cta,
.shop-card {
  padding: clamp(24px, 4vw, 38px);
}

.commerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(112deg, oklch(61% 0.205 38 / 0.22), transparent 46%),
    var(--ink-soft);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
}

.commerce-copy {
  max-width: 840px;
}

.shop-card {
  background: oklch(9% 0.018 252 / 0.48);
}

.architecture .section-intro {
  margin-bottom: 30px;
}

.route-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.route-row {
  display: grid;
  grid-template-columns: minmax(84px, 0.18fr) minmax(110px, 0.22fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--panel);
}

.route-row span {
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.92rem;
}

.route-row p {
  margin: 0;
  font-size: 0.98rem;
}

.subhero {
  width: min(1440px, calc(100% - 36px));
  min-height: calc(100dvh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(440px, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  margin: 0 auto clamp(72px, 10vw, 120px);
  padding: clamp(18px, 3vw, 42px) 0;
}

.subhero h1 {
  max-width: 12ch;
  font-size: clamp(4.6rem, 8vw, 8rem);
}

.route-page-list {
  width: min(1340px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0 auto clamp(80px, 12vw, 150px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.route-page-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(150deg, oklch(61% 0.205 38 / 0.13), transparent 42%),
    var(--panel);
}

.route-page-card span {
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.route-page-card strong {
  display: block;
  margin-top: 44px;
  color: var(--paper);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.05;
}

.route-page-card p {
  margin: 18px 0 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.fan-info {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.latest {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 30px;
  align-items: center;
}

.latest-heading {
  display: grid;
  align-content: start;
}

.media-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.media-checklist span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--ink-soft);
  color: var(--paper);
  font-weight: 800;
  line-height: 1.35;
}

.latest h2,
.fan-info h2,
.final-cta h2,
.commerce h2,
.squad-panel h2 {
  font-size: clamp(2.75rem, 5vw, 5.2rem);
}

.final-cta {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(26px, 7vw, 76px);
  background:
    linear-gradient(110deg, var(--orange) 0%, oklch(45% 0.17 35) 38%, transparent 38%),
    var(--panel);
}

.final-cta p {
  max-width: 58ch;
  color: var(--paper);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  .hero-media img {
    animation: media-drift 14s var(--ease-in-out) infinite alternate;
  }
}

@keyframes media-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, 12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-nav {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .hero,
  .club-story,
  .squad-media,
  .partner-layout,
  .video-band,
  .commerce,
  .fan-info,
  .subhero,
  .latest {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-media,
  .media-stack,
  .video-frame,
  .subhero-video {
    min-height: 560px;
  }

  .story-media {
    min-height: 620px;
  }

  .action-band,
  .fixture-rail,
  .index-grid,
  .hub-layout,
  .news-grid,
  .shop-grid,
  .route-page-list {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: calc(100svh - 180px);
    max-width: min(620px, 78vw);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .mobile-menu {
    inset: 66px 0 auto 0;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .hero {
    min-height: calc(100svh - 66px);
    padding: 18px 14px;
  }

  h1 {
    font-size: clamp(4.6rem, 24vw, 7rem);
    line-height: 0.9;
  }

  .hero-copy {
    min-height: calc(100svh - 178px);
    max-width: min(100%, 560px);
    padding-bottom: 210px;
  }

  .hero-lede {
    max-width: 29ch;
    font-size: 1.08rem;
  }

  h2,
  .latest h2,
  .fan-info h2,
  .final-cta h2,
  .commerce h2,
  .squad-panel h2 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .hero-media,
  .media-stack,
  .video-frame,
  .subhero-video {
    min-height: 500px;
  }

  .fixture-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .action-band,
  .club-story,
  .match-index,
  .match-hub,
  .news-strip,
  .shop-strip,
  .squad-media,
  .commerce,
  .fan-info,
  .fixtures,
  .partners,
  .architecture,
  .video-band,
  .subhero,
  .route-page-list,
  .latest,
  .final-cta {
    width: calc(100% - 28px);
    margin-bottom: 72px;
  }

  .action-band {
    margin-left: 14px;
    margin-right: 14px;
  }

  .story-media {
    min-height: 520px;
  }

  .story-grid,
  .partner-list,
  .media-checklist,
  .news-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .hub-stack article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .strip-heading {
    grid-template-columns: 1fr;
  }

  .strip-heading .text-link {
    margin-bottom: 0;
  }

  .route-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .final-cta {
    background:
      linear-gradient(180deg, var(--orange) 0%, oklch(45% 0.17 35) 44%, transparent 44%),
      var(--panel);
    padding-top: 190px;
  }
}

:root {
  --ink: #002b49;
  --ink-soft: #073a5a;
  --panel: #0b4262;
  --panel-2: #f7f7f4;
  --paper: #ffffff;
  --paper-dim: #d6e1e8;
  --muted: #6c7f89;
  --orange: #ef4614;
  --orange-bright: #ff5a1e;
  --amber: #f5b642;
  --line: rgb(255 255 255 / 0.18);
  --line-strong: rgb(245 182 66 / 0.6);
  --shadow: 0 26px 76px rgb(0 15 28 / 0.34);
}

body {
  background: var(--ink);
}

.site-header {
  height: 84px;
  padding: 0 3.5vw;
  background: var(--ink);
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
  backdrop-filter: none;
}

.brand,
.desktop-nav,
.header-cta,
.button,
h1,
h2,
.fixture-card strong,
.hub-main h3,
.news-card strong,
.shop-tile strong,
.route-page-card strong {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

.brand,
.desktop-nav,
.header-cta,
.button {
  text-transform: uppercase;
}

.desktop-nav {
  gap: clamp(24px, 4vw, 58px);
  color: var(--paper);
  font-size: 1.18rem;
}

.header-cta,
.button {
  min-height: 48px;
  border-radius: 4px;
  padding: 0 26px;
  box-shadow: none;
}

.button.secondary {
  background: rgb(0 43 73 / 0.72);
  border-color: rgb(255 255 255 / 0.45);
}

.hero {
  width: min(1540px, calc(100% - 7vw));
  min-height: calc(100svh - 184px);
  margin: clamp(44px, 6vw, 78px) auto clamp(56px, 8vw, 96px);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 58px);
  background: #001d32;
}

.hero-media {
  border-radius: 14px;
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgb(0 29 50 / 0.04) 0%, rgb(0 29 50 / 0.12) 38%, rgb(0 29 50 / 0.84) 100%),
    linear-gradient(90deg, rgb(0 29 50 / 0.9) 0%, rgb(0 29 50 / 0.48) 38%, rgb(0 29 50 / 0.06) 76%);
}

.hero-copy {
  min-height: auto;
  max-width: 660px;
  padding: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(5.5rem, 12vw, 11rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(3.2rem, 6.2vw, 6.5rem);
  line-height: 0.9;
}

p,
.hero-lede {
  font-family: 'Poppins', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
}

.hero-lede {
  max-width: 43ch;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.48;
}

.fixture-card {
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  width: min(390px, calc(100% - 36px));
  border-radius: 6px;
  background: rgb(0 29 50 / 0.9);
}

.action-band {
  width: min(1340px, calc(100% - 7vw));
  margin: clamp(24px, 2.4vw, 36px) auto clamp(70px, 10vw, 120px);
  border-radius: 0;
}

.action-link,
.index-card,
.hub-main,
.hub-stack article,
.fixture-tile,
.squad-panel,
.partner-cta,
.shop-card,
.fan-info,
.latest,
.final-cta,
.news-card,
.shop-tile,
.route-page-card {
  border-radius: 6px;
}

.match-hub,
.news-strip,
.match-index,
.club-story,
.fixtures,
.video-band,
.squad-media,
.partners,
.commerce,
.shop-strip,
.fan-info,
.latest,
.final-cta,
.route-page-list {
  width: min(1340px, calc(100% - 7vw));
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  min-height: 430px;
  justify-content: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 10%, rgb(0 29 50 / 0.86) 78%),
    var(--panel);
  background-position: center;
  background-size: cover;
}

.news-card:nth-child(1) {
  background-image:
    linear-gradient(180deg, transparent 10%, rgb(0 29 50 / 0.88) 78%),
    url('/assets/port-official-clean-hero.webp');
}

.news-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, transparent 10%, rgb(0 29 50 / 0.9) 78%),
    url('/assets/port-generated-tunnel.webp');
}

.news-card:nth-child(3) {
  background-image:
    linear-gradient(180deg, transparent 10%, rgb(0 29 50 / 0.9) 78%),
    url('/assets/port-action-three.webp');
}

.shop-strip {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgb(0 29 50 / 0.92), rgb(0 29 50 / 0.5) 48%, rgb(0 29 50 / 0.08)),
    url('/assets/port-generated-store.webp') center / cover;
}

.shop-grid {
  grid-template-columns: repeat(3, 1fr);
}

.shop-tile {
  min-height: 190px;
  background: rgb(0 29 50 / 0.78);
  border: 1px solid rgb(255 255 255 / 0.14);
  backdrop-filter: blur(12px);
}

.shop-tile p,
.shop-tile strong,
.shop-tile span {
  color: var(--paper);
}

.hub-layout,
.index-grid,
.route-page-list,
.partner-list,
.squad-groups,
.media-checklist,
.story-grid {
  border-radius: 6px;
}

.subhero {
  width: min(1340px, calc(100% - 7vw));
  min-height: calc(100svh - 170px);
  margin-top: clamp(44px, 6vw, 78px);
}

@media (max-width: 1040px) {
  .site-header {
    height: 74px;
  }

  .hero {
    width: min(100% - 28px, 900px);
    min-height: calc(100svh - 104px);
  }

  .news-grid,
  .shop-grid,
  .hub-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    width: calc(100% - 24px);
    min-height: calc(100svh - 90px);
    margin-top: 24px;
    padding: 18px;
  }

  h1 {
    font-size: clamp(4.5rem, 24vw, 6.6rem);
  }

  .fixture-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-copy {
    padding-bottom: 210px;
  }

  .action-band,
  .match-hub,
  .news-strip,
  .match-index,
  .club-story,
  .fixtures,
  .video-band,
  .squad-media,
  .partners,
  .commerce,
  .shop-strip,
  .fan-info,
  .latest,
  .final-cta,
  .subhero,
  .route-page-list {
    width: calc(100% - 24px);
  }
}

.hero {
  width: 100%;
  min-height: calc(100svh - 82px);
  margin: 0;
  border: 0;
  border-radius: 0;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(28px, 5vw, 72px);
  background: #05070a;
}

.hero-copy {
  max-width: min(560px, 42vw);
  min-height: min(650px, calc(100svh - 130px));
  margin-left: auto;
  padding: 0;
  justify-content: center;
}

.hero-media {
  border-radius: 0;
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgb(5 7 10 / 0.04) 0%, rgb(5 7 10 / 0.1) 42%, rgb(5 7 10 / 0.72) 100%),
    linear-gradient(90deg, rgb(5 7 10 / 0.08) 0%, rgb(5 7 10 / 0.05) 42%, rgb(5 7 10 / 0.7) 68%, rgb(5 7 10 / 0.96) 100%);
}

.hero-media img {
  object-position: center center;
}

@media (max-width: 920px) {
  .hero {
    min-height: calc(100svh - 74px);
    justify-content: flex-start;
    align-items: flex-end;
    padding: 24px 18px 34px;
  }

  .hero-copy {
    max-width: min(620px, 100%);
    min-height: min(560px, calc(100svh - 136px));
    justify-content: flex-end;
    padding-bottom: 186px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgb(5 7 10 / 0.1) 0%, rgb(5 7 10 / 0.16) 36%, rgb(5 7 10 / 0.9) 100%),
      linear-gradient(90deg, rgb(5 7 10 / 0.18) 0%, rgb(5 7 10 / 0.03) 58%, rgb(5 7 10 / 0.32) 100%);
  }

  .hero-media img {
    object-position: 66% center;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  min-height: calc(100svh - 84px);
}

.hero-copy {
  margin: 0;
  max-width: 650px;
  min-height: 0;
  padding: clamp(170px, 20svh, 280px) 0 clamp(32px, 6svh, 80px);
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgb(5 7 10 / 0.08) 0%, rgb(5 7 10 / 0.1) 44%, rgb(5 7 10 / 0.78) 100%),
    linear-gradient(90deg, rgb(5 7 10 / 0.1) 0%, rgb(5 7 10 / 0.06) 44%, rgb(5 7 10 / 0.86) 100%);
}

.hero-live {
  position: relative;
  z-index: 2;
  overflow: hidden;
  align-self: end;
  margin-bottom: clamp(26px, 5svh, 72px);
  border: 1px solid rgb(245 182 66 / 0.55);
  border-radius: 8px;
  background: rgb(0 29 50 / 0.86);
  box-shadow: var(--shadow);
}

.hero-live video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #001d32;
}

.hero-live div {
  padding: clamp(18px, 2.5vw, 28px);
}

.hero-live span,
.fixture-board span,
.ticket-grid span,
.partner-wall span,
.lead-story span,
.story-list span,
.roster-board span,
.reel-grid strong {
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.hero-live strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--paper);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-live p {
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.page-feature,
.fixture-board,
.ticket-grid,
.roster-board,
.honours-grid,
.media-theatre,
.partner-wall,
.shop-showcase,
.reel-grid {
  width: min(1340px, calc(100% - 7vw));
  margin: 0 auto clamp(72px, 10vw, 128px);
}

.page-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: stretch;
}

.lead-story,
.story-list article,
.fixture-board article,
.ticket-grid article,
.roster-board article,
.honours-grid article,
.partner-wall article,
.reel-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(239 70 20 / 0.16), transparent 46%),
    rgb(3 39 67 / 0.78);
}

.lead-story {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(180deg, transparent 8%, rgb(0 29 50 / 0.92) 88%),
    url('/assets/port-official-clean-hero.webp') center / cover;
}

.lead-story h2 {
  margin: 20px 0 16px;
  max-width: 8ch;
}

.story-list {
  display: grid;
  gap: 14px;
}

.story-list article {
  min-height: 160px;
  padding: 22px;
}

.story-list strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--paper);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.fixture-board {
  display: grid;
  gap: 12px;
}

.fixture-board article {
  min-height: 124px;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
}

.fixture-board .next-fixture {
  min-height: 190px;
  background:
    linear-gradient(100deg, rgb(239 70 20 / 0.38), rgb(0 43 73 / 0.9)),
    url('/assets/port-real-stadium-hero.webp') center / cover;
}

.fixture-board strong,
.ticket-grid strong,
.partner-wall strong {
  display: block;
  color: var(--paper);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.mini-steps,
.ticket-grid,
.roster-board,
.honours-grid,
.partner-wall,
.reel-grid {
  display: grid;
  gap: 16px;
}

.ticket-grid,
.roster-board {
  grid-template-columns: repeat(4, 1fr);
}

.ticket-grid article,
.roster-board article {
  min-height: 320px;
  padding: clamp(20px, 3vw, 32px);
}

.ticket-grid article,
.roster-board article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.honours-grid,
.partner-wall,
.reel-grid {
  grid-template-columns: repeat(3, 1fr);
}

.honours-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
}

.honours-grid strong {
  color: var(--amber);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.82;
}

.team-feature {
  grid-template-columns: minmax(320px, 0.45fr) minmax(0, 1fr);
  align-items: center;
}

.team-feature picture,
.team-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.media-theatre {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #001d32;
}

.media-theatre video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-theatre div {
  position: absolute;
  left: clamp(22px, 5vw, 64px);
  bottom: clamp(22px, 5vw, 64px);
  z-index: 2;
  max-width: 540px;
}

.media-theatre::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgb(0 29 50 / 0.84) 100%),
    linear-gradient(90deg, rgb(0 29 50 / 0.72), transparent 70%);
}

.reel-grid article {
  overflow: hidden;
  min-height: 320px;
  padding: 0;
}

.reel-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.reel-grid strong {
  display: block;
  padding: 18px 20px 22px;
  color: var(--paper);
  font-size: 1rem;
}

.partner-wall article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.shop-showcase {
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(0 29 50 / 0.9), rgb(0 29 50 / 0.48) 54%, transparent),
    url('/assets/port-generated-store.webp') center / cover;
}

.shop-showcase div {
  max-width: 560px;
}

.fixture-card {
  display: none;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-copy {
    padding-top: clamp(120px, 18svh, 220px);
    padding-bottom: 0;
  }

  .hero-live {
    margin: 0;
  }

  .page-feature,
  .fixture-board article,
  .ticket-grid,
  .roster-board,
  .honours-grid,
  .partner-wall,
  .reel-grid {
    grid-template-columns: 1fr;
  }

  .media-theatre {
    min-height: 540px;
  }
}

@media (max-width: 760px) {
  .hero {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 18px;
    gap: 18px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 112px;
  }

  .hero-live video {
    aspect-ratio: 16 / 10;
  }

  .page-feature,
  .fixture-board,
  .ticket-grid,
  .roster-board,
  .honours-grid,
  .media-theatre,
  .partner-wall,
  .shop-showcase,
  .reel-grid {
    width: calc(100% - 28px);
  }
}

.hero {
  width: 100%;
  min-height: calc(100svh - 72px);
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(18px, 4vw, 48px);
  padding: clamp(18px, 4vw, 58px);
}

.hero::before {
  content: '';
  position: absolute;
  width: 42vw;
  height: 42vw;
  left: calc(var(--glow-x, 45vw) - 21vw);
  top: calc(var(--glow-y, 52svh) - 21vw);
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background: radial-gradient(circle, rgb(255 103 26 / 0.7), transparent 62%);
  mix-blend-mode: screen;
  transition: left 220ms var(--ease-out), top 220ms var(--ease-out);
}

.hero-copy {
  max-width: min(790px, 60vw);
  min-height: auto;
  padding: 0;
}

.hero-copy h1 {
  max-width: 7ch;
  margin-bottom: 18px;
  font-size: clamp(6rem, 16vw, 15rem);
  line-height: 0.78;
}

.hero-media {
  transform: translate3d(0, 0, 0);
}

.hero-media img {
  min-height: calc(100svh - 72px);
  object-position: center center;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.055);
  filter: saturate(1.08) contrast(1.06);
  transition: transform 420ms var(--ease-out);
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgb(0 29 50 / 0.2) 0%, rgb(0 29 50 / 0.14) 35%, rgb(0 29 50 / 0.9) 100%),
    linear-gradient(90deg, rgb(0 29 50 / 0.92) 0%, rgb(0 29 50 / 0.58) 34%, rgb(0 29 50 / 0.14) 68%),
    linear-gradient(0deg, rgb(239 70 20 / 0.2), transparent 44%);
}

.hero-live {
  align-self: end;
  margin: 0 0 6px;
  transform: translate3d(0, 0, 0);
}

.live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--paper);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.live-pulse b {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 0 0 rgb(255 106 33 / 0.75);
  animation: pulse-dot 1.7s var(--ease-out) infinite;
}

.player-reveals {
  width: min(1340px, calc(100% - 7vw));
  margin: 0 auto clamp(80px, 10vw, 132px);
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.player-grid article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(160deg, rgb(239 70 20 / 0.2), transparent 42%),
    linear-gradient(180deg, rgb(8 60 89 / 0.86), rgb(3 39 67 / 0.96));
  transition: transform 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.player-grid article::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(180deg, transparent 12%, rgb(0 29 50 / 0.78) 78%),
    url('/assets/port-action-two.webp') center / cover;
  transform: scale(1.05);
  transition: opacity 240ms var(--ease-out), transform 480ms var(--ease-out);
}

.player-grid article:nth-child(2n)::before {
  background:
    linear-gradient(180deg, transparent 12%, rgb(0 29 50 / 0.78) 78%),
    url('/assets/port-action-one.webp') center / cover;
}

.player-grid article:nth-child(3n)::before {
  background:
    linear-gradient(180deg, transparent 12%, rgb(0 29 50 / 0.78) 78%),
    url('/assets/port-official-clean-hero.webp') center / cover;
}

.player-grid article > * {
  position: relative;
  z-index: 1;
}

.player-grid span {
  align-self: start;
  color: var(--amber);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.player-grid strong {
  align-self: center;
  margin: 0;
  max-width: 100%;
  color: var(--paper);
  font-family: 'Poppins', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.55rem);
  font-weight: 600;
  line-height: 0.98;
  text-transform: none;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: keep-all;
  transition: transform 220ms var(--ease-out);
}

.player-grid p {
  position: absolute;
  right: clamp(22px, 3vw, 34px);
  bottom: 62px;
  left: clamp(22px, 3vw, 34px);
  max-width: 34ch;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out);
}

.player-grid small {
  position: absolute;
  right: clamp(22px, 3vw, 34px);
  bottom: 28px;
  left: clamp(22px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out);
}

.player-grid article:hover,
.player-grid article:focus-visible {
  z-index: 2;
  transform: translateY(-6px);
}

.player-grid article:hover::before,
.player-grid article:focus-visible::before {
  opacity: 0.88;
  transform: scale(1);
}

.player-grid article:hover p,
.player-grid article:hover small,
.player-grid article:focus-visible p,
.player-grid article:focus-visible small {
  opacity: 1;
  transform: translateY(0);
}

.player-grid article:hover strong,
.player-grid article:focus-visible strong {
  transform: translateY(-42px);
}

.motion-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 680ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 680ms var(--ease-out) var(--reveal-delay, 0ms);
}

.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulse-dot {
  70% {
    box-shadow: 0 0 0 13px rgb(255 106 33 / 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(255 106 33 / 0);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 72px);
  }

  .hero-copy {
    max-width: 760px;
    padding-top: clamp(118px, 18svh, 210px);
  }

  .hero-copy h1 {
    font-size: clamp(5.4rem, 21vw, 12rem);
  }

  .hero-live {
    max-width: 560px;
  }

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

@media (max-width: 760px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding: 18px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding-top: 96px;
  }

  .hero-copy h1 {
    max-width: 6ch;
    font-size: clamp(5rem, 24vw, 8.6rem);
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-live {
    width: 100%;
  }

  .player-reveals {
    width: calc(100% - 28px);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .player-grid p,
  .player-grid small,
  .player-grid article::before {
    opacity: 1;
    transform: none;
  }
}

.roster-board,
.player-grid,
.ticket-grid,
.honours-grid,
.partner-wall,
.reel-grid,
.index-grid,
.news-grid,
.hub-stack,
.shop-grid {
  min-width: 0;
}

.roster-board article,
.player-grid article,
.ticket-grid article,
.honours-grid article,
.partner-wall article,
.reel-grid article,
.index-card,
.news-card,
.shop-tile,
.fixture-board article {
  min-width: 0;
}

.roster-board h2,
.roster-board p,
.player-grid p {
  overflow-wrap: anywhere;
}

.roster-board h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.65rem);
}

.motion-tile {
  position: relative;
  isolation: isolate;
  transition:
    transform 300ms var(--ease-out),
    border-color 260ms var(--ease-out),
    background-color 260ms var(--ease-out),
    box-shadow 300ms var(--ease-out);
}

.motion-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 28%, rgb(255 255 255 / 0.1) 48%, transparent 68%);
  transform: translateX(-125%);
  transition: transform 720ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .motion-ready .motion-tile.is-visible:hover,
  .motion-ready .motion-tile.is-visible:focus-visible {
    z-index: 2;
    transform: translateY(-7px) scale(1.008);
    border-color: rgb(245 181 63 / 0.62);
    box-shadow: 0 24px 54px rgb(0 20 34 / 0.34);
  }

  .motion-tile:hover::after,
  .motion-tile:focus-visible::after {
    transform: translateX(125%);
  }

  .action-link .icon:last-child,
  .fixture-tile h3,
  .index-card strong,
  .route-page-card strong,
  .news-card strong,
  .shop-tile strong {
    transition: transform 260ms var(--ease-out), color 220ms var(--ease-out);
  }

  .action-link:hover .icon:last-child,
  .action-link:focus-visible .icon:last-child {
    transform: translateX(6px);
  }

  .fixture-tile:hover h3,
  .fixture-tile:focus-visible h3,
  .index-card:hover strong,
  .route-page-card:hover strong,
  .news-card:hover strong,
  .shop-tile:hover strong {
    color: var(--amber);
    transform: translateY(-5px);
  }
}

@media (max-width: 1180px) {
  .roster-board,
  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
}

.language-switch {
  min-width: 46px;
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: 4px;
  font-family: 'Poppins', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out), background-color 160ms var(--ease-out);
}

.language-switch:hover,
.language-switch:focus-visible {
  color: var(--ink);
  border-color: var(--amber);
  background: var(--amber);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
  padding: clamp(28px, 5vw, 72px) clamp(24px, 6vw, 92px) 126px;
}

.hero-media video.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 72px);
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.015);
  filter: saturate(1.08) contrast(1.04);
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgb(4 13 20 / 0.08) 0%, rgb(4 13 20 / 0.04) 42%, rgb(4 13 20 / 0.66) 100%),
    linear-gradient(90deg, rgb(4 13 20 / 0.06) 0%, rgb(4 13 20 / 0.08) 50%, rgb(4 13 20 / 0.72) 73%, rgb(4 13 20 / 0.95) 100%);
}

.hero-copy {
  grid-column: 2;
  align-self: center;
  max-width: 560px;
  min-height: 0;
  margin: 0 0 0 auto;
  padding: 0;
}

.hero-copy h1 {
  max-width: 6ch;
  font-size: clamp(4.8rem, 8vw, 6rem);
  line-height: 0.84;
}

.hero-live {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(220px, 1.15fr) minmax(280px, 1.5fr) auto auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 38px);
  margin: 0;
  padding: 20px clamp(24px, 6vw, 92px);
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 0;
  background: rgb(0 29 50 / 0.88);
  box-shadow: 0 -18px 50px rgb(0 15 28 / 0.2);
  backdrop-filter: blur(16px);
}

.hero-live > span {
  margin: 0;
  white-space: nowrap;
}

.hero-live > strong {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.hero-live > p {
  margin: 0;
  color: var(--paper-dim);
  line-height: 1.45;
}

.hero-live > .live-pulse {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.hero-live > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--amber);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    min-height: calc(100svh - 74px);
  }

  .hero-live {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero-live > p,
  .hero-live > .live-pulse {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 14px;
  }

  .language-switch {
    min-width: 44px;
    min-height: 44px;
  }

  .hero {
    min-height: calc(100svh - 74px);
    grid-template-columns: 1fr;
    align-items: end;
    padding: 32px 18px 168px;
  }

  .hero-media video.hero-background {
    min-height: calc(100svh - 74px);
    object-position: 44% center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgb(4 13 20 / 0.05) 0%, rgb(4 13 20 / 0.15) 36%, rgb(4 13 20 / 0.94) 78%, rgb(4 13 20 / 0.98) 100%),
      linear-gradient(90deg, rgb(4 13 20 / 0.24), transparent 72%);
  }

  .hero-copy {
    grid-column: 1;
    max-width: 100%;
    margin: 0;
  }

  .hero-copy h1 {
    font-size: clamp(4.6rem, 23vw, 6rem);
  }

  .hero-lede {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-live {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 16px;
    padding: 16px 18px 18px;
  }

  .hero-live > span {
    grid-column: 1 / -1;
  }

  .hero-live > strong {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .hero-live > a {
    font-size: 0;
  }

  .hero-live > a .icon {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video.hero-background {
    visibility: hidden;
  }

  .hero-media {
    background: url('/assets/port-official-clean-hero.webp') 44% center / cover no-repeat;
  }
}

html[lang='th'] {
  line-break: auto;
  overflow-wrap: normal;
  word-break: normal;
  word-break: auto-phrase;
  hyphens: none;
}

html[lang='th'] body,
html[lang='th'] button,
html[lang='th'] input,
html[lang='th'] select,
html[lang='th'] textarea {
  font-family: 'Noto Sans Thai', 'Poppins', ui-sans-serif, system-ui, sans-serif;
}

html[lang='th'] h1,
html[lang='th'] h2,
html[lang='th'] h3,
html[lang='th'] .brand,
html[lang='th'] .desktop-nav,
html[lang='th'] .header-cta,
html[lang='th'] .button,
html[lang='th'] .language-switch,
html[lang='th'] .eyebrow-label,
html[lang='th'] .kicker,
html[lang='th'] .hero-live strong,
html[lang='th'] .hero-live span,
html[lang='th'] .hero-live a,
html[lang='th'] .text-link,
html[lang='th'] .player-grid strong,
html[lang='th'] .route-page-card strong {
  font-family: 'Noto Sans Thai', 'Poppins', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

html[lang='th'] .desktop-nav,
html[lang='th'] .header-cta,
html[lang='th'] .button,
html[lang='th'] .language-switch,
html[lang='th'] .mobile-menu a,
html[lang='th'] .text-link,
html[lang='th'] .action-link strong,
html[lang='th'] .index-card strong,
html[lang='th'] .route-page-card strong,
html[lang='th'] .player-grid span,
html[lang='th'] .player-grid small {
  font-weight: 600;
}

html[lang='th'] h1,
html[lang='th'] h2,
html[lang='th'] h3,
html[lang='th'] .hero-live strong {
  font-weight: 600;
}

html[lang='th'] #hero-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
}

html[lang='th'] h2,
html[lang='th'] h3,
html[lang='th'] .hero-live strong {
  line-height: 1.14;
  text-wrap: balance;
}

html[lang='th'] p,
html[lang='th'] .hero-lede {
  line-height: 1.68;
}

html[lang='th'] .section-intro {
  max-width: 1040px;
}

html[lang='th'] .section-intro h2 {
  max-width: 100%;
  font-size: clamp(3rem, 5.2vw, 5.45rem);
}

html[lang='th'] .index-card {
  grid-template-rows: 24px minmax(82px, 1fr) minmax(76px, auto);
}

html[lang='th'] .index-card strong {
  font-size: clamp(1.08rem, 1.28vw, 1.34rem);
  line-height: 1.32;
}

html[lang='th'] .index-card p {
  line-height: 1.58;
}

html[lang='th'] .player-grid strong {
  font-family: 'Poppins', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  line-height: 1;
}

@media (hover: none) {
  .player-grid article {
    grid-template-rows: auto minmax(120px, 1fr) auto auto;
  }

  .player-grid p,
  .player-grid small {
    position: static;
    opacity: 1;
    transform: none;
  }

  .player-grid p {
    margin-bottom: 18px;
  }
}

@media (max-width: 760px) {
  html[lang='th'] .section-intro h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .action-link {
    min-height: 112px;
  }

  .index-card {
    min-height: 220px;
  }
}
