:root {
  color-scheme: light;
  --ink: #121514;
  --ink-soft: #33413e;
  --muted: #65716f;
  --paper: #f5f7f2;
  --paper-warm: #fbf6ed;
  --white: #ffffff;
  --mist: #e2f0ed;
  --foam: #c8ebe4;
  --teal: #0a7477;
  --teal-deep: #092f33;
  --coral: #d9644f;
  --gold: #d8a12d;
  --plum: #703958;
  --line: rgba(18, 21, 20, 0.13);
  --line-strong: rgba(18, 21, 20, 0.22);
  --shadow: 0 22px 64px rgba(9, 47, 51, 0.17);
  --radius: 8px;
  --container: min(1160px, calc(100% - 32px));
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 52px;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

p {
  color: var(--ink-soft);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 24, 27, 0.74);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(9, 47, 51, 0.09);
}

.header-inner {
  width: var(--container);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  font-weight: 900;
  font-size: 14px;
}

.site-header.is-scrolled .brand-mark {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 13px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  gap: 5px;
  align-content: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
}

.nav {
  position: fixed;
  top: var(--header-height);
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.nav a:hover {
  background: var(--mist);
}

.nav-cta {
  justify-content: center;
  background: var(--teal-deep);
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: min(760px, 86svh);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--teal-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 27, 0.93) 0%, rgba(7, 24, 27, 0.72) 40%, rgba(7, 24, 27, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 24, 27, 0.36) 0%, rgba(7, 24, 27, 0.08) 42%, rgba(7, 24, 27, 0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 118px 0 38px;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow,
.card-label {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #b8f5e9;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.brand-links,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #171005;
  box-shadow: 0 14px 26px rgba(216, 161, 45, 0.26);
}

.btn-primary:hover {
  background: #e3af43;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
}

.hero-proof div {
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 14px;
}

.hero-proof dt {
  color: var(--white);
  font-weight: 900;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.quick-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-inner {
  width: var(--container);
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-inner::-webkit-scrollbar {
  display: none;
}

.quick-inner span {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.split-heading,
.feature-grid,
.parents-grid,
.mentor-grid,
.equipment-layout,
.gigs-grid,
.faq-grid,
.inquiry-grid {
  display: grid;
  gap: 28px;
}

.intro h2,
.split-heading h2,
.feature-copy h2,
.parents-grid h2,
.mentor-copy h2,
.gigs-grid h2,
.faq-grid h2,
.inquiry-copy h2,
.section-heading h2 {
  max-width: 780px;
}

.intro-copy p:last-child,
.split-heading p:last-child,
.feature-copy p:last-child,
.parents-grid p:last-child,
.mentor-copy p:last-child,
.gigs-grid p:last-child,
.inquiry-copy p:last-child {
  margin-bottom: 0;
}

.learn,
.mentor,
.faq {
  background: var(--white);
}

.skill-grid,
.cohort-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.first-mix {
  background:
    linear-gradient(135deg, rgba(10, 116, 119, 0.12), rgba(216, 161, 45, 0.12)),
    var(--paper-warm);
}

.first-mix-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.first-mix-grid p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 24px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.first-mix-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.first-mix-card article {
  min-width: 0;
  padding: 24px;
  background: var(--white);
}

.first-mix-card span,
.first-mix-card strong {
  display: block;
}

.first-mix-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.first-mix-card strong {
  margin-top: 18px;
  color: var(--teal-deep);
  font-size: 1.18rem;
  line-height: 1.18;
}

.local-lanes {
  background:
    linear-gradient(135deg, rgba(112, 57, 88, 0.11), rgba(10, 116, 119, 0.12)),
    var(--mist);
}

.local-lanes-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.local-lanes-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.06rem;
}

.local-lane-tool {
  display: grid;
  gap: 12px;
}

.local-lane-options,
.local-lane-output {
  display: grid;
  gap: 10px;
}

.local-lane-choice {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.local-lane-choice:hover,
.local-lane-choice:focus-visible,
.local-lane-choice.is-active {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--white);
  outline: none;
}

.local-lane-output {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.local-lane-output span {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-lane-output h3,
.local-lane-output p {
  margin: 0;
}

.local-lane-output ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-lane-output li {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
}

.local-lane-output .btn {
  width: fit-content;
}

.skill-card,
.cohort-card,
.lesson-panel,
.parent-points article,
.equipment-list article,
.practice-block,
.path-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

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

.skill-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
}

.skill-number,
.cohort-card span,
.path-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--teal-deep);
  font-weight: 900;
  font-size: 13px;
}

.skill-card p,
.cohort-card p,
.parent-points p,
.equipment-list p,
.path-steps p,
.practice-block p {
  margin-bottom: 0;
}

.private {
  background:
    linear-gradient(180deg, var(--paper), var(--paper-warm));
}

.feature-grid {
  align-items: center;
}

.check-list,
.plain-list {
  list-style: none;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px var(--mist);
}

.lesson-panel {
  background: var(--teal-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.lesson-panel h3 {
  color: var(--white);
}

.plain-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.plain-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.plain-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration-color: rgba(10, 116, 119, 0.35);
  text-underline-offset: 4px;
}

.lesson-panel .text-link {
  color: #b8f5e9;
}

.text-link:hover {
  color: var(--coral);
}

.cohort {
  background: var(--teal-deep);
  color: var(--white);
}

.cohort .eyebrow {
  color: var(--foam);
}

.cohort .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  text-align: left;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.cohort-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.17);
}

.cohort-card span {
  background: rgba(200, 235, 228, 0.14);
  color: var(--foam);
}

.cohort-card h3 {
  color: var(--white);
}

.cohort-card p {
  color: rgba(255, 255, 255, 0.74);
}

.cohort-hold {
  background:
    linear-gradient(135deg, rgba(10, 116, 119, 0.12), rgba(112, 57, 88, 0.10)),
    var(--paper);
}

.cohort-hold-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.cohort-hold-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.cohort-hold-copy .btn {
  margin-top: 8px;
}

.cohort-hold-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.cohort-hold-card article {
  min-width: 0;
  padding: 24px;
  background: var(--white);
}

.cohort-hold-card span,
.cohort-hold-card strong {
  display: block;
}

.cohort-hold-card span {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cohort-hold-card strong {
  margin-top: 18px;
  color: var(--teal-deep);
  font-size: 1.16rem;
  line-height: 1.18;
}

.parents {
  background: var(--paper-warm);
}

.parent-points {
  display: grid;
  gap: 14px;
}

.mentor-grid {
  align-items: center;
}

.mentor-image {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 52%;
}

.brand-links {
  margin-top: 24px;
}

.brand-links a,
.contact-stack a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px 13px;
  color: var(--teal-deep);
  text-decoration: none;
  font-weight: 900;
}

.brand-links a:hover,
.contact-stack a:hover {
  border-color: var(--teal);
}

.equipment {
  background: var(--paper);
}

.equipment-list {
  display: grid;
  gap: 14px;
}

.practice-block {
  align-self: start;
  background:
    linear-gradient(135deg, rgba(10, 116, 119, 0.1), rgba(217, 100, 79, 0.1)),
    var(--white);
  box-shadow: var(--shadow);
}

.practice-block h3 {
  font-size: 30px;
}

.gigs {
  background: #111615;
  color: var(--white);
}

.gigs .eyebrow {
  color: var(--foam);
}

.gigs p {
  color: rgba(255, 255, 255, 0.76);
}

.path-steps {
  display: grid;
  gap: 14px;
}

.path-steps article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.path-steps span {
  width: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #171005;
}

.path-steps h3 {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 18px;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-bottom: 18px;
  padding-right: 12px;
}

.inquiry {
  background:
    linear-gradient(135deg, rgba(10, 116, 119, 0.12), rgba(216, 161, 45, 0.12)),
    var(--paper-warm);
}

.inquiry-copy {
  align-self: start;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two {
  grid-template-columns: 1fr;
  gap: 16px;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(10, 116, 119, 0.18);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-deep);
  font-weight: 900;
}

.site-footer {
  background: #081819;
  color: var(--white);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 17px;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 9px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 4px;
}

@media (min-width: 640px) {
  :root {
    --container: min(1160px, calc(100% - 48px));
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 42px;
  }

  .section-pad {
    padding: 88px 0;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .skill-grid,
  .cohort-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row.two {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
  }
}

@media (max-width: 639px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .local-lane-output .btn {
    width: 100%;
  }
}

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

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    box-shadow: none;
  }

  .nav a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .site-header:not(.is-scrolled) .nav a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-cta {
    margin-left: 6px;
    padding-right: 14px !important;
    padding-left: 14px !important;
    background: var(--gold);
    color: #171005 !important;
  }

  .hero {
    min-height: min(780px, 84svh);
  }

  .hero-inner {
    padding-top: 138px;
  }

  .intro-grid,
  .split-heading,
  .feature-grid,
  .first-mix-grid,
  .cohort-hold-grid,
  .local-lanes-grid,
  .parents-grid,
  .mentor-grid,
  .equipment-layout,
  .gigs-grid,
  .faq-grid,
  .inquiry-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
  }

  .local-lane-tool {
    grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1fr);
  }

  .cohort-hold-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .skill-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cohort-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .section-heading.centered h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .inquiry-copy {
    position: sticky;
    top: 112px;
  }
}

@media (min-width: 1100px) {
  h1 {
    font-size: 92px;
  }

  h2 {
    font-size: 48px;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .hero-inner {
    padding-top: 96px;
    padding-bottom: 30px;
  }

  .hero-lede {
    margin-bottom: 22px;
    font-size: 18px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .hero-proof {
    display: none;
  }
}

/* === Phase 2+ upgrade: sticky mobile CTA (self-contained, namespaced) === */
.mcta{position:fixed;left:0;right:0;bottom:0;z-index:9000;display:none;gap:10px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom,0px));
  background:rgba(13,16,22,.93);border-top:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  transform:translateY(120%);transition:transform 220ms ease;font-family:inherit}
.mcta.visible{transform:translateY(0)}
.mcta a{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:50px;border-radius:10px;font-weight:700;font-size:.95rem;text-decoration:none;line-height:1}
.mcta .mcta-call{flex:0 0 112px;color:#fff;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.26)}
.mcta .mcta-go{flex:1;color:#0c0f14;background:#fff;border:1px solid #fff}
.mcta svg{flex:none}
@media(max-width:768px){.mcta{display:flex}}
@media(prefers-reduced-motion:reduce){.mcta{transition:none}}
