@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* ==========================================================================
   Stridelane - shared styles
   ========================================================================== */

:root {
  --brand-blue: #1D73F2;
  --deep-blue: #1A6DE0;
  --light-blue: #4788E6;
  --led-white: #B8E0FF;
  --signal-orange: #FF8A00;
  --signal-orange-hover: #E67600;
  --pure-black: #000000;
  --surface: #111111;
  --border: #1E1E1E;
  --primary-text: #FFFFFF;
  --body-text: #E8E8E8;
  --muted-text: #8A8F98;

  --page-bg: #FFFFFF;
  --page-gray: #F4F7FB;
  --page-border: #DCE4EF;
  --ink: #07111F;
  --ink-soft: #3D4857;
  --ink-muted: #66707F;
  --shadow: 0 18px 55px rgba(7, 17, 31, 0.12);

  --bg: var(--page-bg);
  --text: var(--ink);
  --text-secondary: var(--ink-soft);
  --accent: var(--brand-blue);
  --glass-bg: #FFFFFF;
  --glass-border: var(--page-border);
  --glass-shadow: var(--shadow);

  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:not(.cta-btn):not(.secondary-btn):not(.nav-quote):not(.dropdown-link):not(.brand-link):hover {
  color: var(--brand-blue);
}

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

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

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  z-index: 1000;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--page-border);
  box-shadow: 0 8px 28px rgba(7, 17, 31, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand,
.brand a {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  max-width: 220px;
  height: 42px;
  object-fit: contain;
}

.brand-link {
  min-width: 0;
  border-radius: 8px;
}

.brand-link:focus-visible,
.nav-trigger:focus-visible,
.nav-link:focus-visible,
.dropdown-link:focus-visible,
.cta-btn:focus-visible,
.secondary-btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  font-size: clamp(33px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-group {
  position: relative;
}

.nav-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-trigger:hover,
.nav-group:focus-within .nav-trigger,
.nav-group:hover .nav-trigger,
.nav-link:hover {
  background: transparent;
  color: var(--brand-blue);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  width: max-content;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid var(--page-border);
  border-radius: 12px;
  box-shadow: 0 22px 50px rgba(7, 17, 31, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: grid;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-link:hover {
  background: rgba(29, 115, 242, 0.08);
  color: var(--brand-blue);
}

.dropdown-link strong {
  font-size: 14px;
  font-weight: 700;
}

.nav-quote {
  background: var(--signal-orange);
  color: var(--pure-black);
}

.nav-quote:hover,
.nav-quote.active,
.nav-quote:focus-visible {
  background: var(--signal-orange-hover);
  color: var(--pure-black);
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.nav-link.social-link {
  justify-content: center;
  width: 40px;
  padding: 0;
}

/* --------------------------------------------------------------------------
   Buttons and shared UI
   -------------------------------------------------------------------------- */

.cta-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 8px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-btn {
  background: var(--signal-orange);
  color: var(--pure-black);
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.26);
}

.cta-btn:hover {
  background: var(--signal-orange-hover);
  color: var(--pure-black);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 138, 0, 0.3);
}

.secondary-btn,
.ghost-btn {
  background: var(--brand-blue);
  color: var(--primary-text);
  border: 1px solid var(--brand-blue);
  box-shadow: 0 12px 28px rgba(29, 115, 242, 0.2);
}

.secondary-btn:hover,
.ghost-btn:hover {
  background: var(--deep-blue);
  color: var(--primary-text);
  border-color: var(--deep-blue);
  transform: translateY(-1px);
}

.blue-btn {
  background: var(--brand-blue);
  color: var(--primary-text);
  box-shadow: 0 12px 28px rgba(29, 115, 242, 0.2);
}

.blue-btn:hover {
  background: var(--deep-blue);
  color: var(--primary-text);
  box-shadow: 0 16px 34px rgba(29, 115, 242, 0.24);
}

.dark-btn {
  background: var(--ink);
  color: var(--primary-text);
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.18);
}

.dark-btn:hover {
  background: var(--surface);
  color: var(--primary-text);
  box-shadow: 0 16px 34px rgba(7, 17, 31, 0.22);
}

.section-title {
  margin-bottom: 18px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

div.section-title,
.info-kicker,
.merch-kicker,
.contact-label,
.question-kicker {
  display: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(29, 115, 242, 0.1);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.card,
.step-card,
.director-card,
.pricing-panel,
.testimonial-card,
.team-card,
.meet-card,
.event-card,
.wizard-card {
  background: #FFFFFF;
  border: 1px solid var(--page-border);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.08);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

footer {
  margin-top: 0;
  padding: clamp(34px, 5vw, 56px) 24px 34px;
  background: var(--pure-black);
  color: var(--body-text);
  font-size: 14px;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.footer-index {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 48px);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-column {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  min-width: 0;
}

.footer-column h2 {
  margin: 0;
  color: var(--primary-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-column a {
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.footer-column a:hover {
  color: var(--brand-blue);
}

.footer-copyright {
  color: var(--muted-text) !important;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Informational pages
   -------------------------------------------------------------------------- */

.info-page main {
  padding-top: 0;
}

.info-hero {
  padding: clamp(132px, 16vw, 176px) 24px clamp(52px, 8vw, 86px);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--page-gray) 100%);
  border-bottom: 1px solid var(--page-border);
}

.info-inner,
.info-document {
  width: min(920px, 100%);
  margin: 0 auto;
}

.info-kicker {
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.info-hero p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.info-content {
  padding: clamp(50px, 7vw, 88px) 24px;
  background: #FFFFFF;
}

.info-document {
  display: grid;
  gap: 32px;
}

.info-section {
  display: grid;
  gap: 12px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--page-border);
}

.info-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-section h2 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.info-section h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.info-section p,
.info-section li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.info-section ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

.faq-list {
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--page-border);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.06);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-item summary:hover {
  color: var(--brand-blue);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: -4px;
}

.faq-answer {
  display: grid;
  gap: 14px;
  padding: 0 22px 24px;
}

.faq-answer p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.faq-answer .cta-btn {
  width: fit-content;
}

.draft-note,
.policy-note {
  padding: 18px 20px;
  background: var(--page-gray);
  border: 1px solid var(--page-border);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   News pages
   -------------------------------------------------------------------------- */

.news-hero,
.article-hero {
  min-height: 68svh;
  display: grid;
  align-items: end;
  padding: clamp(132px, 16vw, 176px) 24px clamp(50px, 8vw, 86px);
  border-bottom: 1px solid var(--page-border);
}

.news-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.84) 0%, rgba(7, 17, 31, 0.66) 48%, rgba(7, 17, 31, 0.2) 100%),
    url("/assets/photos/inuse-grinnell-1920.webp") center / cover;
}

.article-hero {
  min-height: 58svh;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--page-gray) 100%);
}

.news-hero-copy,
.article-hero-copy,
.news-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.news-hero-copy,
.article-hero-copy {
  display: grid;
  gap: 16px;
}

.news-hero-copy {
  max-width: 760px;
  margin-left: max(24px, calc((100vw - 1120px) / 2));
  color: var(--primary-text);
}

.article-hero-copy {
  max-width: 880px;
}

.news-eyebrow,
.news-meta,
.article-back-link {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-hero-copy .news-eyebrow {
  color: var(--led-white);
}

.news-hero h1,
.article-hero h1 {
  max-width: 900px;
  color: inherit;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.article-hero h1 {
  color: var(--ink);
}

.news-hero p:last-child,
.article-hero p:last-child {
  max-width: 690px;
  color: inherit;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}

.news-hero p:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.article-hero p:last-child {
  color: var(--ink-soft);
}

.article-back-link {
  width: fit-content;
}

.article-back-link::before {
  content: "< ";
}

.news-list-section,
.article-body-section {
  padding: clamp(52px, 7vw, 92px) 24px;
  background: #FFFFFF;
}

.news-section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.news-section-heading h2,
.news-cta-content h2,
.article-section h2,
.article-source-panel h2,
.article-sidebar h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.news-section-heading p,
.news-card-copy p,
.news-cta-content p,
.article-section p,
.article-source-panel p,
.article-sidebar p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.news-grid {
  display: grid;
  gap: 22px;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--page-border);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(7, 17, 31, 0.12);
}

.news-card-media {
  min-height: 280px;
  background: var(--page-gray);
}

.news-card-media img,
.article-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.news-card-copy h3 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
}

.news-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 8px;
}

.news-source-link {
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
}

.news-cta-band {
  padding: clamp(46px, 7vw, 78px) 24px;
  background: var(--page-gray);
  border-top: 1px solid var(--page-border);
}

.news-cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.news-cta-content p {
  max-width: 640px;
  margin-top: 8px;
}

.article-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.article-main {
  display: grid;
  gap: 34px;
}

.article-feature-image {
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  background: var(--page-gray);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.article-feature-image.portrait {
  max-width: 640px;
}

.article-feature-image.portrait img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.article-section,
.article-source-panel,
.article-sidebar {
  display: grid;
  gap: 14px;
}

.article-section {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--page-border);
}

.article-source-panel,
.article-sidebar {
  padding: clamp(22px, 4vw, 30px);
  background: var(--page-gray);
  border: 1px solid var(--page-border);
  border-radius: 12px;
}

.article-source-panel .secondary-btn,
.article-sidebar .cta-btn,
.article-sidebar .secondary-btn {
  width: fit-content;
}

.article-sidebar {
  position: sticky;
  top: 118px;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtle-pulse {
  0%, 100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

main {
  padding-top: 86px;
}

@media (max-width: 1060px) {
  header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    top: 0;
    width: 100%;
    padding: 12px 18px;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-group,
  .nav-link {
    flex: 0 0 auto;
  }

  .nav-dropdown {
    left: 0;
    right: auto;
  }

  main {
    padding-top: 138px;
  }
}

  @media (max-width: 640px) {
    header {
      padding: 12px;
    }

  .brand-text {
    font-size: 33px;
  }

  .nav-trigger,
  .nav-link {
    height: 38px;
    padding: 0 7px;
    font-size: 13px;
  }

  nav {
    gap: 2px;
  }

  .social-link {
    width: 32px;
  }

  .nav-link.social-link {
    width: 32px;
  }

  .nav-dropdown {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 108px;
    width: auto;
  }

  .cta-btn,
  .secondary-btn {
    width: 100%;
  }

  main {
    padding-top: 132px;
  }

  .footer-index {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-column {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .news-hero,
  .article-hero {
    min-height: auto;
    padding: 148px 18px 54px;
  }

  .news-hero {
    background:
      linear-gradient(180deg, rgba(7, 17, 31, 0.86) 0%, rgba(7, 17, 31, 0.7) 100%),
      url("/assets/photos/inuse-grinnell-1920.webp") center / cover;
  }

  .news-hero-copy {
    margin: 0 auto;
  }

  .news-list-section,
  .article-body-section,
  .news-cta-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .news-card,
  .article-layout,
  .news-cta-content {
    grid-template-columns: 1fr;
  }

  .news-card-media {
    min-height: 220px;
  }

  .news-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .news-source-link {
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    align-items: center;
  }

  .article-feature-image {
    min-height: 260px;
  }

  .article-sidebar {
    position: static;
  }

  .article-source-panel .secondary-btn,
  .article-sidebar .cta-btn,
  .article-sidebar .secondary-btn {
    width: 100%;
  }

}

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

/* --------------------------------------------------------------------------
   Legacy page normalization
   -------------------------------------------------------------------------- */

body {
  background: var(--page-bg) !important;
}

body:not(.home-page) .page-shell > main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

body.info-page .page-shell > main {
  width: 100%;
  margin: 0;
}

@media (max-width: 640px) {
  body:not(.home-page) .page-shell > main {
    width: min(100% - 32px, 1120px);
  }

  body.info-page .page-shell > main {
    width: 100%;
  }
}

h1,
h2,
h3,
p,
li,
label,
input,
textarea,
button {
  letter-spacing: 0;
}

.hero-section {
  background: #FFFFFF !important;
  border: 1px solid var(--page-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.08) !important;
}

.card,
.meet-card,
.event-card,
.empty-state,
.pace-card,
.wizard-card,
.choice-card,
.quote-document,
.quote-doc-section,
.quote-doc-total,
.city-card,
.result-wrap,
.dashboard-card {
  background: #FFFFFF !important;
  border-color: var(--page-border) !important;
  color: var(--ink) !important;
}

.card:hover,
.meet-card:hover,
.event-card:hover,
.pace-card:hover,
.choice-card:hover,
.choice-card:focus-visible,
.choice-card.selected {
  background: #FFFFFF !important;
  border-color: rgba(29, 115, 242, 0.4) !important;
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.1) !important;
}

.event-image,
.event-image.sponsor-logo,
.meet-image,
.pace-card thead th,
.quote-doc-header,
.quote-doc-total,
.heat-num,
.event-chip,
.choice-card.selected,
.meet-date-chip,
.event-date {
  background: var(--page-gray) !important;
}

.tentative-badge,
.discount-pop,
.confirmation-pill {
  background: rgba(29, 115, 242, 0.1) !important;
  border-color: rgba(29, 115, 242, 0.22) !important;
  color: var(--brand-blue) !important;
}

.event-card.tentative .event-date,
.invite-tag,
.event-icon.invite-icon,
.heat-note {
  background: rgba(29, 115, 242, 0.08) !important;
  border-color: rgba(29, 115, 242, 0.22) !important;
  color: var(--brand-blue) !important;
}

.event-card.tentative .event-date .month,
.event-icon.invite-icon svg {
  color: var(--brand-blue) !important;
  stroke: var(--brand-blue) !important;
}

.pace-time,
.total-time,
tbody td:first-child,
.meet-body h2,
.event-details h3,
.pace-card-header h3,
.choice-card strong,
.wizard-step h2,
.result-title {
  color: var(--ink) !important;
}

p,
.meet-location,
.event-details p,
.event-chip,
tbody td,
.splits,
.split-time,
.note,
.heat-note,
.choice-card span,
.quote-send-status,
.confirmation-status,
.wizard-meta,
.pricing-note {
  color: var(--ink-soft) !important;
}

.blue p,
.blue li,
.black p,
.black li,
.deep-blue p,
.deep-blue li,
.final-cta p {
  color: var(--body-text) !important;
}

.blue h2,
.black h2,
.deep-blue h2,
.final-cta h2 {
  color: var(--primary-text) !important;
}

input,
textarea,
.choice-card,
.back-btn {
  background: #FFFFFF !important;
  border-color: var(--page-border) !important;
  color: var(--ink) !important;
}

input:focus,
textarea:focus {
  border-color: var(--brand-blue) !important;
  box-shadow: 0 0 0 4px rgba(29, 115, 242, 0.14) !important;
}

.progress-fill {
  background: var(--brand-blue) !important;
}

.progress-track {
  background: var(--page-gray) !important;
}

.quote-experience {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.wizard-card {
  width: min(880px, 100%) !important;
  animation: none !important;
}

.wizard-step.active {
  animation: none !important;
}

main > section,
.hero-section,
.grid,
.paces-layout {
  animation: none !important;
  opacity: 1 !important;
}
