@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/Oswald-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/Nunito-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #080806;
  --ink-soft: #11110f;
  --screen: #0d0d0b;
  --paper: #f3efe6;
  --paper-soft: #e8e1d3;
  --headline: #f4efe5;
  --body: #c7beae;
  --muted: #918879;
  --dark-body: #4e4a43;
  --gold: #ffc126;
  --gold-soft: #efab16;
  --coral: #ee674f;
  --club: #082a1f;
  --club-soft: #e8ecea;
  --club-muted: #68776f;
  --line: rgba(244, 239, 229, 0.14);
  --dark-line: rgba(8, 8, 6, 0.15);
  --shell: min(100% - 64px, 1360px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--body);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-variation-settings: "wght" 520;
  font-weight: 520;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

main { background: var(--paper); }

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

a { color: inherit; }

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

button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 11px 16px;
  transform: translateY(-160%);
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px #000000;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  width: 100%;
  min-height: 86px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: max(32px, calc((100% - 1360px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 6, 0.92);
  color: var(--headline);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--headline);
  text-decoration: none;
}

.brand > span:last-child,
.footer-brand strong {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  position: relative;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.brand-mark i {
  display: block;
  width: 4px;
  border-radius: 8px;
  background: var(--ink);
}

.brand-mark i:nth-child(1) { height: 10px; }
.brand-mark i:nth-child(2) { height: 18px; }
.brand-mark i:nth-child(3) { height: 13px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 48px);
}

.header-nav a,
.header-link,
.primary-action,
.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.header-nav a,
.header-link,
.site-footer a {
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.header-nav a { color: var(--muted); }

.header-nav a,
.header-link {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.header-nav a { color: #b1a797; }

.header-nav a:hover,
.header-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--headline); }

.header-link {
  width: max-content;
  justify-self: end;
  padding-inline: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--headline);
}

.eyebrow,
.card-label,
.screen-kicker,
.trust-badge {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(930px, calc(100svh - 86px));
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 6vw, 108px);
  overflow: hidden;
  padding: clamp(70px, 8vh, 116px) max(32px, calc((100% - 1360px) / 2));
  background: var(--ink);
  color: var(--headline);
}

.hero::before {
  position: absolute;
  right: max(32px, calc((100% - 1360px) / 2));
  bottom: 0;
  left: max(32px, calc((100% - 1360px) / 2));
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 660px;
}

.hero h1,
.product-intro h2,
.showcase-copy h2,
.trust-heading h2,
.matchday-copy h2,
.closing h2 {
  margin-bottom: 0;
  color: var(--headline);
  font-size: clamp(4.4rem, 6.9vw, 7.25rem);
  font-variation-settings: "wght" 820;
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(4.15rem, 5.2vw, 5.9rem);
  font-variation-settings: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero h1 em,
.product-intro h2 em,
.matchday-copy h2 em {
  color: var(--gold);
  font-variation-settings: "wght" 420;
  font-weight: 420;
  font-style: normal;
}

.hero h1 em {
  font-variation-settings: normal;
  font-weight: 700;
}

.product-intro h2,
.showcase-copy h2,
.matchday-copy h2 {
  font-variation-settings: "wght" 760;
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.product-intro h2 { font-size: clamp(3.5rem, 5.4vw, 5.7rem); }

.product-intro h2 em,
.matchday-copy h2 em {
  font-variation-settings: "wght" 520;
  font-weight: 520;
}

.hero-intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--body);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 38px;
}

.primary-action {
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-action:hover { background: var(--headline); transform: translateY(-2px); }

.launch-status {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-principles {
  display: flex;
  gap: 28px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-principles span {
  color: var(--body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-principles b {
  margin-right: 8px;
  color: var(--gold);
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

.product-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  height: 710px;
  justify-self: end;
}

.stage-signal {
  position: absolute;
  right: 4%;
  bottom: 10%;
  display: flex;
  width: 54%;
  height: 34%;
  align-items: end;
  justify-content: space-between;
  opacity: 0.13;
}

.stage-signal i {
  width: 15%;
  border-top: 2px solid var(--gold);
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 193, 38, 0.5) 0 1px,
    transparent 1px 18px
  );
}

.stage-signal i:nth-child(1) { height: 38%; }
.stage-signal i:nth-child(2) { height: 68%; }
.stage-signal i:nth-child(3) { height: 100%; }
.stage-signal i:nth-child(4) { height: 54%; }

.phone {
  position: absolute;
  filter: drop-shadow(0 38px 45px rgba(0, 0, 0, 0.52));
}

.primary-phone {
  z-index: 3;
  top: 2%;
  right: 5%;
  width: 350px;
  transform: rotate(2.5deg);
  animation: phone-float 7s ease-in-out infinite;
}

.secondary-phone {
  z-index: 2;
  bottom: 2%;
  left: 2%;
  width: 270px;
  opacity: 1;
  transform: rotate(-8deg);
  animation: phone-float-small 8s ease-in-out infinite;
}

.phone-shell {
  position: relative;
  padding: 11px;
  border: 1px solid #343431;
  border-radius: 52px;
  background: linear-gradient(145deg, #32322e, #070707 36%, #1b1b19 72%, #050505);
  box-shadow: inset 0 0 0 2px #080808, inset -2px 0 2px rgba(255, 255, 255, 0.12);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 50%;
  width: 31%;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  padding: 20px 17px 18px;
  border-radius: 42px;
  background: var(--screen);
  color: var(--headline);
}

.secondary-phone .phone-screen { min-height: 530px; }

.mini-status,
.app-bar,
.panel-top,
.panel-bottom,
.lab-footer,
.stage-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-status {
  height: 28px;
  padding-inline: 4px;
  color: #e9e5dc;
  font-size: 0.55rem;
  font-weight: 900;
}

.app-bar {
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
}

.app-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 193, 38, 0.1);
}

.stage-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0 8px;
}

.stage-heading span {
  color: var(--gold);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

.stage-heading h2 {
  margin: 5px 0 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.stage-filters {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #887f70;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.stage-filters b {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--gold);
  color: var(--headline);
}

.performance-card {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #10100e;
}

.performance-visual {
  position: relative;
  display: grid;
  min-height: 255px;
  place-items: center;
  overflow: hidden;
  background: #b94738;
}

.performance-visual::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  content: "";
}

.performance-label {
  position: absolute;
  top: 26px;
  left: 26px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 193, 38, 0.72);
  border-radius: 10px;
  background: rgba(8, 8, 6, 0.86);
  color: var(--headline);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.sound-mark {
  display: flex;
  height: 72px;
  align-items: center;
  gap: 8px;
}

.sound-mark i {
  width: 9px;
  background: rgba(244, 239, 229, 0.9);
}

.sound-mark i:nth-child(1),
.sound-mark i:nth-child(5) { height: 24px; }
.sound-mark i:nth-child(2),
.sound-mark i:nth-child(4) { height: 48px; }
.sound-mark i:nth-child(3) { height: 72px; }

.play-button {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(8, 8, 6, 0.66);
  color: var(--headline);
}

.performance-visual > p {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  margin: 0;
  color: var(--headline);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-transform: uppercase;
}

.creator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.creator-row > div { display: flex; align-items: center; gap: 10px; }

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #171714;
}

.creator-row p { margin: 0; }
.creator-row b,
.creator-row small { display: block; }
.creator-row b { font-size: 0.62rem; }
.creator-row small { margin-top: 2px; color: var(--muted); font-size: 0.48rem; }
.more { color: var(--muted); font-size: 0.62rem; letter-spacing: 0.12em; }

.performance-context {
  display: flex;
  gap: 7px;
  padding: 12px 0 0;
  color: var(--coral);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.46rem;
  letter-spacing: 0.08em;
}

.performance-context span {
  padding: 4px 7px;
  border: 1px solid currentColor;
  border-radius: 9px;
}

.performance-card h3 {
  margin: 9px 0 0;
  color: var(--headline);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.performance-actions {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 12px 0 16px;
  color: var(--headline);
  font-size: 0.8rem;
}

.performance-actions small { margin-left: 2px; color: var(--muted); font-size: 0.46rem; }

.app-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 11, 0.95);
}

.app-tabs span {
  color: #777164;
  font-size: 0.46rem;
  font-weight: 850;
  text-transform: uppercase;
}

.app-tabs .active { color: var(--gold); }

.club-screen {
  padding-inline: 18px;
  background: var(--club-soft);
  color: var(--club);
}

.club-screen .mini-status { color: var(--club); }
.club-screen .app-bar { border-color: rgba(8, 42, 31, 0.14); color: var(--club); }
.club-screen .app-bar i { background: var(--gold-soft); box-shadow: none; }
.club-screen .screen-kicker { margin: 28px 0 8px; color: #976800; font-size: 0.5rem; }
.club-screen h2 {
  margin-bottom: 12px;
  color: var(--club);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.club-deck { margin: 0 0 24px; color: var(--club-muted); font-size: 0.58rem; line-height: 1.45; }

.club-row {
  display: grid;
  min-height: 66px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(8, 42, 31, 0.14);
  border-radius: 12px;
  background: #f7f4ec;
}

.club-row span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--club);
  color: var(--headline);
  font-family: "Oswald", "Arial Narrow", sans-serif;
}
.club-row b { color: var(--ink); font-size: 0.65rem; }
.club-row i { color: var(--club-muted); font-size: 0.47rem; font-style: normal; font-weight: 900; }

.product-intro {
  padding-block: clamp(120px, 13vw, 190px) clamp(86px, 9vw, 130px);
  color: var(--ink);
}

.dark-eyebrow { color: #8a5f00; }

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: clamp(54px, 10vw, 150px);
}

.product-intro h2,
.matchday-copy h2 { color: var(--ink); }
.product-intro h2 em,
.matchday-copy h2 em { color: #8a5a00; }

.product-intro-grid > p {
  margin-bottom: 4px;
  color: var(--dark-body);
  font-size: clamp(1.06rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.product-showcase { padding-bottom: clamp(100px, 12vw, 180px); }

.showcase-row {
  display: grid;
  min-height: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(46px, 8vw, 120px);
  padding-block: clamp(80px, 9vw, 132px);
  border-top: 1px solid var(--dark-line);
  color: var(--ink);
}

.showcase-copy h2 {
  max-width: 600px;
  color: var(--ink);
  font-size: clamp(2.9rem, 4.1vw, 4.45rem);
}

.showcase-copy > p:not(.card-label):not(.feature-line) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--dark-body);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.68;
}

.card-label { color: #8a5a00; }
.coral-label { color: #a83827; }

.feature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
}

.feature-line span {
  padding: 7px 10px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: #696258;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-panel {
  position: relative;
  min-height: 470px;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border-radius: 22px;
}

.songbook-panel {
  border: 1px solid rgba(8, 42, 31, 0.12);
  background: var(--club-soft);
  color: var(--club);
  box-shadow: 0 24px 60px rgba(8, 42, 31, 0.13);
}

.panel-top,
.panel-bottom,
.lab-footer,
.stage-panel-footer {
  color: #976800;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.songbook-panel h3 {
  margin: 76px 0 12px;
  color: var(--club);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.95;
}

.songbook-panel > p { margin-bottom: 44px; color: var(--club-muted); }

.panel-list {
  display: grid;
  min-height: 70px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(8, 42, 31, 0.14);
}

.panel-list span { color: #976800; font-family: "Oswald", "Arial Narrow", sans-serif; }
.panel-list small { color: var(--club-muted); font-size: 0.52rem; font-weight: 800; letter-spacing: 0.08em; }
.panel-bottom { margin-top: 28px; }

.lab-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8, 8, 6, 0.1);
  background: #fffaf1;
  box-shadow: 0 30px 70px rgba(30, 22, 10, 0.12);
}

.lab-panel::before {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 180px;
  height: 8px;
  background: var(--coral);
  content: "";
}

.lab-panel .panel-top { position: relative; color: #a83827; }
.lab-prompt { margin-top: 70px; color: #6f6a5e; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.08em; }
.lab-answer { max-width: 450px; margin-top: 14px; color: var(--ink); font-size: clamp(1.7rem, 3vw, 3rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1.05; }
.lab-lines { display: grid; gap: 13px; margin-top: 42px; }
.lab-lines i { display: block; height: 1px; background: var(--dark-line); }
.lab-lines i:nth-child(2) { width: 88%; }
.lab-lines i:nth-child(3) { width: 72%; }
.lab-lines i:nth-child(4) { width: 55%; }
.lab-footer { margin-top: auto; padding-top: 36px; color: #6f6a5e; }
.lab-footer b { color: #a83827; }

.stage-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #a94336;
  color: var(--headline);
  box-shadow: 0 30px 70px rgba(30, 22, 10, 0.24);
}

.stage-panel::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  content: "";
}

.stage-panel-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.stage-panel-copy span:nth-child(2) { color: var(--gold); }

.stage-play {
  position: absolute;
  top: 50%;
  right: 11%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(8, 8, 6, 0.42);
  transform: translateY(-50%);
}

.stage-panel-footer { position: relative; z-index: 2; }
.stage-panel-footer span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; }

.trust {
  background: var(--ink);
  color: var(--headline);
}

.trust-shell { padding-block: clamp(110px, 12vw, 180px); }

.trust-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 9vw, 140px);
  margin-bottom: clamp(80px, 9vw, 130px);
}

.trust-heading h2 {
  max-width: 900px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(3.7rem, 5.7vw, 6.1rem);
  font-variation-settings: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.trust-list { border-top: 1px solid var(--line); }

.trust-list article {
  display: grid;
  min-height: 160px;
  grid-template-columns: 70px minmax(250px, 0.68fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.trust-number {
  color: #625d54;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 2.4rem;
}

.trust-badge {
  width: max-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.56rem;
}

.proven-badge { color: var(--gold); }
.rising-badge { color: var(--coral); }
.stage-badge { color: var(--headline); }

.trust-list h3 { margin: 0; font-size: clamp(1.7rem, 2.6vw, 2.6rem); letter-spacing: -0.04em; }
.trust-list article > p { margin: 0; color: var(--muted); line-height: 1.65; }

.matchday {
  display: grid;
  min-height: 840px;
  grid-template-columns: minmax(430px, 0.8fr) minmax(400px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 11vw, 170px);
  padding-block: clamp(110px, 12vw, 180px);
  color: var(--ink);
}

.matchday-device {
  max-width: 530px;
  padding: 12px;
  border-radius: 46px;
  background: var(--club);
  box-shadow: 0 30px 70px rgba(8, 42, 31, 0.22);
  transform: rotate(-3deg);
}

.matchday-screen {
  min-height: 610px;
  padding: 40px 30px;
  border-radius: 36px;
  background: var(--club-soft);
  color: var(--club);
}

.matchday-time { display: block; margin-bottom: 62px; color: var(--club-muted); font-size: 0.65rem; }
.matchday-screen > p { margin-bottom: 13px; color: #976800; font-family: "Oswald", "Arial Narrow", sans-serif; font-size: 0.62rem; letter-spacing: 0.12em; }
.matchday-screen h3 { margin-bottom: 58px; color: var(--club); font-family: "Oswald", "Arial Narrow", sans-serif; font-size: clamp(2.4rem, 4.2vw, 4rem); letter-spacing: 0; line-height: 0.95; text-transform: uppercase; }

.matchday-screen > div {
  display: grid;
  min-height: 78px;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(8, 42, 31, 0.14);
}

.matchday-screen > div:last-child { border-bottom: 1px solid rgba(8, 42, 31, 0.14); }
.matchday-screen div span { color: #976800; font-family: "Oswald", "Arial Narrow", sans-serif; }
.matchday-screen div small { color: var(--club-muted); font-size: 0.52rem; font-weight: 800; letter-spacing: 0.06em; }

.matchday-copy h2 { font-size: clamp(3.5rem, 5.3vw, 5.6rem); }
.matchday-copy > p:last-child { max-width: 590px; margin: 32px 0 0; color: var(--dark-body); font-size: clamp(1.05rem, 1.2vw, 1.18rem); line-height: 1.7; }

.closing {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--headline);
}

.closing-signal {
  position: absolute;
  top: 16%;
  left: 50%;
  display: flex;
  width: min(620px, 66vw);
  height: 170px;
  align-items: end;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  opacity: 0.12;
  transform: translateX(-50%);
}

.closing-signal i { width: clamp(12px, 2vw, 22px); background: var(--gold); }
.closing-signal i:nth-child(1),
.closing-signal i:nth-child(5) { height: 36%; }
.closing-signal i:nth-child(2),
.closing-signal i:nth-child(4) { height: 68%; }
.closing-signal i:nth-child(3) { height: 100%; }

.closing-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.closing-copy img { width: 92px; height: 92px; margin-bottom: 28px; border-radius: 24px; }
.closing h2 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-variation-settings: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}
.closing-copy > p:not(.eyebrow) { margin: 30px 0 28px; color: var(--muted); font-size: 1.08rem; }

.site-footer {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 36px;
  padding: 42px max(32px, calc((100% - 1360px) / 2));
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--headline);
}

.footer-brand p { margin: 8px 0 0; color: var(--muted); font-size: 0.76rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 25px; }
.site-footer a { color: var(--muted); }

@keyframes phone-float {
  50% { transform: rotate(1.4deg) translateY(-10px); }
}

@keyframes phone-float-small {
  50% { transform: rotate(-7deg) translateY(8px); }
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: minmax(350px, 0.82fr) minmax(470px, 1fr); }
  .product-stage { height: 650px; transform: scale(0.9); transform-origin: right center; }
  .showcase-row { gap: 50px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 1360px); }

  .site-header {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .header-nav { display: none; }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 76px 20px 86px;
  }

  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(4rem, 9.2vw, 5.4rem); }

  .product-stage {
    width: min(100%, 650px);
    height: 700px;
    justify-self: center;
    transform: none;
  }

  .product-intro-grid,
  .showcase-row,
  .trust-heading,
  .matchday { grid-template-columns: 1fr; }

  .product-intro-grid { align-items: start; }
  .product-intro-grid > p { max-width: 660px; }
  .showcase-row { min-height: 0; }
  .lab-showcase .showcase-copy { grid-row: 1; }
  .product-panel { min-height: 440px; }
  .trust-list article { grid-template-columns: 60px 1fr; }
  .trust-list article > p { grid-column: 2; }
  .matchday-device { width: min(100%, 530px); justify-self: center; }
  .matchday-copy { max-width: 700px; }

  .site-footer { grid-template-columns: 1fr; padding-inline: 20px; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 580px) {
  .header-link { display: none; }
  .brand > span:last-child { font-size: 1rem; }

  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.25rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-principles { flex-wrap: wrap; gap: 16px 22px; }

  .product-stage { height: 585px; }
  .primary-phone { right: -18px; width: 292px; }
  .secondary-phone { bottom: 0; left: -27px; width: 215px; }
  .phone-shell { padding: 8px; border-radius: 42px; }
  .phone-screen { min-height: 566px; border-radius: 34px; }
  .secondary-phone .phone-screen { min-height: 420px; }
  .phone-speaker { top: 16px; height: 19px; }
  .performance-visual { min-height: 270px; }
  .performance-visual > p { font-size: 1.65rem; }
  .product-intro { padding-block: 100px 62px; }
  .product-intro h2,
  .matchday-copy h2 { font-size: clamp(3rem, 13.5vw, 4.5rem); }
  .showcase-copy h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .trust-heading h2,
  .closing h2 { font-size: clamp(3.15rem, 14vw, 4.65rem); }

  .showcase-row { padding-block: 68px; }
  .product-panel { min-height: 400px; padding: 26px 22px; border-radius: 24px; }
  .songbook-panel h3 { margin-top: 60px; font-size: 2.35rem; }
  .panel-top,
  .panel-bottom { gap: 16px; }
  .panel-list { grid-template-columns: 34px 1fr; }
  .panel-list small { grid-column: 2; }
  .stage-panel-copy { font-size: clamp(2.7rem, 15vw, 4.3rem); }
  .stage-play { right: 10%; width: 58px; height: 58px; }
  .stage-panel-footer { flex-wrap: wrap; justify-content: flex-start; gap: 6px; }

  .trust-heading { margin-bottom: 56px; }
  .trust-list article { grid-template-columns: 1fr; gap: 20px; }
  .trust-list article > p { grid-column: auto; }

  .matchday { min-height: 0; }
  .matchday-device { transform: none; }
  .matchday-screen { min-height: 520px; padding: 30px 20px; }
  .matchday-time { margin-bottom: 44px; }
  .matchday-screen > div { grid-template-columns: 34px 1fr; }
  .matchday-screen div small { grid-column: 2; }

  .closing,
  .closing-copy { min-height: 650px; }
}

@media (max-width: 360px) {
  :root { --shell: min(100% - 28px, 1360px); }
  .site-header { padding-inline: 14px; }
  .hero { padding-inline: 14px; }
  .brand { gap: 8px; }
  .brand-mark { width: 32px; height: 32px; }
  .hero h1 { font-size: 2.95rem; }
  .product-stage { height: 540px; transform: scale(0.92); transform-origin: center top; }
  .primary-phone { right: -28px; }
  .secondary-phone { left: -36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .primary-phone,
  .secondary-phone { animation: none; }
  .primary-action { transition: none; }
}
