:root {
  --color-bg: #ffffff;
  --color-page: #f5f7fb;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fafc;
  --color-heading: #0f172a;
  --color-text: #1f2937;
  --color-muted: #64748b;
  --color-muted-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-border-strong: #cbd5e1;
  --color-navy: #0f172a;
  --color-navy-soft: #1e293b;
  --color-green: #16a34a;
  --color-green-dark: #12813c;
  --color-blue: #1d4ed8;
  --color-gold: #c8962e;
  --color-gold-soft: #fff7e3;
  --color-red: #dc2626;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.12);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(22, 163, 74, 0.3);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: #ffffff;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.stack {
  display: grid;
  gap: 18px;
}

.section {
  padding: 72px 0;
}

.section-white {
  background: var(--color-bg);
}

.section-tight {
  padding: 46px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
.display {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--color-heading);
  font-size: clamp(2.3rem, 5vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--color-heading);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--color-heading);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 8px;
  color: var(--color-heading);
  font-size: 0.98rem;
}

.lead {
  max-width: 690px;
  color: #475569;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.muted {
  color: var(--color-muted);
}

.small {
  font-size: 0.88rem;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-navy);
  color: #dbeafe;
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar strong {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-heading);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--color-navy);
  overflow: hidden;
  font-weight: 900;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand small {
  display: block;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--color-green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  width: 18px;
  height: 2px;
  display: block;
  position: relative;
  border-radius: 999px;
  background: var(--color-heading);
  content: "";
}

.nav-toggle-line::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-line::after {
  position: absolute;
  top: 6px;
}

.hero {
  min-height: 590px;
  display: grid;
  align-items: center;
  padding: 72px 0;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-panel {
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.image-slot,
.hero-image-slot,
.match-thumb,
.media-placeholder {
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  background: #eef2ff;
  color: #475569;
  font-weight: 900;
  text-align: center;
}

.hero-image-slot {
  min-height: 360px;
  border-radius: var(--radius-md);
}

.match-thumb,
.media-placeholder {
  min-height: 158px;
  border-width: 0 0 1px;
}

.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--color-green);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.2);
}

.button-primary:hover {
  background: var(--color-green-dark);
}

.button-secondary {
  border-color: var(--color-border-strong);
  background: #ffffff;
  color: var(--color-heading);
}

.button-secondary:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.button-gold {
  border-color: #efd083;
  background: var(--color-gold-soft);
  color: #7c540b;
}

.button-dark {
  background: var(--color-navy);
  color: #ffffff;
}

.button-full {
  width: 100%;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 20px;
}

.card-footer {
  margin-top: auto;
  padding-top: 18px;
}

.match-card {
  display: flex;
  flex-direction: column;
  min-height: 332px;
}

.match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: #334155;
  background: var(--color-surface-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.pill-green {
  border-color: #bbf7d0;
  color: #166534;
  background: #f0fdf4;
}

.pill-gold {
  border-color: #efd083;
  color: #7c540b;
  background: var(--color-gold-soft);
}

.teams-line {
  margin-bottom: 8px;
  color: var(--color-heading);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.price-line {
  margin: 16px 0 0;
  color: var(--color-heading);
  font-weight: 900;
}

.price-line span {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  min-height: 102px;
  padding: 20px;
  border-right: 1px solid var(--color-border);
  background: #ffffff;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-heading);
}

.trust-item span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

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

.stat {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.stat strong {
  display: block;
  color: var(--color-heading);
  font-size: 1.65rem;
  line-height: 1;
}

.stat span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.notice {
  padding: 18px;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  background: var(--color-gold-soft);
  color: #7c540b;
}

.alert {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: #1e40af;
  font-weight: 700;
}

.form-card {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--color-heading);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-text);
}

.field textarea {
  min-height: 120px;
  padding-top: 10px;
  resize: vertical;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--color-heading);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: var(--color-green);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  padding: 46px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-navy);
  color: #cbd5e1;
}

.footer strong,
.footer h3,
.footer h4 {
  color: #ffffff;
}

.footer .brand {
  color: #ffffff;
}

.footer .brand small {
  color: #cbd5e1;
}

.footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
}

.home-hero {
  min-height: calc(100svh - 118px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.84) 0%, rgba(15, 23, 42, 0.62) 52%, rgba(15, 23, 42, 0.34) 100%),
    url("../images/stadiums/metlife.png") center / cover no-repeat,
    #0f172a;
  color: #ffffff;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.08));
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  margin-bottom: 14px;
  color: #bbf7d0;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 880px;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.36);
}

.home-hero-subtitle {
  max-width: 620px;
  margin-bottom: 0;
  color: #f8fafc;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.14;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-hero {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1.02rem;
}

.countdown-card {
  width: min(100%, 560px);
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.countdown-label {
  display: block;
  margin-bottom: 12px;
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 800;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown-timer span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.54);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.countdown-timer strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1;
}

.countdown-timezone {
  display: block;
  margin-top: 12px;
  color: #dbeafe;
  font-weight: 700;
}

.hero-trust-line {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.quick-stats {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  padding-bottom: 34px;
}

.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.quick-stat {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.quick-stat:last-child {
  border-right: 0;
}

.quick-stat strong {
  display: block;
  color: var(--color-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.quick-stat span {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-matches {
  padding-top: 58px;
}

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

.ticket-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ticket-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}

.ticket-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.teams-row > strong {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.team img {
  width: 54px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.team span {
  max-width: 100%;
  color: var(--color-heading);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.18;
}

.match-details {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.match-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.match-details span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-green);
}

.ticket-card-footer {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.ticket-card-footer .price-line {
  margin: 0;
}

.stadium-showcase {
  background: var(--color-page);
}

.stadium-scroll {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--color-border-strong) transparent;
}

.stadium-card {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.2), transparent 34%),
    linear-gradient(315deg, rgba(22, 163, 74, 0.22), transparent 40%),
    #dbeafe;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.stadium-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.stadium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.14));
}

.stadium-card:hover img {
  transform: scale(1.05);
}

.stadium-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(315deg, rgba(15, 23, 42, 0.16), transparent 40%);
}

.stadium-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 18px;
  color: #ffffff;
}

.stadium-overlay strong {
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.2;
}

.stadium-overlay small {
  color: #dbeafe;
  font-weight: 800;
}

.seating-preview {
  position: absolute;
  inset: 14px 14px auto auto;
  z-index: 2;
  max-width: 170px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-heading);
  opacity: 0;
  transform: translateY(-6px);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.stadium-card:hover .seating-preview,
.stadium-card:focus-visible .seating-preview {
  opacity: 1;
  transform: translateY(0);
}

.teams-showcase {
  overflow: hidden;
}

.group-teasers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.group-teasers article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.group-teasers span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.group-teasers strong {
  color: var(--color-heading);
  font-size: 0.94rem;
  line-height: 1.35;
}

.flag-carousel {
  display: grid;
  grid-auto-columns: 140px;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--color-border-strong) transparent;
}

.flag-chip {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 14px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.flag-chip:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}

.flag-chip img {
  width: 64px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  object-fit: cover;
}

.flag-chip span {
  color: var(--color-heading);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.15;
}

.how-it-works-section {
  background: var(--color-page);
}

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

.step-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--color-green);
  color: #ffffff;
  font-weight: 900;
}

.step-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.support-lines {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.support-lines h3 {
  font-size: 1.45rem;
}

.support-number-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.support-number-grid a {
  display: grid;
  gap: 2px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.support-number-grid a:hover {
  transform: translateY(-1px);
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.support-number-grid span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-number-grid strong {
  color: var(--color-heading);
  font-size: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-card {
  min-height: 224px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: #bbf7d0;
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: #f0fdf4;
  color: var(--color-green);
  font-size: 0.88rem;
  font-weight: 900;
}

.why-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.reviews-section {
  background: var(--color-page);
}

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

.review-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0;
}

.review-card p {
  color: var(--color-muted);
}

.review-author {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.review-author span {
  color: var(--color-heading);
  font-weight: 900;
}

.review-author small {
  color: var(--color-muted);
  font-weight: 700;
}

.review-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.review-trust-strip div {
  padding: 18px;
  background: #ffffff;
}

.review-trust-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-heading);
}

.review-trust-strip span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.62)),
    url("../images/stadiums/Mercedes-Benz Stadium, Atlanta.png") center / cover no-repeat,
    var(--color-navy);
  color: #ffffff;
}

.final-cta-content {
  max-width: 760px;
}

.final-cta h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  color: #e2e8f0;
  font-size: 1.1rem;
}

.final-cta .button {
  margin-top: 14px;
}

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

.page-hero {
  min-height: 440px;
  display: grid;
  align-items: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  color: #ffffff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.52));
  z-index: 0;
}

.matches-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.52)),
    url("../images/stadiums/NRG Stadium, Houston.png") center / cover no-repeat,
    var(--color-navy);
}

.stadiums-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.48)),
    url("../images/stadiums/AT&T Stadium, Dallas.png") center / cover no-repeat,
    var(--color-navy);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.page-hero-subtitle {
  max-width: 760px;
  color: #e2e8f0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 800;
}

.match-search {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.match-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-heading);
  font-weight: 700;
}

.match-search input::placeholder {
  color: var(--color-muted);
}

.stadiums-stats {
  background: var(--color-page);
}

.stadium-filters-section,
.stadium-grid-section {
  background: var(--color-page);
}

.stadium-filters-section {
  padding-bottom: 0;
}

.stadium-filter-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr auto;
  gap: 14px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

.stadium-page-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.stadium-page-image {
  min-height: 210px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(22, 163, 74, 0.18), transparent 42%),
    #e2e8f0;
}

.stadium-page-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.stadium-page-card:hover .stadium-page-image img {
  transform: scale(1.04);
}

.stadium-page-image.is-placeholder span {
  padding: 20px;
  color: var(--color-heading);
  font-weight: 900;
  text-align: center;
}

.stadium-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-gold-soft);
  color: #7c540b;
  font-size: 0.78rem;
  font-weight: 900;
}

.stadium-page-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.stadium-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stadium-card-stats span {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.stadium-card-stats strong {
  display: block;
  color: var(--color-heading);
  font-size: 1.2rem;
  line-height: 1;
}

.stadium-address {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.stadium-mini-seating {
  height: 140px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.stadium-mini-seating img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stadium-bottom-cta {
  padding-top: 0;
}

.teams-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.52)),
    url("../images/stadiums/BC Place, Vancouver stadium.png") center / cover no-repeat,
    var(--color-navy);
}

.teams-stats,
.teams-page-section {
  background: var(--color-page);
}

.teams-search {
  max-width: 820px;
}

.confed-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.confed-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-heading);
  cursor: pointer;
  font-weight: 900;
}

.confed-tabs button:hover,
.confed-tabs button.is-active {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: var(--color-green);
}

.teams-results-summary {
  margin: -4px 0 16px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.teams-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-page-card {
  min-height: 226px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.team-page-card img {
  width: 74px;
  height: 50px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  object-fit: cover;
}

.team-page-card span {
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-page-card h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.team-page-card:target {
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14), var(--shadow-md);
}

.teams-pagination[hidden] {
  display: none;
}

.teams-bottom-cta {
  padding-top: 0;
}

.match-filters-section {
  background: var(--color-page);
}

.filters-panel {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.price-field input[type="range"] {
  width: 100%;
  accent-color: var(--color-green);
}

.price-range-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.price-range-row span {
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.price-range-row strong {
  color: var(--color-heading);
}

.teams-filter {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.teams-filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.teams-filter-header label {
  color: var(--color-heading);
  font-size: 0.98rem;
  font-weight: 900;
}

.selected-count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 900;
}

.team-search-input {
  width: 100%;
  min-height: 46px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-heading);
  font-weight: 700;
}

.team-options {
  max-height: 310px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  overflow: auto;
  padding: 4px 4px 8px;
}

.team-options label {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  color: var(--color-heading);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease;
}

.team-options label:hover,
.team-options label:has(input:checked) {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.team-options input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--color-green);
}

.team-options img {
  width: 30px;
  height: 21px;
  flex: 0 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  object-fit: cover;
}

.team-options label.is-hidden {
  display: none;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.results-summary-section {
  padding: 0 0 34px;
  background: var(--color-page);
}

.results-summary-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.results-summary-bar p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-weight: 800;
}

.results-summary-bar strong {
  color: var(--color-heading);
}

.view-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.view-toggle button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-weight: 900;
}

.view-toggle button.is-active {
  background: #ffffff;
  color: var(--color-green);
  box-shadow: var(--shadow-sm);
}

.matches-display-section {
  padding-top: 0;
  background: var(--color-page);
}

.matches-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.matches-main-column {
  min-width: 0;
}

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

.result-match-card {
  min-height: 392px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.result-match-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}

.result-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.result-match-time {
  color: var(--color-heading);
  font-size: 1rem;
  font-weight: 900;
}

.result-stadium {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.result-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.result-teams div {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.result-teams img {
  width: 58px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  object-fit: cover;
}

.result-teams span {
  color: var(--color-heading);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
}

.result-teams > strong {
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-seed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.result-extra {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.result-match-card .price-line {
  margin-top: auto;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.pagination-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-heading);
  cursor: pointer;
  font-weight: 900;
}

.pagination-step {
  width: auto;
  padding: 0 14px;
}

.pagination-btn.is-active,
.pagination-btn:hover {
  border-color: var(--color-green);
  background: #f0fdf4;
  color: var(--color-green);
}

.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

html[data-match-view="list"] .matches-results-grid {
  grid-template-columns: 1fr;
}

html[data-match-view="list"] .result-match-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr auto;
  gap: 18px;
  align-items: center;
}

html[data-match-view="list"] .result-card-head {
  margin-bottom: 0;
}

html[data-match-view="list"] .result-teams {
  margin: 0;
  padding: 0;
  border: 0;
}

html[data-match-view="list"] .result-extra {
  display: flex;
}

html[data-match-view="list"] .result-match-card .price-line {
  margin: 0;
}

html[data-match-view="list"] .result-match-card .button {
  width: auto;
  white-space: nowrap;
}

.matches-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.sidebar-panel {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.sidebar-panel h3 {
  margin-bottom: 14px;
}

.sidebar-link-list {
  display: grid;
  gap: 10px;
}

.sidebar-link-list a {
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.sidebar-link-list a:hover {
  transform: translateY(-1px);
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.sidebar-link-list strong {
  color: var(--color-heading);
  font-size: 0.92rem;
}

.sidebar-link-list span {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.sidebar-link-list.compact a {
  color: var(--color-heading);
  font-size: 0.9rem;
  font-weight: 900;
}

.quick-stage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-stage-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface-soft);
  color: var(--color-heading);
  font-size: 0.8rem;
  font-weight: 900;
}

.quick-stage-links a:hover {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: var(--color-green);
}

.match-trust-cta {
  padding: 0 0 72px;
  background: var(--color-page);
}

.match-trust-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.76)),
    url("../images/stadiums/AT&T Stadium, Dallas.png") center / cover no-repeat,
    var(--color-navy);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.match-trust-card h2 {
  color: #ffffff;
}

.match-trust-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: #e2e8f0;
}

.match-trust-points {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.match-trust-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.ticket-detail-hero {
  padding: 48px 0 42px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.88)),
    var(--color-navy);
  color: #ffffff;
}

.ticket-breadcrumb {
  margin-bottom: 14px;
  color: #cbd5e1;
  font-size: 0.84rem;
  font-weight: 800;
}

.ticket-detail-hero h1 {
  max-width: 920px;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.ticket-detail-hero p {
  margin-bottom: 14px;
  color: #cbd5e1;
  font-weight: 800;
}

.ticket-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticket-meta-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.ticket-detail-section {
  background: var(--color-page);
}

.ticket-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.venue-panel,
.ticket-options-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.venue-panel {
  overflow: hidden;
}

.venue-image {
  min-height: 230px;
  display: grid;
  place-items: center;
  background: var(--color-surface-soft);
  color: var(--color-muted);
  font-weight: 900;
}

.venue-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.seat-map-card {
  padding: 18px;
}

.seat-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.seat-map-header h2 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.seat-map-header span {
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seat-map-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.seat-map-toolbar button {
  min-width: 40px;
  min-height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-heading);
  cursor: pointer;
  font-weight: 900;
}

.seat-map-toolbar button:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.seat-map {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

.image-seat-map {
  min-height: 420px;
  cursor: grab;
}

.image-seat-map:active {
  cursor: grabbing;
}

.image-seat-map img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  transform: scale(var(--seat-zoom, 1));
  transform-origin: center;
  transition: transform 160ms ease;
  user-select: none;
}

.seat-map-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  color: var(--color-muted);
  text-align: center;
}

.image-seat-map.is-missing img {
  display: none;
}

.image-seat-map.is-missing .seat-map-fallback {
  display: grid;
}

.seat-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 46%;
  transform: translate(-50%, -50%);
}

.ring-outer {
  width: 88%;
  height: 72%;
  background: #1d4ed8;
}

.ring-middle {
  width: 73%;
  height: 58%;
  background: #b91c1c;
}

.ring-inner {
  width: 58%;
  height: 43%;
  background: #c8962e;
}

.pitch {
  width: 44%;
  height: 27%;
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: var(--radius-xs);
  background: repeating-linear-gradient(90deg, #16a34a 0 22px, #15803d 22px 44px);
  transform: translate(-50%, -50%);
}

.pitch span {
  width: 42%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
}

.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seat-legend i {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 999px;
}

.legend-cat-1 {
  background: #c8962e;
}

.legend-cat-2 {
  background: #b91c1c;
}

.legend-cat-3 {
  background: #1d4ed8;
}

.legend-premium {
  background: #111827;
}

.venue-copy {
  padding: 0 18px 18px;
}

.venue-copy p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.ticket-options-panel {
  padding: 22px;
}

.ticket-options-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.ticket-options-head h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.ticket-options-head > span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 900;
}

.ticket-table {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.ticket-option-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) minmax(120px, 0.65fr) minmax(120px, 0.7fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.ticket-option-row strong {
  display: block;
  color: #172554;
  font-size: 1.05rem;
}

.ticket-option-row span {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.ticket-price {
  color: var(--color-heading);
  font-size: 1.05rem;
  font-weight: 900;
}

.ticket-price small {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.ticket-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-quantity select {
  min-width: 62px;
  min-height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-heading);
  font-weight: 800;
}

.sold-out {
  color: var(--color-red) !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────
   How It Works page
   ────────────────────────────────────────── */

.hiw-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.58)),
    url("../images/stadiums/Gillette Stadium, Foxborough.png") center / cover no-repeat,
    var(--color-navy);
}

.hiw-steps-section {
  padding-top: 58px;
}

/* Timeline */
.hiw-steps-timeline {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin-inline: auto;
}

.hiw-step-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
}

.hiw-step-number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw-step-line {
  flex: 1;
  width: 3px;
  min-height: 24px;
  background: linear-gradient(180deg, var(--color-green), #bbf7d0);
  border-radius: 999px;
}

.hiw-step-body {
  padding-bottom: 38px;
}

.hiw-step-card:last-child .hiw-step-body {
  padding-bottom: 0;
}

.hiw-step-body h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.hiw-step-body > p {
  color: var(--color-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.hiw-step-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Category chips */
.hiw-category-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hiw-cat-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.hiw-cat-chip i {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
  margin-top: 3px;
  border-radius: 999px;
}

.hiw-cat-chip span {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.hiw-cat-chip strong {
  display: block;
  color: var(--color-heading);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

/* WhatsApp message preview */
.hiw-message-preview {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hiw-msg-label {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-soft);
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hiw-msg-bubble {
  padding: 16px;
  margin: 14px;
  border-radius: var(--radius-md);
  background: #dcf8c6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  position: relative;
}

.hiw-msg-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #dcf8c6;
  border-left: 8px solid transparent;
}

.hiw-msg-bubble p {
  margin: 0 0 4px;
  color: #1a2e05;
  font-size: 0.9rem;
  line-height: 1.55;
}

.hiw-msg-bubble p:last-child {
  margin-bottom: 0;
}

/* Checklist */
.hiw-checklist {
  display: grid;
  gap: 10px;
}

.hiw-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  transition: border-color 160ms ease, background 160ms ease;
}

.hiw-check-item:hover {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.hiw-check-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f0fdf4;
  color: var(--color-green);
  font-size: 0.82rem;
  font-weight: 900;
}

.hiw-check-item:hover .hiw-check-icon {
  background: #bbf7d0;
}

.hiw-check-item > span {
  color: var(--color-heading);
  font-size: 0.94rem;
  font-weight: 700;
}

/* Delivery cards */
.hiw-delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hiw-delivery-item {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hiw-delivery-item:hover {
  transform: translateY(-2px);
  border-color: #bbf7d0;
  box-shadow: var(--shadow-sm);
}

.hiw-delivery-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-heading);
  font-size: 0.94rem;
}

.hiw-delivery-item span {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Support section */
.hiw-support-section {
  background: var(--color-page);
}

/* Why WhatsApp grid */
.hiw-why-grid {
  grid-template-columns: repeat(5, 1fr);
}

.hiw-why-section .why-icon {
  background: transparent;
  color: inherit;
  font-size: 1.5rem;
}

/* FAQ section */
.hiw-faq-section {
  background: var(--color-page);
}

.hiw-faq-list {
  max-width: 820px;
  margin-inline: auto;
}

/* Trust section */
.hiw-trust-strip {
  margin-bottom: 18px;
}

.hiw-notice {
  margin-top: 0;
}

.hiw-notice p {
  margin-bottom: 0;
}

/* ─── Contact Page ─────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 48px;
  align-items: start;
}

.contact-info-col {
  position: sticky;
  top: 90px;
}

.contact-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-trust-strip > div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
}

.contact-trust-strip > div:last-child {
  border-bottom: none;
}

.contact-trust-strip strong {
  font-size: 0.9rem;
  color: var(--color-heading);
}

.contact-trust-strip span {
  font-size: 0.84rem;
  color: var(--color-muted);
}

.field select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.field select:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}
