:root {
  --bg: #080812;
  --bg-2: #10101b;
  --panel: #1b1c28;
  --panel-2: #272837;
  --text: #ffffff;
  --muted: #c7c7d4;
  --soft: #8f91a3;
  --pink: #ff4e86;
  --pink-2: #ff6f9d;
  --hot: #ff2f75;
  --blue: #596aff;
  --line: rgba(255, 255, 255, 0.11);
  --shadow-pink: 0 0 34px rgba(255, 78, 134, 0.44);
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 44px);
  background: rgba(5, 5, 12, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--pink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo em {
  color: #fff;
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e9e9ef;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--pink-2);
}

.student-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 7px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 78, 134, 0.24);
}

.mobile-nav {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 88px 18px 54px;
  overflow: hidden;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(1.05) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(8, 8, 18, 0.34) 0%, rgba(8, 8, 18, 0.28) 48%, var(--bg) 100%),
    radial-gradient(circle at center, rgba(255, 78, 134, 0.15), rgba(8, 8, 18, 0.76) 62%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags strong {
  color: #71ff8b;
}

.hero-tags b {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.hero-inner h1 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(37px, 6vw, 68px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.main-cta,
.mini-cta,
.plan-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--pink), var(--hot));
  color: #fff;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: var(--shadow-pink);
  transition: transform 180ms ease, filter 180ms ease;
}

.main-cta:hover,
.mini-cta:hover,
.plan-card a:hover,
.student-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.main-cta {
  margin-top: 22px;
  padding: 0 26px;
}

.hero-proof {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin-top: 18px;
}

.avatar-row {
  display: flex;
}

.avatar-row img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--pink);
  margin-left: -8px;
}

.avatar-row img:first-child {
  margin-left: 0;
}

.hero-proof p {
  max-width: 440px;
  margin: 0;
  color: #f5f5fa;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: clamp(58px, 8vw, 92px) 18px;
}

.center-title,
.icon-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

h2,
.checklist-block h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

h2 span,
.icon-heading h2 span {
  color: var(--pink);
}

.icon-heading p {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.tiny-icon,
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 22px rgba(255, 78, 134, 0.28);
}

.tiny-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  font-size: 15px;
}

.stats-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px auto 0;
}

.stats-grid article {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.stats-grid .wide {
  grid-column: span 3;
}

.stat-icon {
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.stats-grid p {
  margin: 16px 0 0;
  color: #f6f6fb;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.checklist-block {
  max-width: 650px;
  margin: 62px auto 0;
  text-align: center;
}

.checklist-block h3 {
  max-width: 610px;
  margin: 0 auto 22px;
  font-size: clamp(22px, 3.3vw, 34px);
}

.checklist-block ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-block li {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 5px;
  background: #333447;
  color: #f4f4fb;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.checklist-block li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--pink);
  font-size: 12px;
}

.mini-cta {
  width: 100%;
  margin-top: 12px;
}

.access-section {
  padding-top: 28px;
}

.workout-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 34px auto 0;
}

.workout-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background: #14141e;
  border: 1px solid var(--line);
}

.workout-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.workout-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 18, 0.05), rgba(8, 8, 18, 0.92));
}

.workout-grid div {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
}

.workout-grid span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.workout-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.15;
}

.more-script {
  margin: 80px 0 0;
  color: var(--pink-2);
  text-align: center;
  font-family: "Pacifico", cursive;
  font-size: 30px;
}

.results-section {
  padding-top: 36px;
}

.testimonial-card {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  align-items: center;
  margin: 34px auto 26px;
  padding: 18px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.testimonial-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Pacifico", cursive;
  font-size: 32px;
  font-weight: 400;
}

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

.masonry-results {
  max-width: 1080px;
  columns: 3 220px;
  column-gap: 14px;
  margin: 0 auto;
}

.masonry-results img {
  width: 100%;
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 3px;
}

.plans-section {
  padding-top: 36px;
}

.plans-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 34px auto 0;
}

.plan-card {
  position: relative;
  min-height: 264px;
  display: flex;
  flex-direction: column;
  padding: 22px 18px 18px;
  border-radius: 8px;
  background: #fff;
  color: #15151e;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.plan-card.annual {
  background: linear-gradient(180deg, #ff5c91 0%, #ff3e7b 100%);
  color: #fff;
}

.ribbon {
  position: absolute;
  top: -12px;
  left: 18px;
  right: 18px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 8px 0 16px;
  font-size: 17px;
  line-height: 1.1;
}

.price {
  color: var(--pink);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.annual .price {
  color: #fff;
}

.price span {
  font-size: 13px;
  font-weight: 800;
}

.plan-card p {
  margin: 10px 0 0;
  color: #5f6070;
  font-size: 13px;
  font-weight: 700;
}

.plan-card small {
  display: block;
  margin-top: 10px;
  color: #8b8d9b;
  font-size: 11px;
  line-height: 1.45;
}

.annual p,
.annual small {
  color: rgba(255, 255, 255, 0.88);
}

.plan-card a {
  width: 100%;
  margin-top: auto;
  box-shadow: none;
}

.annual a {
  background: #fff;
  color: var(--pink);
}

.final-section {
  padding-top: 28px;
}

.final-section .icon-heading {
  max-width: 780px;
}

.final-section .main-cta {
  min-width: min(560px, 100%);
}

.faq-section {
  padding-top: 36px;
}

.faq-list {
  max-width: 1080px;
  display: grid;
  gap: 10px;
  margin: 30px auto 0;
}

.faq-list details {
  border-radius: 4px;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--pink);
}

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

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 56px clamp(18px, 6vw, 76px) 82px;
  background: #070711;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer > div {
  max-width: 480px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer p,
.footer small {
  color: var(--soft);
  line-height: 1.65;
}

.footer p {
  margin: 0 0 16px;
}

.footer-cta {
  align-self: flex-start;
  color: var(--pink);
  font-weight: 900;
}

@media (max-width: 960px) {
  .desktop-nav,
  .student-link {
    display: none;
  }

  .topbar {
    height: 48px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 25;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    width: min(350px, calc(100% - 28px));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(27, 28, 40, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a {
    min-height: 40px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
  }

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

  .stats-grid,
  .workout-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid .wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 560px;
    padding-top: 70px;
  }

  .hero-tags {
    flex-wrap: wrap;
    font-size: 11px;
  }

  .hero-inner h1 {
    font-size: clamp(32px, 10.4vw, 42px);
  }

  .stats-grid,
  .workout-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid .wide {
    grid-column: auto;
  }

  .stats-grid article {
    min-height: 112px;
  }

  .workout-grid article {
    min-height: 230px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .masonry-results {
    columns: 1;
  }

  .footer {
    display: block;
    padding-bottom: 98px;
  }

  .footer-cta {
    display: inline-block;
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Meta-safe presell page */
.meta-page {
  background:
    radial-gradient(circle at 82% 7%, rgba(255, 78, 134, 0.16), transparent 34rem),
    #05050a;
}

.meta-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(4, 4, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.meta-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.meta-header-cta,
.meta-primary,
.meta-plan a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--pink), var(--hot));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: var(--shadow-pink);
}

.meta-header-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.meta-hero {
  max-width: 1280px;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.meta-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.meta-hero-copy h1::first-line {
  color: #fff;
}

.meta-hero-copy p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.6;
}

.meta-hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 30px 0;
}

.meta-hero-points span,
.safe-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.meta-hero-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.meta-hero-copy small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.meta-device {
  position: relative;
  min-height: 520px;
}

.screen-large,
.screen-small {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.screen-large img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  opacity: 0.9;
}

.screen-overlay {
  position: absolute;
  left: 30px;
  bottom: 34px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.68);
}

.screen-overlay strong {
  font-size: 34px;
  line-height: 1;
}

.screen-overlay span {
  color: var(--pink-2);
  font-weight: 900;
}

.screen-small {
  position: absolute;
  left: -36px;
  bottom: 8px;
  width: 210px;
  padding: 12px;
}

.screen-small span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-small img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.meta-section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.meta-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.meta-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-heading h2,
.meta-final h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
}

.steps-grid,
.benefit-strip,
.meta-plan-grid {
  max-width: 1180px;
  display: grid;
  gap: 16px;
  margin: 0 auto;
}

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

.steps-grid article,
.benefit-strip article,
.meta-plan,
.meta-faq details,
.meta-final {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.steps-grid article {
  padding: 30px;
  text-align: center;
}

.steps-grid b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: var(--shadow-pink);
}

.steps-grid h3,
.benefit-strip strong {
  margin: 0;
  font-size: 22px;
}

.steps-grid p,
.benefit-strip p,
.meta-plan p,
.meta-faq p,
.meta-final p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.category-rail {
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.category-rail article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #15151c;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.category-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-rail article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.86));
}

.category-rail div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.category-rail strong {
  font-size: 23px;
}

.category-rail span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 78, 134, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

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

.benefit-strip article {
  padding: 24px;
}

.meta-pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 78, 134, 0.06));
}

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

.meta-plan {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px;
}

.meta-plan.recommended {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px rgba(255, 78, 134, 0.35), var(--shadow-pink);
}

.meta-plan > span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--pink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.meta-plan h3 {
  margin: 0 0 22px;
  font-size: 24px;
  text-transform: uppercase;
}

.meta-plan div {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.meta-plan small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.meta-plan a {
  width: 100%;
  margin-top: auto;
  box-shadow: none;
}

.safe-note {
  max-width: 1180px;
  margin: 18px auto 0;
  text-align: center;
}

.meta-faq {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 auto;
}

.meta-faq details {
  padding: 0 18px;
}

.meta-faq summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 900;
  cursor: pointer;
}

.meta-faq summary::after {
  content: "+";
  color: var(--pink);
}

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

.meta-faq p {
  margin: 0;
  padding-bottom: 18px;
}

.meta-final {
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 34px auto 0;
  padding: clamp(26px, 5vw, 44px);
}

.meta-final p {
  margin: 12px 0 0;
}

.meta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px) 46px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .meta-header nav {
    display: none;
  }

  .meta-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .meta-device {
    min-height: auto;
  }

  .screen-small {
    display: none;
  }

  .steps-grid,
  .benefit-strip,
  .meta-plan-grid,
  .category-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .meta-header {
    height: 64px;
  }

  .meta-header-cta {
    display: none;
  }

  .meta-hero {
    padding-top: 48px;
  }

  .meta-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .meta-hero-points,
  .steps-grid,
  .benefit-strip,
  .meta-plan-grid,
  .category-rail,
  .meta-faq {
    grid-template-columns: 1fr;
  }

  .screen-large img {
    height: 320px;
  }

  .screen-overlay strong {
    font-size: 26px;
  }

  .category-rail article {
    min-height: 290px;
  }

  .meta-final,
  .meta-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .meta-primary {
    width: 100%;
  }
}
