:root {
  --ink: #081936;
  --ink-soft: #4d607f;
  --ocean: #006fb9;
  --ocean-dark: #071b3d;
  --foam: #e8fbff;
  --sand: #ffe08a;
  --coral: #ff3f2e;
  --sun: #ffd447;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(4, 16, 42, 0.34);
  --hot: #ff7a1a;
  --cta: linear-gradient(135deg, #ff3427 0%, #ff6b18 55%, #ffd447 130%);
  --deep-glow: 0 18px 46px rgba(255, 63, 46, 0.42);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 212, 71, 0.34), transparent 20rem),
    radial-gradient(circle at 88% 14%, rgba(255, 63, 46, 0.28), transparent 22rem),
    radial-gradient(circle at 50% 56%, rgba(0, 111, 185, 0.32), transparent 36rem),
    linear-gradient(155deg, #061733 0%, #082b62 42%, #06152c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(30deg, rgba(255, 212, 71, 0.12) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 107, 74, 0.38);
  outline-offset: 4px;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #0b7edb 0%, #ff3f2e 58%, #ffd447 120%);
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  box-shadow: 0 16px 38px rgba(255, 63, 46, 0.28);
}

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

.brand strong {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.header-cta,
.primary-cta,
.secondary-cta,
.band-cta,
.mobile-sticky a {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 60;
  padding: 12px 18px;
  color: #071b3d;
  background: linear-gradient(135deg, #ffd447, #ff8a1d);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.36);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: 70px 0 44px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

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

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 8vw, 6.9rem);
  color: var(--white);
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.section-heading h2 {
  color: var(--white);
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.primary-cta,
.secondary-cta,
.band-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  white-space: normal;
}

.primary-cta {
  color: var(--white);
  background: var(--cta);
  box-shadow: var(--deep-glow);
  position: relative;
  overflow: hidden;
}

.primary-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  animation: ctaShine 2.9s ease-in-out infinite;
}

.secondary-cta {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.primary-cta:hover,
.secondary-cta:hover,
.header-cta:hover,
.band-cta:hover,
.mobile-sticky a:hover {
  transform: translateY(-2px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.trust-strip span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.trust-strip strong {
  display: block;
  color: var(--white);
}

.mobile-proof {
  display: none;
}

.hero-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 212, 71, 0.52), transparent 18rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 63, 46, 0.28)),
    linear-gradient(160deg, #0d77bf 0%, #ffd447 54%, #ff3f2e 100%);
  box-shadow: var(--shadow);
}

.ship-scene {
  position: absolute;
  inset: 28px 24px 160px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #bce8f1 0%, #fff4cf 58%, #0e7591 59%, #07516b 100%);
  box-shadow: inset 0 -36px 70px rgba(0, 83, 105, 0.12);
}

.ship-scene img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 53% 50%;
}

.sun {
  position: absolute;
  right: 42px;
  top: 42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff7be 0%, var(--sun) 62%, #ff9d4d 100%);
  box-shadow: 0 0 60px rgba(255, 200, 87, 0.72);
}

.cloud {
  position: absolute;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 999px;
  background: inherit;
}

.cloud::before {
  left: 18px;
  width: 38px;
  height: 38px;
}

.cloud::after {
  right: 18px;
  width: 30px;
  height: 30px;
}

.cloud-one {
  left: 44px;
  top: 88px;
  width: 112px;
}

.cloud-two {
  right: 134px;
  top: 172px;
  width: 82px;
  opacity: 0.7;
}

.ship {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: min(360px, 76%);
  height: 190px;
  transform: translateX(-50%);
  animation: floatShip 5s ease-in-out infinite;
}

.ship-top {
  position: absolute;
  left: 74px;
  top: 0;
  width: 190px;
  height: 72px;
  border-radius: 20px 20px 4px 4px;
  background: #f9f7ef;
  box-shadow: inset 0 -16px 0 rgba(0, 108, 134, 0.12);
}

.ship-top::before {
  content: "";
  position: absolute;
  left: 42px;
  top: -34px;
  width: 56px;
  height: 44px;
  border-radius: 14px 14px 0 0;
  background: var(--coral);
}

.ship-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 112px;
  border-radius: 30px 30px 82px 82px;
  clip-path: polygon(0 18%, 100% 0, 86% 100%, 16% 100%);
  background: linear-gradient(180deg, #ffffff 0 42%, var(--coral) 42% 58%, var(--ocean-dark) 58% 100%);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.16);
}

.ship-windows {
  position: absolute;
  left: 72px;
  right: 72px;
  top: 88px;
  height: 16px;
  background: repeating-linear-gradient(90deg, var(--ocean) 0 14px, transparent 14px 30px);
}

.wave {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.wave-one {
  bottom: 52px;
  animation: waveMove 7s linear infinite;
}

.wave-two {
  bottom: 16px;
  opacity: 0.55;
  animation: waveMove 9s linear infinite reverse;
}

.wave-three {
  bottom: -22px;
  opacity: 0.35;
}

.quote-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.quote-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #06245a;
  background: linear-gradient(135deg, #e8fbff, #ffe08a);
  font-weight: 800;
  font-size: 0.78rem;
}

.quote-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.quote-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.benefits,
.telegram-band {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.routes,
.faq {
  padding: 20px 0 96px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.route-card,
.benefit-item,
.faq details {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.route-card {
  min-height: 270px;
  padding: 24px;
  transition: transform 180ms ease, background 180ms ease;
}

.route-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 1);
}

.route-card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--coral);
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  font-weight: 800;
}

.route-card p,
.benefit-item p,
.benefit-panel p,
.faq p,
.telegram-band p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.benefits {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 212, 71, 0.32), transparent 18rem),
    linear-gradient(135deg, rgba(7, 27, 61, 0.98), rgba(0, 111, 185, 0.88));
}

.benefit-panel {
  padding: 36px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 200, 87, 0.36), transparent 16rem),
    rgba(255, 255, 255, 0.08);
}

.benefit-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.benefit-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.benefit-item strong {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--cta);
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
}

.benefit-item h3,
.benefit-item p {
  margin-bottom: 0;
}

.telegram-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 92px 0;
  padding: 38px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 212, 71, 0.48), transparent 16rem),
    radial-gradient(circle at 10% 90%, rgba(255, 63, 46, 0.32), transparent 18rem),
    linear-gradient(135deg, #071b3d, #0b4f9e));
}

.telegram-band::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 36px solid rgba(255, 255, 255, 0.08);
}

.telegram-band h2,
.telegram-band p,
.telegram-band a,
.telegram-band .eyebrow {
  position: relative;
  z-index: 1;
}

.telegram-band p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.band-cta {
  flex: 0 0 auto;
  color: #071b3d;
  background: linear-gradient(135deg, #ffd447, #ff8a1d);
  box-shadow: 0 14px 36px rgba(255, 212, 71, 0.26);
}

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

.faq details {
  padding: 20px 24px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-size: 1.4rem;
}

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

.faq p {
  margin: 14px 0 0;
}

.mobile-sticky {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

.delay-3 {
  animation-delay: 360ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatShip {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(0.7deg);
  }
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(60px);
  }
}

@keyframes ctaShine {
  0% {
    transform: translateX(0) rotate(18deg);
  }
  52%,
  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .benefits {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-card {
    min-height: 560px;
  }

  .trust-strip,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 212, 71, 0.34), transparent 16rem),
      radial-gradient(circle at 96% 18%, rgba(255, 63, 46, 0.3), transparent 17rem),
      linear-gradient(165deg, #061733 0%, #09336f 50%, #06152c 100%);
  }

  body::before {
    opacity: 0.18;
    background-size: 58px 58px;
  }

  .page-shell {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    overflow-x: clip;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-header {
    top: 8px;
    align-items: center;
    gap: 10px;
    margin: 8px 0 0;
    padding: 9px 10px;
    padding-right: 126px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(5, 19, 47, 0.72);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 1.08rem;
  }

  .brand strong {
    max-width: 172px;
    overflow: hidden;
    font-size: 0.94rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small,
  .nav-links {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    color: #071b3d;
    font-size: 0.84rem;
    box-shadow: 0 12px 28px rgba(255, 122, 26, 0.34);
  }

  .hero {
    gap: 18px;
    padding: 26px 0 20px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.69rem;
    letter-spacing: 0.13em;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2.08rem, 9.6vw, 2.48rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.86rem, 9vw, 2.7rem);
    line-height: 1;
  }

  .hero-lead {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-actions,
  .telegram-band {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    gap: 10px;
    margin: 20px 0 12px;
  }

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

  .primary-cta,
  .secondary-cta,
  .band-cta {
    min-height: 58px;
    padding: 0 18px;
    text-align: center;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .secondary-cta {
    min-height: 46px;
    background: rgba(255, 255, 255, 0.14);
  }

  .mobile-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 2px 0 6px;
  }

  .mobile-proof span {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .trust-strip,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    display: none;
  }

  .benefits,
  .telegram-band {
    padding: 20px;
    border-radius: 26px;
  }

  .hero-card {
    min-height: 342px;
    border-radius: 26px;
    box-shadow: 0 18px 44px rgba(4, 36, 55, 0.13);
  }

  .ship-scene {
    inset: 14px 14px 112px;
    border-radius: 22px;
  }

  .sun {
    right: 24px;
    top: 24px;
    width: 74px;
    height: 74px;
  }

  .cloud-one {
    left: 22px;
    top: 54px;
    width: 88px;
  }

  .cloud-two {
    display: none;
  }

  .ship {
    bottom: 38px;
    width: min(285px, 82%);
    height: 146px;
  }

  .ship-top {
    left: 58px;
    width: 150px;
    height: 58px;
  }

  .ship-body {
    height: 88px;
  }

  .ship-windows {
    left: 58px;
    right: 58px;
    top: 72px;
    height: 12px;
    background: repeating-linear-gradient(90deg, var(--ocean) 0 11px, transparent 11px 24px);
  }

  .quote-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .quote-label {
    margin-bottom: 8px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .quote-card h2 {
    margin-bottom: 8px;
    font-size: 1.52rem;
    line-height: 1.02;
  }

  .quote-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .routes,
  .faq {
    padding: 4px 0 58px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .route-card {
    min-height: auto;
    padding: 18px;
  }

  .route-card span {
    margin-bottom: 18px;
    font-size: 1.7rem;
  }

  .route-card h3 {
    margin-bottom: 8px;
  }

  .route-card p,
  .benefit-item p,
  .benefit-panel p,
  .faq p,
  .telegram-band p {
    line-height: 1.58;
  }

  .benefit-panel {
    padding: 24px;
  }

  .benefit-item {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .benefit-item strong {
    width: 44px;
    height: 44px;
  }

  .telegram-band {
    gap: 18px;
    margin: 58px 0;
    box-shadow: 0 18px 48px rgba(4, 36, 55, 0.16);
  }

  .telegram-band p {
    font-size: 0.96rem;
  }

  .faq details {
    padding: 18px;
    border-radius: 20px;
  }

  .faq summary {
    padding-right: 24px;
    line-height: 1.42;
  }

  .faq summary::after {
    margin-right: -22px;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky a {
    display: flex;
    min-height: 64px;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--cta);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--deep-glow);
  }

  .mobile-sticky span {
    font-size: 1rem;
    line-height: 1;
  }

  .mobile-sticky small {
    opacity: 0.82;
    font-size: 0.74rem;
    font-weight: 700;
  }
}
