/* ============================================
   IOWA AMBUSH CHEER — Site Stylesheet
   Brand: black, red, white. Bold, athletic, edgy.
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --red: #E10600;
  --red-dark: #B30500;
  --red-light: #FF1A0E;
  --black: #0a0a0a;
  --ink: #111111;
  --bg: #ffffff;
  --surface: #f5f5f5;
  --surface-2: #ebebeb;
  --line: #d8d8d8;
  --muted: #6b6b6b;
  --white: #ffffff;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.18);

  --font-display: 'Anton', 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  --section-pad: clamp(60px, 8vw, 120px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.h-hero { font-size: clamp(48px, 9vw, 128px); }
.h-1    { font-size: clamp(40px, 6vw, 80px);  }
.h-2    { font-size: clamp(28px, 4vw, 48px);  }
.h-3    { font-size: clamp(22px, 2.5vw, 32px);}
p { max-width: 65ch; }
.lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--red);
}
.script { font-family: var(--font-script); font-weight: 700; font-size: 1.4em; line-height: 1; color: var(--red); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }
.section--surface { background: var(--surface); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand img { height: 48px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  display: none;
}
@media (min-width: 600px) { .brand-text { display: block; } }

.nav-links { display: none; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--red-light); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
}
.nav-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-cta::after { display: none !important; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 12px 24px 20px; }
.mobile-nav a {
  display: block; color: var(--white); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 14px;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--black); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn--secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.btn--secondary:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mt-sm { margin-top: 0.5rem; }

/* Mobile nav iClassPro CTA */
.mobile-nav .mobile-cta {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
}
.mobile-nav .mobile-cta:hover { background: var(--red-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(225,6,0,0.4) 100%),
    url('../images/team-champions.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(225,6,0,0.25), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,0.6), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 24px;
}
.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero h1 .highlight {
  color: var(--red-light);
  display: inline-block;
}
.hero p {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 36px;
  max-width: 620px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Page header (interior pages) */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(225,6,0,0.35), transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--red-light); margin-bottom: 16px; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 18px; }

/* ---------- Claw mark divider ---------- */
.claw-divider {
  position: relative;
  height: 60px;
  background: var(--black);
  overflow: hidden;
}
.claw-divider::before, .claw-divider::after {
  content: '';
  position: absolute;
  background: var(--red);
  transform-origin: center;
}
.claw-divider::before {
  top: 50%; left: 10%;
  width: 200px; height: 4px;
  transform: translateY(-50%) skewX(-30deg);
  box-shadow: 250px 0 0 var(--red), 500px 0 0 var(--red);
}

/* ---------- Cards / Teams ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.team-card__body, .team-card__body p, .team-card__body li, .team-card__body ul {
  color: var(--ink);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card__head {
  background: var(--black);
  color: var(--white);
  padding: 20px 24px 16px;
  border-bottom: 4px solid var(--red);
  position: relative;
}
.team-card__head .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 4px;
  display: block;
}
.team-card__head h3 {
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.team-card__body { padding: 24px; flex: 1; }
.team-card__body p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.team-card__body ul { list-style: none; color: var(--ink); }
.team-card__body li {
  font-size: 14px;
  padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.team-card__body li:last-child { border-bottom: none; }
.team-card__body li::before {
  content: '✕';
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Tier badge */
.tier-rec { background: linear-gradient(135deg, #1a1a1a, #2c2c2c); }
.tier-comp { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.tier-comp .label { color: rgba(255,255,255,0.85); }

/* ---------- Two-col feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 80px; }
  .feature--reverse .feature__media { order: 2; }
}
.feature__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.feature__content h2 { margin-bottom: 20px; }
.feature__content p { margin-bottom: 16px; color: var(--ink); }

/* ---------- Stats / Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pillar {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.pillar:hover { border-color: var(--red); transform: translateY(-4px); }
.pillar .num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 12px;
}
.pillar h4 {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--white);
}
.pillar p { font-size: 14.5px; color: rgba(255,255,255,0.75); margin: 0 auto; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92), rgba(225,6,0,0.85)),
    url('../images/team-blackuniform.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 96px 24px;
  text-align: center;
  position: relative;
}
.cta-banner h2 { margin-bottom: 20px; }
.cta-banner p {
  margin: 0 auto 32px;
  font-size: 19px;
  max-width: 680px;
  color: rgba(255,255,255,0.95);
}
.cta-banner .btn { background: var(--white); color: var(--black); }
.cta-banner .btn:hover { background: var(--red-dark); color: var(--white); }

/* ---------- Section heading ---------- */
.section-heading { margin-bottom: 16px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p { font-size: 18px; color: var(--muted); max-width: 720px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.center p { margin: 16px auto 0; }

/* ---------- Pricing ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: 15px;
}
.pricing-table th {
  background: var(--black);
  color: var(--white);
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--surface); }
.pricing-table .team-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--red);
}
.pricing-table .price {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 22px;
}

/* ---------- FAQ / Rules ---------- */
.rules {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.rule {
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 15.5px;
  line-height: 1.55;
}
.rule strong { color: var(--red); display: block; font-size: 13px; letter-spacing: 0.08em; margin-bottom: 4px; text-transform: uppercase; font-family: var(--font-body); }

/* ---------- Schedule ---------- */
.schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .schedule { grid-template-columns: repeat(2, 1fr); }
}
.day {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.day__name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 12px;
}
.day__slots { list-style: none; display: grid; gap: 6px; }
.day__slots li { font-size: 14.5px; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.day__slots li:last-child { border-bottom: none; }
.day__slots .time { font-weight: 700; color: var(--black); margin-right: 6px; }
.day--off { opacity: 0.55; }
.day--off .day__slots { color: var(--muted); }

/* ---------- Save the date ---------- */
.dates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.date-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.date-card .label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.date-card .date {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
  letter-spacing: 0.04em;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; }
.contact-list .icon {
  width: 40px; height: 40px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-list a { color: var(--ink); font-weight: 500; }
.contact-list a:hover { color: var(--red); }
.contact-list .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); display: block; margin-bottom: 2px; font-weight: 700; }

/* Form */
.form { display: grid; gap: 16px; }
.form .row { display: grid; gap: 16px; }
@media (min-width: 600px) { .form .row { grid-template-columns: 1fr 1fr; } }
.form label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: var(--ink);
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--red);
}
.form textarea { min-height: 120px; resize: vertical; }

/* Sarah / owner card */
.owner-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: var(--black);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
}
@media (min-width: 600px) {
  .owner-card { grid-template-columns: 180px 1fr; gap: 32px; }
}
.owner-card img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--red);
  margin: 0 auto;
}
.owner-card h3 { font-size: 28px; margin-bottom: 4px; color: var(--white); }
.owner-card .role {
  color: var(--red-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 16px;
}
.owner-card p { color: rgba(255,255,255,0.85); font-size: 15px; margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 80px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.75); font-size: 14.5px; max-width: 320px; }
.footer h5 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  color: var(--red-light);
}
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer ul a {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}
.socials a:hover { background: var(--red); border-color: var(--red); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-md { margin-bottom: 24px; }

/* Reveal on scroll — only hides if JS has marked it pending */
.js .reveal:not(.in) {
  opacity: 0;
  transform: translateY(24px);
}
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Announcement Bar (Google Sheets-driven) ===== */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 60;
}
.announcement-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.announcement-bar__msg { line-height: 1.4; }
.announcement-bar__link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.announcement-bar__link:hover { color: #ffe5e3; }

/* ===== Schedule Grid (Google Sheets-driven) ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.schedule-day {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 16px;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule-day--rest {
  border-top-color: #ddd;
  background: #f6f6f6;
  opacity: 0.8;
}
.schedule-day__day {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.schedule-day__time {
  font-weight: 700;
  color: var(--red);
  font-size: 14px;
}
.schedule-day--rest .schedule-day__time { color: var(--muted); }
.schedule-day__teams {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}
.schedule-day__notes {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* small helper used in dynamic prices table */
.muted { color: var(--muted); font-size: 13px; font-weight: 400; }

/* keep notes in pricing table from inheriting the bold display style */
.pricing-table .team-name .muted {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  margin-left: 4px;
}

/* ===== Coming Soon (Register) Page ===== */
.coming-soon {
  background: linear-gradient(180deg, var(--black) 0%, var(--ink) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(225, 6, 0, 0.18), transparent 60%);
  pointer-events: none;
}
.coming-soon__inner {
  position: relative;
  text-align: center;
  max-width: 880px;
}
.coming-soon .eyebrow {
  color: var(--red-light);
  display: inline-block;
  margin-bottom: 16px;
}
.coming-soon__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
  color: var(--white);
}
.coming-soon__title-accent { color: var(--red); }
.coming-soon__lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 48px;
}
.coming-soon__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.cs-card {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cs-card:hover {
  transform: translateY(-3px);
  background: rgba(225, 6, 0, 0.12);
  border-color: var(--red);
}
.cs-card__icon { font-size: 28px; margin-bottom: 10px; }
.cs-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--white);
}
.cs-card__detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  word-break: break-word;
}
.coming-soon__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.coming-soon__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ===== Contact-for-pricing card (temporary while pricing updates) ===== */
.pricing-pending {
  background: var(--white);
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  padding: 40px 28px;
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pricing-pending__eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-pending__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.pricing-pending__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 24px;
}
.pricing-pending__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
