/**
 * Pooking Star — neon-noir pool hall: plum/maroon base, cyan + magenta + gold accents
 * (Differentiated from cruise-luxury Grand Billiards template.)
 */

:root {
  --bg-deep: #140810;
  --bg-panel: #1f0c18;
  --bg-elevated: #2a1222;
  --felt: #b91c1c;
  --felt-glow: rgba(220, 38, 38, 0.35);
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --magenta: #e879f9;
  --magenta-dim: #c026d3;
  --gold: #fbbf24;
  --gold-soft: #f59e0b;
  --text: #f8fafc;
  --muted: #c4b5c0;
  --stroke-gold: rgba(251, 191, 36, 0.55);
  --stroke-cyan: rgba(34, 211, 238, 0.45);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 1rem;
  --radius-lg: 1.35rem;
  --shadow-neon: 0 0 24px rgba(34, 211, 238, 0.15), 0 0 48px rgba(232, 121, 249, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

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

  .neon-pulse,
  .hero__glow-orb {
    animation: none !important;
  }

  @media (min-width: 900px) {
    .hero__poster {
      transform: none;
    }
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

/* Harlequin + vignette atmosphere */
.page-skin {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-skin__diamonds {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-color: #0a0508;
  background-image:
    linear-gradient(135deg, #3b1c2e 25%, transparent 25%),
    linear-gradient(225deg, #3b1c2e 25%, transparent 25%),
    linear-gradient(45deg, #3b1c2e 25%, transparent 25%),
    linear-gradient(315deg, #3b1c2e 25%, #0a0508 25%);
  background-position: 12px 0, 12px 0, 0 0, 0 0;
  background-size: 24px 24px;
  background-repeat: repeat;
}

.page-skin__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, transparent 0%, rgba(10, 5, 8, 0.85) 100%);
}

.page-skin__table-wire {
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 140%;
  max-width: 1200px;
  height: 45vh;
  transform: translateX(-50%);
  opacity: 0.06;
  border: 2px solid var(--text);
  border-radius: 12px;
  background: linear-gradient(180deg, transparent 60%, rgba(185, 28, 28, 0.15) 100%);
}

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(20, 8, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--stroke-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.navbar {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.92;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.35), inset 0 0 12px rgba(232, 121, 249, 0.12);
  object-fit: cover;
  object-position: center;
  background: var(--bg-panel);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.45);
}

.brand__sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--stroke-cyan);
  background: rgba(31, 12, 24, 0.9);
  color: var(--cyan);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.2);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  cursor: pointer;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
}

.nav-menu__cta {
  margin-left: 0.25rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.btn--cta {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: #1a0a14;
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
}

.btn--cta:hover {
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.5), var(--shadow-neon);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}

.btn--outline:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: 0 0 20px rgba(232, 121, 249, 0.2);
}

.btn--magenta {
  background: linear-gradient(135deg, var(--magenta-dim), var(--magenta));
  color: #fff;
  border-color: var(--magenta);
}

.btn--magenta:hover {
  box-shadow: 0 0 28px rgba(232, 121, 249, 0.4);
  transform: translateY(-1px);
}

/* Main content above atmosphere */
main {
  position: relative;
  z-index: 1;
}

/* Hero — App Store–style: copy + chips + CTAs | layered key art + device */
.hero {
  position: relative;
  padding: 2rem 0 3rem;
  overflow: hidden;
}

.hero__shell {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero__glow-orb {
  position: absolute;
  width: min(90vw, 380px);
  height: min(90vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.22) 0%, transparent 70%);
  top: -60px;
  right: -5%;
  filter: blur(6px);
  animation: float-orb 14s ease-in-out infinite;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-20px, 24px) scale(1.08);
    opacity: 1;
  }
}

.hero__layout {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem 3rem;
    align-items: center;
  }
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__chips {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__chip {
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  background: rgba(31, 12, 24, 0.65);
}

.hero__subcta {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero__subcta-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.hero__link-down {
  color: var(--cyan);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hero__link-down:hover {
  color: var(--magenta);
  text-decoration-color: rgba(232, 121, 249, 0.55);
}

.hero__link-down:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Visual column: poster behind phone */
.hero__showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  padding: 0.5rem 0 0.25rem;
}

@media (min-width: 900px) {
  .hero__showcase {
    min-height: 420px;
    padding: 2rem 0 0;
    align-items: center;
  }
}

.hero__poster {
  position: relative;
  width: min(78%, 260px);
  margin: 0 auto 1.5rem;
  padding: 0.85rem;
}

@media (min-width: 900px) {
  .hero__poster {
    position: absolute;
    width: min(48%, 240px);
    margin: 0;
    top: 4%;
    right: 4%;
    transform: rotate(-8deg);
    z-index: 0;
    opacity: 0.98;
  }
}

.hero__neon-frame {
  position: relative;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.12), rgba(34, 211, 238, 0.06));
  box-shadow:
    0 0 0 2px var(--gold),
    0 0 0 5px rgba(34, 211, 238, 0.45),
    inset 0 0 40px rgba(0, 0, 0, 0.35),
    var(--shadow-neon);
}

.hero__neon-frame::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 20px;
  background: linear-gradient(180deg, var(--magenta), var(--magenta-dim));
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 0 18px rgba(232, 121, 249, 0.7);
  border-radius: 2px;
}

.hero__banner-img {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.hero__device-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero__device-wrap {
    margin-top: 2.5rem;
    margin-right: auto;
    margin-left: 12%;
    max-width: 300px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.hero__title-gold {
  display: block;
  color: var(--gold);
  text-shadow:
    0 0 20px rgba(251, 191, 36, 0.6),
    0 0 40px rgba(245, 158, 11, 0.25);
}

.hero__title-line {
  display: block;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-top: 0.35rem;
}

.hero__lead {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.device-slab {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  padding: 0.6rem;
  border-radius: 2rem;
  background: linear-gradient(160deg, #0f172a, #1e1b4b);
  border: 2px solid var(--cyan);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(34, 211, 238, 0.15);
}

.device-slab__inner {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.device-slab__notch {
  height: 22px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.device-slab__notch::before {
  content: "";
  width: 64px;
  height: 6px;
  border-radius: 99px;
  background: #334155;
}

.device-caption {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Diagonal slash band */
.slash-band {
  position: relative;
  margin: 2rem 0;
  padding: 2.5rem 1.25rem;
  background: linear-gradient(105deg, rgba(185, 28, 28, 0.2) 0%, rgba(31, 12, 24, 0.95) 45%, rgba(20, 8, 16, 0.98) 100%);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  border-bottom: 1px solid rgba(232, 121, 249, 0.2);
}

.slash-band__inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.slash-band__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--text);
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.25);
}

.slash-band__text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Features */
.features {
  padding: 3rem 1.25rem 3.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.35);
}

.section-lead {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
}

.features__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

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

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

.feature-card {
  position: relative;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  cursor: default;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.feature-card:hover {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(232, 121, 249, 0.12);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.feature-card:nth-child(3n + 2) .feature-card__icon {
  color: var(--magenta);
  background: rgba(232, 121, 249, 0.1);
  border-color: rgba(232, 121, 249, 0.35);
}

.feature-card:nth-child(3n) .feature-card__icon {
  color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.35);
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-card__body {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Screenshots — portrait captures images/1.jpg … 4.jpg */
.screens {
  padding: 2rem 1.25rem 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.screens__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .screens__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .screens__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.screens__figure {
  margin: 0;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(232, 121, 249, 0.3);
  background: var(--bg-panel);
  aspect-ratio: 1080 / 1920;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.screens__figure:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.18);
}

.screens__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .screens__figure {
    transition: none;
  }
}

/* Download */
.download {
  padding: 2rem 1.25rem 4rem;
  max-width: 42rem;
  margin: 0 auto;
}

.download__card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 3px rgba(34, 211, 238, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.download__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.download__text {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.download__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .download__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  background: rgba(10, 5, 8, 0.85);
}

.site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

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

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-size: 0.88rem;
}

.site-footer__links a {
  color: var(--cyan);
  cursor: pointer;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--magenta);
  text-shadow: 0 0 12px rgba(232, 121, 249, 0.35);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 6, 0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.2);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.modal__close:hover {
  color: var(--text);
  background: rgba(232, 121, 249, 0.12);
}

.modal__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.modal__body {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(20, 8, 16, 0.97);
    border-bottom: 1px solid var(--stroke-gold);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.22s ease;
  }

  .nav-menu.is-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(34, 211, 238, 0.12);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-menu__cta {
    margin: 0.75rem 0 0;
    padding-top: 0.5rem;
  }

  .nav-menu__cta .btn {
    width: 100%;
  }
}
