/* Built. marketing — monochrome sport surface + single accent (#D4A520) */

:root {
  --accent: #d4a520;
  --accent-muted: rgba(212, 165, 32, 0.35);
  --bg-page: #0a0a0a;
  --bg-elevated: #111111;
  --bg-section: #0c0c0c;
  --text-primary: #fafafa;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border-subtle: rgba(250, 250, 250, 0.08);
  --border-default: rgba(250, 250, 250, 0.14);
  --font-display: "Oswald", "Bebas Neue", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Grain: fixed layer only, no pointer events */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--text-primary);
  color: var(--bg-page);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Site header (single dark bar: logo + nav) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: box-shadow 0.35s var(--ease-out);
}

.site-header--scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-sub {
  background: #000000;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-sub__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  /* Logo left, nav cluster true viewport-centre, CTA flush right */
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  min-height: 52px;
  position: relative;
}

.nav-brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.nav-brand:hover {
  opacity: 0.9;
}

.nav-brand__mark {
  height: 28px;
  width: auto;
  aspect-ratio: 276 / 273;
  flex-shrink: 0;
  display: block;
  shape-rendering: geometricPrecision;
}

.nav-brand__wordmark {
  height: 24px;
  width: auto;
  max-width: min(200px, 38vw);
  display: block;
}

.nav-sub__links {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  list-style: none;
  padding: 12px 0;
  max-width: 100%;
}

.nav-sub__cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  white-space: nowrap;
  background: #fff;
  color: #0a0a0a !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-sub__cta:hover {
  background: #e5e5e5;
  color: #0a0a0a !important;
}

.nav-sub__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.nav-sub__links a:hover {
  color: #fff;
}

.nav__toggle {
  display: none;
  position: static;
  transform: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-brand__wordmark {
    display: none;
  }

  .nav-brand__mark {
    height: 30px;
    width: auto;
  }

  .nav-sub__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 12px;
    min-height: 48px;
  }

  .nav-brand,
  .nav-sub__links,
  .nav__toggle,
  .nav-sub__cta {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
  }

  .nav-brand {
    flex: 0 1 auto;
    order: 1;
  }

  .nav__toggle {
    display: flex;
    order: 2;
  }

  .nav-sub__links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    display: none;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex-direction: column;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.97);
    padding: 16px 24px 8px;
    margin: 0 -24px;
    gap: 14px;
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .nav-sub__cta {
    order: 4;
    flex-basis: 100%;
    text-align: center;
    margin-top: 4px;
  }
}

/* ---------- Hero sport ---------- */
.hero--sport {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  margin-top: 0;
  background-color: #000;
}

/* Offset for fixed single nav bar (~52px row + vertical padding) */
.hero--sport {
  padding-top: 72px;
}

.hero__media-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  transition: transform 0.8s var(--ease-out);
  filter: grayscale(1) contrast(1.06);
}

.hero--sport:hover .hero__media-bg img {
  transform: scale(1.03);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Bottom layer: diagonal read legibility. Top layer: long vertical fade so the
     hero image meets the next section without a hard horizontal cut. */
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 68%,
      rgba(0, 0, 0, 0.22) 78%,
      rgba(0, 0, 0, 0.65) 90%,
      #000000 100%
    ),
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.55) 100%
    );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(32px, 8vh, 80px) 0 clamp(28px, 6vh, 56px);
}

.hero__copy {
  max-width: min(36rem, 100%);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 900px) {
  .hero--sport {
    align-items: center;
  }

  .hero__inner .container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .hero__copy {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero--sport {
    min-height: min(100dvh, 820px);
    align-items: flex-end;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.btn:hover {
  color: inherit;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--inverse {
  background: #fff;
  color: #0a0a0a;
}

.btn--inverse:hover {
  background: #e8e8e8;
  color: #0a0a0a;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn--full {
  width: 100%;
}

.btn--contact {
  padding: 16px 36px;
  font-size: 13px;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(72px, 11vw, 112px) 0;
  position: relative;
  z-index: 1;
  background-color: var(--bg-page);
}

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

/* Soft blends between hero / alternating bands (no hard horizontal lines) */
main #about.section {
  background: linear-gradient(
    180deg,
    #000000 0%,
    #050505 48px,
    #080808 min(100px, 12%),
    var(--bg-page) min(160px, 20%),
    var(--bg-page) 100%
  );
}

main #programs.section--dark {
  background: linear-gradient(
    180deg,
    var(--bg-page) 0%,
    #0b0b0b min(100px, 14%),
    var(--bg-section) min(200px, 28%),
    var(--bg-section) 100%
  );
}

main #pricing.section {
  background: linear-gradient(
    180deg,
    var(--bg-section) 0%,
    #0b0b0b min(100px, 14%),
    var(--bg-page) min(200px, 28%),
    var(--bg-page) 100%
  );
}

main #faq.section--dark {
  background: linear-gradient(
    180deg,
    var(--bg-page) 0%,
    #0b0b0b min(100px, 14%),
    var(--bg-section) min(200px, 28%),
    var(--bg-section) 100%
  );
}

main #contact.section {
  background: linear-gradient(
    180deg,
    var(--bg-section) 0%,
    #0b0b0b min(100px, 14%),
    var(--bg-page) min(200px, 28%),
    var(--bg-page) 100%
  );
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-wrap: balance;
  color: var(--text-primary);
}

.section__title .accent {
  color: var(--accent);
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 58ch;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 48px;
}

.section__head {
  text-align: center;
}

.section__head .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Long intros: column centered under title, text ragged left for readability */
.page .section__subtitle--intro {
  text-align: left;
  max-width: min(62ch, 100%);
}

.page .race-prep-intro p {
  margin: 0;
}

.page .race-prep-intro p + p {
  margin-top: 1.1em;
}

/* ---------- About editorial ---------- */
.about-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.about-split__intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 500;
}

.about-split__prose {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}

.about-split__prose p {
  margin: 0;
}

.about-split__prose p + p {
  margin-top: 1.1em;
}

.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border-subtle);
  align-items: start;
}

.about-points li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.about-points__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
}

.about-points__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-points__body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-split__figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-default);
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
}

.about-split__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.85) contrast(1.05);
}

/* ---------- Program tiles ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2.5vw, 20px);
  background: transparent;
  border: none;
}

@media (min-width: 640px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.program-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
  display: block;
  color: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.program-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.program-tile__media {
  position: absolute;
  inset: 0;
}

.program-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.program-tile:hover .program-tile__media img,
.program-tile:focus-visible .program-tile__media img {
  transform: scale(1.06);
}

.program-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  transition: opacity 0.35s var(--ease-out);
}

.program-tile:hover .program-tile__overlay,
.program-tile:focus-visible .program-tile__overlay {
  opacity: 0.92;
}

.program-tile__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 22px;
  z-index: 1;
}

.program-tile__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 4px 8px;
  margin-bottom: 10px;
  border-radius: 2px;
}

.program-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}

.program-tile__cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.program-tile:hover .program-tile__cta,
.program-tile:focus-visible .program-tile__cta {
  color: #fff;
}

/* ---------- Program detail strip (optional below tiles) ---------- */
.program-detail-strip {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  gap: clamp(12px, 2.5vw, 20px);
}

@media (min-width: 768px) {
  .program-detail-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .program-detail-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.program-detail {
  padding: 20px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
}

.program-detail h3 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.program-detail p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- Pricing ---------- */
.pricing-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .pricing-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-highlight {
  text-align: left;
  padding: 28px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pricing-highlight:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
}

.pricing-highlight__icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-highlight__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-highlight__body {
  min-width: 0;
}

.pricing-highlight h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-highlight p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .pricing-highlight {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out);
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--border-default);
}

.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.faq-item[open] .faq-question::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 22px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.faq-answer a {
  color: var(--accent);
}

.faq-answer a:hover {
  color: #e8bc3a;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.contact-cta p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 48ch;
}

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0 32px;
  border-top: none;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #0b0b0b 0%,
    var(--bg-page) min(120px, 20%),
    var(--bg-page) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  color: var(--text-primary);
}

.footer__brand p {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 250, 250, 0.06);
}

.footer__bottom p {
  color: var(--text-dim);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* ---------- Inner pages: nav simple ---------- */
.nav-simple {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s var(--ease-out);
}

.nav-simple--scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav-simple .nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-simple .nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-simple .nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

.nav-simple .nav__logo svg {
  height: 28px;
  width: auto;
  display: block;
}

.nav-simple .nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

@media (max-width: 768px) {
  .nav-simple .nav__toggle {
    display: flex;
  }

  .nav-simple .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 10, 10, 0.98);
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border-subtle);
    list-style: none;
  }

  .nav-simple .nav__links--open {
    display: flex;
  }
}

.nav-simple .nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-simple .nav__links a:hover {
  color: var(--text-primary);
}

.page {
  min-height: 100dvh;
  padding: 88px 24px 80px;
  position: relative;
  z-index: 1;
}

.page__content {
  max-width: 760px;
  margin: 0 auto;
}

.page__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page__content .page__meta {
  color: var(--text-dim);
  margin-bottom: 40px;
  font-size: 14px;
}

.page__content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 12px;
}

.page__content p,
.page__content li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.page__content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page__content strong {
  color: var(--text-primary);
}

.page__content code {
  background: var(--bg-elevated);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--accent);
}

/* Blog listing */
.page--blog h1 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  max-width: 52ch;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.blog-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  color: inherit;
}

.blog-card:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
  color: inherit;
}

.blog-card__date {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card__excerpt {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-card__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.loading {
  text-align: center;
  color: var(--text-dim);
  padding: 40px;
}

.loading a {
  color: var(--accent);
  font-weight: 600;
}

.loading a:hover {
  color: #e8bc3a;
}

/* Article */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 88px 24px 80px;
  position: relative;
  z-index: 1;
}

.article__meta {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article__back {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.article h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
}

.article__body {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.article__body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.article__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.article__body p {
  margin-bottom: 20px;
}

.article__body ul,
.article__body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article__body li {
  margin-bottom: 8px;
}

.article__body strong {
  color: var(--text-primary);
}

.article__body a {
  color: var(--accent);
  font-weight: 600;
}

.article__body a:hover {
  color: #e8bc3a;
}

/* Long-form articles without .article__body wrapper */
.article > h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.article > h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.article > p,
.article > ul,
.article > ol {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article > ul,
.article > ol {
  padding-left: 24px;
}

.article > ul li,
.article > ol li {
  margin-bottom: 8px;
}

.article .article__intro {
  font-size: 17px;
  line-height: 1.8;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.article > p a,
.article > ul a,
.article > ol a,
.article .article__intro a {
  color: var(--accent);
  font-weight: 600;
}

.article > p a:hover,
.article > ul a:hover,
.article > ol a:hover,
.article .article__intro a:hover {
  color: #e8bc3a;
}

.article__body .intro {
  font-size: 17px;
  line-height: 1.8;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 32px;
}

.article__cta {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 40px 0;
  text-align: center;
}

.article__cta p {
  margin-bottom: 18px;
}

.article__cta p.muted {
  color: var(--text-muted);
}

.btn--primary-solid {
  background: var(--accent);
  color: #0a0a0a;
}

.btn--primary-solid:hover {
  background: #e0b420;
  color: #0a0a0a;
}

/* Race prep page extras */
.programs-grid-race {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .programs-grid-race {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .programs-grid-race {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card-race {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.program-card-race:hover {
  border-color: var(--border-default);
  transform: translateY(-3px);
}

.program-card-race h2,
.program-card-race h3,
.program-card-race .program-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.program-card-race .program-card__desc {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.program-card-race .program-card__detail {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}

.program-card-race p.program-card__detail {
  margin-bottom: 20px;
}

.nav-cta-inline {
  padding: 10px 18px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em;
}

.program-card__header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
}

.program-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid var(--border-default);
  background: var(--bg-page);
  color: var(--text-muted);
}

.program-card__tag--soon {
  border-color: var(--accent-muted);
  color: var(--accent);
}

.program-card__tag--muted {
  opacity: 0.9;
}

.faq-block {
  margin-top: 56px;
}

.faq-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-block__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.faq-block__sub a {
  color: var(--accent);
}

.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  content: "\2212";
}

.faq-a {
  padding: 0 22px 18px;
}

.faq-a p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.faq-a a {
  color: var(--accent);
}

.page .section__title {
  text-align: center;
  margin-top: 0;
}

.race-footer-note {
  text-align: center;
  margin-top: 56px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text-muted);
}

.race-footer-note a {
  color: var(--accent);
}

/* ---------- About page ---------- */
.about-hero {
  padding: 140px 0 56px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #000000 0%,
    #050505 40%,
    var(--bg-page) 100%
  );
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-hero__lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 500;
}

/* Philosophy dual-point section */
.about-philosophy {
  padding-top: 40px;
}

.about-philosophy__body {
  max-width: 860px;
  margin: 0 auto;
}

.about-philosophy__body > p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
  margin-bottom: 36px;
  font-weight: 500;
}

.about-philosophy__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .about-philosophy__split {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.about-philosophy__point {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.about-philosophy__point:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
}

.about-philosophy__icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.about-philosophy__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-philosophy__point p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.about-philosophy__point strong {
  color: var(--text-primary);
}

.about-philosophy__note {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.75;
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

/* Season spotlight */
.about-season-spotlight {
  background: linear-gradient(
    180deg,
    var(--bg-page) 0%,
    #0b0b0b min(100px, 14%),
    var(--bg-section) min(200px, 28%),
    var(--bg-section) 100%
  );
}

.about-season-spotlight__inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-season-spotlight__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.about-season-spotlight__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
}

.about-season-spotlight__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-muted);
  padding: 5px 12px;
  border-radius: 2px;
}

.about-season-spotlight .section__title {
  text-align: left;
  margin-bottom: 16px;
}

.about-season-spotlight__intro {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 60ch;
}

/* Focus list */
.about-focus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-focus-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.about-focus-list li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.about-focus-list__marker {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: var(--accent);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* Goal callout */
.about-season-spotlight__goal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 8px;
}

.about-season-spotlight__goal p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.about-season-spotlight__goal p + p {
  margin-top: 12px;
}

.about-season-spotlight__goal strong {
  color: var(--text-primary);
}

/* Timeline section */
.about-timeline-section {
  background: linear-gradient(
    180deg,
    var(--bg-section) 0%,
    #0b0b0b min(100px, 14%),
    var(--bg-page) min(200px, 28%),
    var(--bg-page) 100%
  );
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 32px;
}

.about-timeline__track {
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    var(--border-default) 35%,
    var(--border-subtle) 100%
  );
}

.about-timeline__item {
  position: relative;
  padding: 16px 0;
}

.about-timeline__dot {
  position: absolute;
  left: -32px;
  top: 32px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-page);
  border: 2px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-timeline__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.about-timeline__item--active .about-timeline__dot {
  border-color: var(--accent);
}

.about-timeline__item--active .about-timeline__dot::after {
  background: var(--accent);
}

.about-timeline__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.about-timeline__card:hover {
  border-color: var(--border-default);
  transform: translateX(4px);
}

.about-timeline__item--active .about-timeline__card {
  border-color: var(--accent-muted);
}

.about-timeline__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border-default);
  color: var(--text-dim);
  margin-bottom: 10px;
}

.about-timeline__tag--active {
  border-color: var(--accent-muted);
  color: var(--accent);
}

.about-timeline__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.about-timeline__card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.about-timeline__coda {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

/* Desktop: horizontal timeline */
@media (min-width: 768px) {
  .about-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-left: 0;
    padding-top: 40px;
  }

  .about-timeline__track {
    left: 24px;
    right: 24px;
    top: 11px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--accent) 0%,
      var(--border-default) 35%,
      var(--border-subtle) 100%
    );
  }

  .about-timeline__item {
    padding: 0;
    padding-top: 24px;
  }

  .about-timeline__dot {
    left: 50%;
    top: -11px;
    transform: translateX(-50%);
  }

  .about-timeline__card {
    height: 100%;
  }

  .about-timeline__card:hover {
    transform: translateY(-4px);
  }
}

/* About CTA */
.about-cta-section {
  background: linear-gradient(
    180deg,
    var(--bg-page) 0%,
    #0b0b0b min(100px, 14%),
    var(--bg-section) min(200px, 28%),
    var(--bg-section) 100%
  );
}

.about-cta-block {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.about-cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-cta-block p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.wordmark {
  display: block;
  object-fit: contain;
}

/* ---------- App Store CTAs ---------- */
.app-store-badge {
  display: inline-block;
  height: 44px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  vertical-align: middle;
}

.app-store-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.app-store-badge--lg {
  height: 56px;
}

.app-store-badge--sm {
  height: 40px;
}

.app-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.app-cta-row__note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.program-card__app-note {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.footer__app {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.footer__app-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* ---------- Sticky mobile download bar ---------- */
.app-sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
  display: none;
}

.app-sticky-bar--hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}

.app-sticky-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.app-sticky-bar__msg {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-primary);
}

.app-sticky-bar__msg strong {
  color: #fff;
  letter-spacing: 0.02em;
}

.app-sticky-bar__cta {
  background: #fff;
  color: #0a0a0a !important;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-sticky-bar__cta:hover {
  background: #e5e5e5;
}

.app-sticky-bar__close {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.app-sticky-bar__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .app-sticky-bar {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-sticky-bar,
  .app-store-badge {
    transition: none;
  }
}
