:root {
  --navy: #0b2e6d;
  --navy-deep: #081d48;
  --navy-soft: #153d89;
  --red: #c8102e;
  --red-bright: #e21f3c;
  --white: #ffffff;
  --ice: #f4f7fc;
  --ink: #0f1728;
  --muted: #5a6782;
  --line: rgba(11, 46, 109, 0.12);
  --gold: #d8b15c;
  --success: #0f8d5a;
  --shadow: 0 20px 60px rgba(9, 24, 56, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(200,16,46,0.08), transparent 22%),
    radial-gradient(circle at top left, rgba(11,46,109,0.12), transparent 28%),
    linear-gradient(180deg, #f6f9ff 0%, #f2f6fc 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,46,109,0.08);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(11,46,109,0.06);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 12px 26px rgba(11,46,109,0.12);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8,29,72,0.98) 0%, rgba(11,46,109,0.96) 55%, rgba(200,16,46,0.94) 140%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,0.12), transparent 18%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.05) 45%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
  padding: 78px 0 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fbe8ec;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.45rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  max-width: 62ch;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  box-shadow: 0 14px 28px rgba(200,16,46,0.28);
}
.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 26px rgba(11,46,109,0.12);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-chip {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #f3f6ff;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-panel {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 70px rgba(5,14,34,0.28);
  padding: 24px;
}

.hero-panel-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-panel-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 18px;
  padding: 8px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.hero-panel h2 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.hero-panel p {
  margin: 0;
  font-size: 0.98rem;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-list strong,
.small-overline {
  display: block;
  margin-bottom: 4px;
  color: #ffdbe1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero-list span {
  font-size: 1rem;
  font-weight: 700;
}

section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
  color: var(--navy-deep);
}

.section-head p {
  margin: 10px 0 0;
  max-width: 66ch;
  color: var(--muted);
}

.cards-4,
.cards-3,
.split,
.forms-grid,
.dual-panels,
.values-grid {
  display: grid;
  gap: 20px;
}

.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.split { grid-template-columns: 1.05fr 0.95fr; }
.forms-grid { grid-template-columns: 1fr 1fr; }
.dual-panels { grid-template-columns: repeat(2, 1fr); }
.values-grid { grid-template-columns: repeat(3, 1fr); }

.card,
.panel,
.form-card,
.value-card,
.about-banner {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11,46,109,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card,
.panel,
.form-card,
.value-card,
.about-banner {
  padding: 24px;
}

.card .label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.card .value {
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 10px;
}

.card p,
.panel p,
.form-card p,
.value-card p,
.about-banner p,
.clean-list li,
.feature-list li {
  margin: 0;
  color: var(--muted);
}

/* ---------------------------------------------------------------------------
   Stat cards (Franchise Fee / Team Fee / Player Draft / Champion Prize) —
   color-coded accents so each figure reads as its own highlight, not a repeat
--------------------------------------------------------------------------- */
.cards-4 .card {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cards-4 .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.cards-4 .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(9,24,56,0.18);
}

.cards-4 .card:nth-child(1)::before { background: linear-gradient(to right, var(--red), var(--red-bright)); }
.cards-4 .card:nth-child(1) .value { color: var(--red); }

.cards-4 .card:nth-child(2)::before { background: linear-gradient(to right, var(--navy), var(--navy-soft)); }
.cards-4 .card:nth-child(2) .value { color: var(--navy); }

.cards-4 .card:nth-child(3)::before { background: linear-gradient(to right, #a9772e, var(--gold)); }
.cards-4 .card:nth-child(3) .value { color: #a9772e; }

.cards-4 .card:nth-child(4)::before { background: linear-gradient(to right, var(--success), #14b078); }
.cards-4 .card:nth-child(4) .value { color: var(--success); }

.panel h3,
.form-card h3,
.value-card h3,
.about-banner h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 1.25rem;
}

.clean-list,
.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.clean-list strong,
.feature-list strong {
  color: var(--ink);
}

/* ---------------------------------------------------------------------------
   "The League" split panels — accent bar + color-matched bullets/lead-ins so
   the two panels read as distinct, not a wall of identical gray text
--------------------------------------------------------------------------- */
.split .panel {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.split .panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.split .panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(9,24,56,0.16);
}

.split .panel:nth-child(1)::before { background: linear-gradient(to right, var(--red), var(--red-bright)); }
.split .panel:nth-child(2)::before { background: linear-gradient(to right, var(--navy), var(--navy-soft)); }

.split .panel:nth-child(1) .feature-list li::marker { color: var(--red); }
.split .panel:nth-child(2) .feature-list li::marker { color: var(--navy); }

.split .panel:nth-child(1) .feature-list strong { color: var(--red); }
.split .panel:nth-child(2) .feature-list strong { color: var(--navy); }

.band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.band .section-head h2,
.band .section-head p,
.band .panel h3,
.band .panel p,
.band .clean-list li,
.band .card .value,
.band .card .label {
  color: var(--white);
}

.band .card p {
  color: rgba(255,255,255,0.72);
}

.band .panel,
.band .card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.band .clean-list strong { color: #ffffff; }

/* ---------------------------------------------------------------------------
   Event Experience cards (Venue / On-field quality / Audience reach) — color
   tags + accent bar on the dark band, distinct from the light-theme cards-3
--------------------------------------------------------------------------- */
.band .cards-3 .card {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.band .cards-3 .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.band .cards-3 .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(2,8,26,0.35);
}

.band .cards-3 .card:nth-child(1)::before { background: linear-gradient(to right, var(--red-bright), #ff8fa3); }
.band .cards-3 .card:nth-child(1) .label { color: #ffb3c2; }

.band .cards-3 .card:nth-child(2)::before { background: linear-gradient(to right, var(--gold), #f0d18a); }
.band .cards-3 .card:nth-child(2) .label { color: var(--gold); }

.band .cards-3 .card:nth-child(3)::before { background: linear-gradient(to right, #5ec8f2, #a7ddfb); }
.band .cards-3 .card:nth-child(3) .label { color: #8ec5ff; }

.highlight-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(11,46,109,0.06);
  border: 1px solid rgba(11,46,109,0.1);
}

.prize-grid .card:nth-child(1) .value { color: var(--red); }
.prize-grid .card:nth-child(2) .value { color: var(--navy-soft); }
.prize-grid .card:nth-child(3) .value { color: var(--gold); }

.form-card {
  position: relative;
  overflow: hidden;
}

.form-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,46,109,0.08), transparent 70%);
  pointer-events: none;
}

.premium-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(11,46,109,0.14);
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(200,16,46,0.6);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.08);
}

.inline-check {
  display: flex;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11,46,109,0.04);
  border: 1px solid rgba(11,46,109,0.08);
}

.inline-check input {
  margin-top: 4px;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15,141,90,0.08);
  border: 1px solid rgba(15,141,90,0.16);
  color: var(--success);
  font-weight: 700;
}

.form-success.show { display: block; }

.form-success.is-error {
  background: rgba(200,16,46,0.08);
  border-color: rgba(200,16,46,0.2);
  color: var(--red);
}

/* -------------------------------------------------------------------------- */
/* Top-center animated toast (form submission feedback)                       */
/* -------------------------------------------------------------------------- */
.usc-toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: min(92vw, 560px);
  pointer-events: none;
}

.usc-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 12px 34px rgba(11, 46, 109, 0.18),
    0 2px 8px rgba(11, 46, 109, 0.08);
  border: 1px solid rgba(15, 141, 90, 0.22);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.usc-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.usc-toast.is-leaving {
  opacity: 0;
  transform: translateY(-14px) scale(0.97);
}

.usc-toast__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.usc-toast__msg {
  flex: 1 1 auto;
}

/* Success variant — brand green */
.usc-toast--success {
  border-color: rgba(15, 141, 90, 0.28);
  background:
    linear-gradient(180deg, rgba(15, 141, 90, 0.10), rgba(15, 141, 90, 0.03)),
    rgba(255, 255, 255, 0.97);
  color: #0c6b45;
}
.usc-toast--success .usc-toast__icon {
  background: linear-gradient(145deg, #14a468, #0f8d5a);
  box-shadow: 0 4px 12px rgba(15, 141, 90, 0.35);
}

/* Error variant — brand red */
.usc-toast--error {
  border-color: rgba(200, 16, 46, 0.28);
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.10), rgba(200, 16, 46, 0.03)),
    rgba(255, 255, 255, 0.97);
  color: #a50f26;
}
.usc-toast--error .usc-toast__icon {
  background: linear-gradient(145deg, #e21f3c, #c8102e);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.35);
}

@media (max-width: 560px) {
  .usc-toast-container { top: 14px; max-width: 94vw; }
  .usc-toast { font-size: 14px; padding: 12px 16px 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .usc-toast { transition: opacity 0.2s ease; transform: none; }
  .usc-toast.is-visible { transform: none; }
  .usc-toast.is-leaving { transform: none; }
}

.bot-field {
  display: none !important;
}

.premium-form.is-submitting button[type="submit"],
.premium-form button[type="submit"]:disabled {
  opacity: 0.72;
  cursor: wait;
}


.about-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,247,252,0.98));
}

.about-banner img {
  width: min(100%, 320px);
  margin: 0 auto;
}

.callout {
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  border-radius: 0 16px 16px 0;
  background: rgba(200,16,46,0.05);
  color: var(--navy-deep);
  font-weight: 700;
}

.footer {
  padding: 32px 0 56px;
}

.footer-card {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(9,24,56,0.2);
}

.footer-card p { margin: 8px 0 0; color: rgba(255,255,255,0.82); }

.kicker {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------------------------------------------------------------------------
   Instagram feed (Media Room) — news-style card wrapping the Behold widget
---------------------------------------------------------------------------- */
.instagram-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11,46,109,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
  overflow: hidden;
}

.instagram-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--navy));
}

.instagram-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.instagram-handle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instagram-glyph svg,
.instagram-glyph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.instagram-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
}

.instagram-handle strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1.15rem;
}

.instagram-handle span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: 0 12px 24px rgba(11,46,109,0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11,46,109,0.3);
}

@media (max-width: 1080px) {
  .hero-inner,
  .split,
  .forms-grid,
  .about-banner,
  .cards-4,
  .cards-3,
  .values-grid,
  .dual-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav {
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 10px;
  }

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

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

  .hero-inner {
    padding: 54px 0 50px;
  }

  .hero h1,
  .hero .h1-like {
    max-width: none;
  }

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

  section {
    padding: 56px 0;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }
}


html {
  scroll-padding-top: 92px;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  height: auto;
}

section[id] {
  scroll-margin-top: 92px;
}

.topbar {
  box-shadow: 0 8px 28px rgba(8, 29, 72, 0.06);
}

.nav-links {
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:focus-visible,
.btn:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 16, 46, 0.24);
  outline-offset: 2px;
}

.hero-actions .btn {
  min-width: 210px;
}

.hero-panel-logo,
.brand-logo,
[data-embedded-logo="true"] {
  image-rendering: auto;
}

.section-head {
  align-items: flex-end;
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a869f;
}

.form-success {
  line-height: 1.55;
}

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

.footer-card a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 780px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero-actions .btn,
  .form-card .btn {
    width: 100%;
  }

  .hero-panel,
  .card,
  .panel,
  .form-card,
  .value-card,
  .about-banner,
  .footer-card {
    padding: 20px;
  }

  .eyebrow {
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════
   HERO — REFINED STATIC DESIGN
   ═══════════════════════════════════════════════ */

/* Richer, deeper layered background */
.hero {
  background:
    radial-gradient(ellipse 58% 72% at 78% 38%, rgba(190,12,40,0.28) 0%, transparent 100%),
    radial-gradient(ellipse 46% 52% at 4%  80%, rgba(3,9,28,0.75)    0%, transparent 100%),
    linear-gradient(148deg, #030d24 0%, #061535 35%, #091f55 65%, #0c2968 100%);
}

/* Diagonal line texture — subtle depth without motion */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    transparent 76px,
    rgba(255,255,255,0.016) 76px,
    rgba(255,255,255,0.016) 78px
  );
}

/* Bottom section separator */
.hero-inner {
  position: relative;
}

.hero-inner::after {
  content: '';
  position: absolute;
  bottom: -33px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(200,16,46,0.4) 25%,
    rgba(255,255,255,0.18) 50%,
    rgba(200,16,46,0.4) 75%,
    transparent);
}

/* Enhanced panel — deeper glass + top colour bar */
.hero-panel {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 32px 80px rgba(2,8,26,0.42),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* Colour accent stripe at top of panel */
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--red) 0%,
    #f84d6a  35%,
    rgba(255,255,255,0.9) 50%,
    #f84d6a  65%,
    var(--red) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Soft inner glow on panel */
.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 70% 40% at 50% 0%,
    rgba(255,255,255,0.07), transparent 70%);
  pointer-events: none;
}

/* Panel list items */
.hero-list li {
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.hero-list li:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(3px);
}

/* Eyebrow badge refinement */
.eyebrow {
  gap: 8px;
  letter-spacing: 0.09em;
}

/* Primary button: stronger shadow + clean hover */
.btn-primary:hover {
  box-shadow:
    0 16px 40px rgba(200,16,46,0.48),
    0 4px 12px rgba(200,16,46,0.22);
}

/* Secondary button hover */
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
}

/* Metric chips */
.metric-chip {
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  cursor: default;
}

.metric-chip:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* Gradient heading — mirrors .hero h1 typographic styles */
.hero .h1-like {
  position: relative;
  isolation: isolate;
  font-size: clamp(2.45rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
  font-weight: 900;
  margin: 18px 0 18px;
  background: linear-gradient(
    110deg,
    #ffffff  0%,
    #ffd0d8 18%,
    #ff3355 36%,
    #c8102e 45%,
    #ff6680 57%,
    #ffffff 70%,
    #dce8ff 86%,
    #ffffff 100%
  );
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Impact burst behind the headline the instant the last letter lands */
.hero .h1-like::before {
  content: '';
  position: absolute;
  inset: -14% -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,60,90,0.55) 0%, rgba(255,60,90,0) 68%);
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
}

.hero .h1-like.impact::before {
  animation: headlineImpact 0.75s ease-out forwards;
}

@keyframes headlineImpact {
  0%   { opacity: 0;    transform: scale(0.35); }
  32%  { opacity: 0.7;  transform: scale(1.05); }
  100% { opacity: 0;    transform: scale(1.55); }
}

/* Slow, tasteful shimmer sweep across the gradient once letters land */
.hero .h1-like.shimmer {
  background-size: 220% 100%;
  animation: headlineShimmer 6.5s ease-in-out infinite;
}

@keyframes headlineShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Letter jump — transform/filter only (no opacity) so text always renders */
.jump-letter {
  display: inline-block;
  vertical-align: top;
  animation: letterJump 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes letterJump {
  0%   { transform: translateY(120px) scale(0.05) rotate(-12deg); filter: blur(5px); }
  50%  { transform: translateY(-26px) scale(1.22) rotate(5deg);   filter: blur(0); }
  72%  { transform: translateY(10px)  scale(0.94) rotate(-2deg); }
  88%  { transform: translateY(-4px)  scale(1.03) rotate(1deg); }
  100% { transform: translateY(0)     scale(1)    rotate(0deg);  filter: blur(0); }
}

/* Staged reveal for the rest of the home hero — only ever hidden once JS
   opts a page into it via .anim-ready, and always released via .anim-revealed,
   so content stays visible by default if JS never runs. */
.hero-home.anim-ready .hero-content p,
.hero-home.anim-ready .hero-actions,
.hero-home.anim-ready .hero-statbar {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-home.anim-ready .hero-content p:nth-of-type(1) { transition-delay: 0.05s; }
.hero-home.anim-ready .hero-content p:nth-of-type(2) { transition-delay: 0.18s; }
.hero-home.anim-ready .hero-actions                  { transition-delay: 0.32s; }
.hero-home.anim-ready .hero-statbar                  { transition-delay: 0.46s; }

.hero-home.anim-ready.anim-revealed .hero-content p,
.hero-home.anim-ready.anim-revealed .hero-actions,
.hero-home.anim-ready.anim-revealed .hero-statbar {
  opacity: 1;
  transform: translateY(0);
}

.hero-home .eyebrow {
  animation: heroFadeUp 0.7s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero panel logo area padding tweak */
.hero-panel-top {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

/* ---------------------------------------------------------------------------
   Payment method selector (Player Registration) + Zelle dummy payment overlay
--------------------------------------------------------------------------- */
.pay-method {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  margin: 4px 0 2px;
  background: var(--ice);
}
.pay-method__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0 6px;
  margin-bottom: 12px;
}
.pay-method__amount {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 1px 10px;
  font-size: 0.9rem;
  margin: 0 2px;
}
.pay-method__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .pay-method__options { grid-template-columns: 1fr; }
}
.pay-option { position: relative; display: block; cursor: pointer; }
.pay-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.pay-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: center;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.pay-option__logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.pay-option__name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.pay-option__hint { font-size: 0.78rem; color: var(--muted); line-height: 1.3; }
.pay-option input:checked + .pay-option__card {
  border-color: var(--navy);
  box-shadow: 0 8px 22px rgba(11, 46, 109, 0.16);
  transform: translateY(-1px);
}
.pay-option input:focus-visible + .pay-option__card {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.pay-option__card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.pay-option input:checked + .pay-option__card::after {
  border-color: var(--navy);
  background: var(--navy) radial-gradient(circle, #fff 32%, transparent 36%);
}

/* Zelle dummy payment overlay */
.zelle-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(9, 24, 56, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .2s ease;
}
.zelle-overlay.is-visible { opacity: 1; }
.zelle-card {
  width: min(440px, 100%);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(12px) scale(.98);
  transition: transform .2s ease;
}
.zelle-overlay.is-visible .zelle-card { transform: none; }
.zelle-head {
  background: #6d1ed4;
  color: #fff;
  padding: 22px 24px;
  text-align: center;
}
.zelle-head img { height: 34px; width: auto; }
.zelle-head p { margin: 8px 0 0; font-size: 0.9rem; opacity: .9; }
.zelle-body { padding: 22px 24px 8px; }
.zelle-amount {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.zelle-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.zelle-row span:first-child { color: var(--muted); }
.zelle-row span:last-child { font-weight: 700; color: var(--ink); text-align: right; word-break: break-word; }
.zelle-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 14px 0 4px;
  line-height: 1.45;
}
.zelle-actions { padding: 8px 24px 22px; display: grid; gap: 10px; }
.zelle-actions .btn { width: 100%; text-align: center; }
.btn-zelle {
  background: #6d1ed4;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  cursor: pointer;
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  cursor: pointer;
}

/* ---------------------------------------------------------------------------
   Floating-label minimal forms (Player / Franchise / Sponsor)
--------------------------------------------------------------------------- */
.premium-form { gap: 26px; margin-top: 22px; }
.field-grid { gap: 22px 22px; }
.field { position: relative; display: block; }

/* Soft filled inputs, roomy top padding for the floated label */
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background: rgba(11,46,109,0.045);
  padding: 25px 16px 11px;
  font-size: 1rem;
  color: var(--ink);
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; line-height: 1.55; resize: vertical; }

.field input:hover,
.field select:hover,
.field textarea:hover { background: rgba(11,46,109,0.075); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11,46,109,0.10);
}

/* Floating label — rests inside the field, floats up on focus/fill */
.field label {
  position: absolute;
  left: 17px;
  top: 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
  pointer-events: none;
  transition: top .16s ease, font-size .16s ease, color .16s ease, letter-spacing .16s ease;
}
.field:focus-within label,
.field:has(input:not(:placeholder-shown)) label,
.field:has(textarea) label,
.field:has(select) label {
  top: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Selects: custom navy chevron + muted placeholder text */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  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 fill='none' stroke='%230b2e6d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.field select:required:invalid { color: var(--muted); }
.field select option { color: var(--ink); }

/* Eligibility / consent check — friendlier card */
.inline-check {
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(11,46,109,0.05), rgba(11,46,109,0.03));
  border: 1px solid rgba(11,46,109,0.10);
  font-size: 0.9rem;
  line-height: 1.45;
  transition: border-color .18s ease;
}
.inline-check:hover { border-color: rgba(11,46,109,0.22); }
.inline-check input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--navy); margin-top: 1px; flex: 0 0 auto;
}

/* Submit button — subtle lift + press */
.premium-form button[type="submit"] {
  margin-top: 6px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(200,16,46,0.24);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.premium-form button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(200,16,46,0.30);
  filter: brightness(1.03);
}
.premium-form button[type="submit"]:active:not(:disabled) { transform: translateY(0); }

/* Payment selector logos */
.pay-option__card { padding: 18px 12px 16px; gap: 10px; }
.pay-option__logo { height: 34px; }

/* ---------------------------------------------------------------------------
   Form-card header treatment (Player / Franchise / Sponsor)
--------------------------------------------------------------------------- */
.form-card > h3 {
  position: relative;
  padding-top: 18px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
}
.form-card > h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
}
.form-card > h3 + p {
  margin: 0 0 22px;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}

/* ---------------------------------------------------------------------------
   Typography — Space Grotesk display headings over Plus Jakarta Sans body
--------------------------------------------------------------------------- */
h1, h2, h3, h4,
.hero h1,
.section-head h2,
.form-card > h3,
.hero-panel h2,
.panel h3,
.value-card h3,
.about-banner h3,
.brand-copy strong {
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 { letter-spacing: -0.03em; font-weight: 800; }
body { letter-spacing: -0.002em; }

/* Let form-grid columns size to their own content (stop the info panel
   stretching to match the taller form and leaving empty space). */
.forms-grid { align-items: start; }

/* ---------------------------------------------------------------------------
   Hero buttons + stat chips polish (glassy, premium)
--------------------------------------------------------------------------- */
.hero-metrics { gap: 12px; }
.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  color: #eef3ff;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 8px 20px rgba(5,14,34,0.18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.metric-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(216,177,92,0.85);
}
.metric-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.36);
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
}

/* Secondary (outline) hero buttons — glassy */
.btn-secondary {
  border-color: rgba(255,255,255,0.26);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.09));
  border-color: rgba(255,255,255,0.42);
}

/* Primary hero button — a touch more depth */
.btn-primary { box-shadow: 0 16px 34px rgba(200,16,46,0.38); }

/* ---------------------------------------------------------------------------
   Hero stat chips — restyled as solid white pills (high contrast on hero)
--------------------------------------------------------------------------- */
.metric-chip {
  border: none;
  background: #ffffff;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  box-shadow: 0 10px 26px rgba(5,14,34,0.30);
  backdrop-filter: none;
}
.metric-chip::before {
  background: var(--red);
  box-shadow: none;
  width: 8px;
  height: 8px;
}
.metric-chip:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(5,14,34,0.38);
}

/* Secondary hero buttons — cleaner solid outline to sit beside the red CTA */
.btn-secondary {
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.btn-secondary:hover {
  background: #ffffff;
  color: var(--navy-deep);
  border-color: #ffffff;
}

/* Hero stat chips on an even 2-column grid (aligned, uniform width) */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.hero-metrics .metric-chip { width: 100%; justify-content: flex-start; }
@media (max-width: 560px) {
  .hero-metrics { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Hero action buttons — uniform rectangular list with arrow marks
--------------------------------------------------------------------------- */
.hero-actions-label {
  margin: 165px 0 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffdbe1;
}
.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 440px;
  margin: 0 0 24px;
}
.hero-actions .btn {
  width: 100%;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 4px;      /* rectangular — no pill */
  text-align: left;
  font-size: 1rem;
}
.hero-actions .btn::after {
  content: "\2192";        /* → arrow mark */
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease;
}
.hero-actions .btn:hover::after { transform: translateX(5px); }

/* ---------------------------------------------------------------------------
   Hero info-list icons
--------------------------------------------------------------------------- */
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hero-list__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffd0d8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}
.hero-list__icon svg { width: 21px; height: 21px; display: block; }
.hero-list__body { min-width: 0; display: block; }

/* ---------------------------------------------------------------------------
   Headline — 3 lines (honor \n) + typewriter caret
--------------------------------------------------------------------------- */
.hero .h1-like {
  white-space: pre-wrap;
  max-width: none;
  font-size: clamp(1.95rem, 4.4vw, 3.9rem);
  line-height: 1.04;
  min-height: 3.12em; /* reserve ~3 lines so typing doesn't shift layout */
  margin: 14px 0 26px;  /* space to the paragraphs below */
}
.hero .h1-like.typing::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 4px;
  vertical-align: -0.12em;
  background: #ff5a76;
  border-radius: 2px;
  animation: caretBlink 0.75s steps(1) infinite;
}
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
