@font-face {
  font-family: "Saira";
  src: url("./assets/fonts/Saira-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira";
  src: url("./assets/fonts/Saira-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saira";
  src: url("./assets/fonts/Saira-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #202020;
  --white: #ffffff;
  --mist: #f7f7f4;
  --paper: #efefeb;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(0, 0, 0, 0.1);
  --muted: #737373;
  --soft: rgba(255, 255, 255, 0.7);
  --sage: #8da399;
  --blush: #b99693;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  --content-side: clamp(14px, 3.8vw, 72px);
  --content-side-small: clamp(12px, 4vw, 18px);
  --admin-side-space: clamp(12px, 3.6vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Saira", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(245deg, rgba(141, 163, 153, 0.18), transparent 34%),
    #050505;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(141, 163, 153, 0.7);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 18px;
  right: clamp(16px, 4vw, 56px);
  left: clamp(16px, 4vw, 56px);
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(140%);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.76);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand img {
  width: 36px;
  height: 32px;
  filter: invert(1);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 40px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a,
.nav-download,
.store-button,
.icon-button {
  cursor: pointer;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-mobile-download {
  display: none;
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-weight: 600;
  padding: 11px 20px;
  justify-content: center;
  width: fit-content;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  position: relative;
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 210ms ease, opacity 180ms ease;
}

.nav-mobile-toggle span+span {
  margin-top: 0;
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -2px);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-download:hover {
  transform: translateY(-1px);
  background: var(--paper);
}


.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  min-height: 100svh;
  padding: 132px clamp(18px, 6vw, 88px) 76px;
  overflow: hidden;
  isolation: isolate;
}

.section-ornament {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.section-ornament-orb {
  top: -180px;
  right: -180px;
  width: min(520px, 48vw);
  opacity: 0.26;
  mix-blend-mode: screen;
  filter: blur(0.2px);
  animation: ornamentDrift 18s ease-in-out infinite;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.86)),
    linear-gradient(to bottom, transparent 72%, var(--black) 100%);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.ambient-shot {
  position: absolute;
  width: min(900px, 82vw);
  opacity: 0.38;
  border-radius: 42px;
  filter: grayscale(1) contrast(1.1);
  box-shadow: var(--shadow);
}

.ambient-shot-mobile {
  display: none;
}

.shot-one {
  top: 14%;
  right: -12%;
  transform: rotate(-6deg);
}

.shot-two {
  right: 18%;
  bottom: -7%;
  transform: rotate(5deg);
}

.ambient-body {
  position: absolute;
  width: clamp(90px, 12vw, 154px);
  opacity: 0.44;
  filter: grayscale(1);
  animation: floatBody 6s ease-in-out infinite;
}

.body-one {
  right: 18%;
  bottom: 10%;
}

.body-two {
  right: 6%;
  bottom: 16%;
  animation-delay: -2.2s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(4.4rem, 10vw, 10.6rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-word {
  display: block;
}

.hero-word-muted {
  color: rgba(255, 255, 255, 0.48);
}

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.5vw, 6.4rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-copy>p:not(.eyebrow) {
  max-width: 60ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-row-center {
  justify-content: center;
}

.store-button {
  display: grid;
  min-width: 184px;
  min-height: 64px;
  padding: 10px 20px;
  color: var(--white);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-button span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 500;
}

.store-button strong {
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.15;
}

.store-primary {
  color: var(--black);
  background: var(--white);
}

.store-primary span {
  color: rgba(0, 0, 0, 0.55);
}

.store-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
  background: var(--glass-strong);
}

.store-primary:hover {
  background: var(--paper);
}

.device-composition {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
}

.phone {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 10px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.phone-front {
  position: relative;
  z-index: 3;
  width: min(386px, 100%);
  min-height: 672px;
  padding: 18px;
}

.phone-back {
  position: absolute;
  z-index: 1;
  width: 330px;
  height: 584px;
  transform: translate(-116px, 34px) rotate(-10deg);
  opacity: 0.42;
}

.mini-screen,
.phone-visual {
  overflow: hidden;
  border-radius: 24px;
}

.mini-screen {
  height: 100%;
}

.mini-screen img,
.phone-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 48px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.phone-top img {
  margin-left: auto;
  width: 22px;
  height: 22px;
}

.phone-visual {
  position: relative;
  height: 210px;
  background: #ddd;
}

.phone-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 62%);
}

.phone-visual img {
  transition: opacity 220ms ease;
}

.phone-visual span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 600;
  line-height: 1.25;
}

.category-row {
  display: flex;
  gap: 8px;
  margin: 18px 0;
  overflow: hidden;
}

.category-row span {
  flex: 0 0 auto;
  padding: 8px 14px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.category-row span:first-child {
  color: var(--white);
  background: var(--black);
}

.exercise-list {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 188px;
  padding-block: 8px;
}

.exercise-list div {
  display: grid;
  grid-template-columns: 74px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  min-height: 94px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--dark-line);
  border-radius: 22px;
}

.exercise-list img {
  grid-row: span 2;
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 18px;
}

.exercise-list p {
  margin: 0;
  font-weight: 600;
}

.exercise-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.metric-card {
  position: absolute;
  z-index: 4;
  min-width: 144px;
  padding: 12px 16px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(8, 10, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

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

.metric-card span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.metric-card strong {
  font-size: 1.58rem;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.52);
}

.metric-left {
  top: 18%;
  left: 2%;
}

.metric-right {
  right: 0;
  bottom: 28%;
}

.ticker {
  overflow: hidden;
  padding: 12px 0;
  color: var(--black);
  background: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 11vw, 150px) clamp(18px, 6vw, 88px);
}

.section-kicker {
  width: min(1040px, 100%);
  margin-bottom: 34px;
}

.bento-section {
  background: var(--black);
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) repeat(2, minmax(240px, 0.9fr));
  grid-auto-rows: minmax(236px, auto);
  gap: 18px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 236px;
  padding: 26px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 6%, rgba(0, 0, 0, 0.12), transparent 28%),
    var(--mist);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bento-card>img:not(.bento-figure) {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
}

.bento-card>div>img {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
}

.bento-card p {
  max-width: 36ch;
  margin: 12px 0 0;
  color: var(--muted);
}

.bento-large {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-row: span 2;
  min-height: 490px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 76%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 44%),
    #111;
}

.bento-large::after {
  position: absolute;
  right: -18%;
  bottom: -26%;
  width: 78%;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.bento-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

.bento-large h3 {
  max-width: 14ch;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.bento-large p {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.68);
}

.bento-large img:not(.bento-figure) {
  filter: invert(1);
}

.bento-figure {
  position: absolute;
  right: -2%;
  bottom: -7%;
  z-index: 1;
  width: min(390px, 66%);
  transform: rotate(-4deg);
  filter: grayscale(1);
}

.bento-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
  max-width: 52%;
}

.bento-metrics span,
.filter-stack span,
.cue-list span,
.saved-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.bento-metrics span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.dark-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 52%),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.dark-card img,
.dark-card>div>img {
  filter: invert(1);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.filter-stack,
.cue-list,
.saved-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.filter-stack span {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.bento-search>div>img {
  width: 34px;
  height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: invert(1);
}

.bento-search h3 {
  margin-bottom: 8px;
}

.bento-search p {
  margin-top: 8px;
}

.bento-search .filter-stack {
  margin-top: 14px;
  gap: 7px;
}

.bento-save>div>img {
  width: 34px;
  height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: none !important;
  opacity: 1;
}

.cue-list {
  display: grid;
  grid-template-columns: 1fr;
}

.cue-list span {
  justify-content: space-between;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.image-card {
  padding: 0;
  background: #111;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.42;
  transform: scale(1.03);
}

.image-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18), transparent);
}

.image-card-label {
  position: absolute;
  right: 20px;
  bottom: 34px;
  left: 20px;
  z-index: 1;
  color: var(--white);
}

.image-card-label span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.image-card-label strong {
  display: block;
  max-width: 15ch;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.video-focus {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: grid;
  width: 108px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.video-focus::before,
.video-focus::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.video-focus::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.video-focus::after {
  inset: -28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-focus span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--white);
}

.video-meta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 52%;
}

.video-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.bento-save {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 120%, rgba(255, 255, 255, 0.22), transparent 42%),
    #171717;
}

.bento-save img {
  filter: invert(1);
}

.bento-save p {
  color: rgba(255, 255, 255, 0.68);
}

.saved-strip span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.steps-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.82), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(0, 0, 0, 0.06), transparent 24%),
    linear-gradient(180deg, #f8f8f4 0%, #f2f2ec 100%);
}

.section-ornament-mesh {
  top: -80px;
  right: -120px;
  width: min(880px, 84vw);
  opacity: 0.34;
  mix-blend-mode: soft-light;
  animation: ornamentDrift 22s ease-in-out infinite reverse;
}

.steps-section .eyebrow {
  color: var(--muted);
}

.steps-list {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.steps-list article {
  display: grid;
  grid-template-columns: 88px 0.7fr 1fr;
  align-items: center;
  gap: 22px;
  min-height: 128px;
  padding: 24px 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.08);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.steps-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #131313;
  font-size: 1.14rem;
  font-weight: 700;
  background: linear-gradient(145deg, #ffffff, #ecece7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.steps-list h3 {
  margin: 0;
  font-size: clamp(1.24rem, 2.2vw, 1.62rem);
  line-height: 1.05;
  grid-column: 2;
}

.steps-list p {
  margin: 0;
  color: #5f5f5f;
  max-width: 40ch;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.5;
  grid-column: 3;
}

.steps-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 20px 44px rgba(10, 10, 10, 0.12);
}

.preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.preview-panel {
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  min-height: clamp(360px, 42vw, 540px);
}

.preview-panel h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.94;
  text-wrap: balance;
}

.preview-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.preview-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
}

.icon-button span {
  font-size: 2rem;
  line-height: 1;
}

.preview-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  transform: rotate(-2deg);
  overflow: visible;
}

.preview-wall img {
  --preview-offset-y: 0px;
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
  border: 0;
  border-radius: 28px;
  filter: grayscale(1) contrast(1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(var(--preview-offset-y)) scale(1);
  transform-origin: center center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  will-change: transform;
  transition:
    transform 780ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 560ms ease,
    filter 520ms ease;
}

.preview-wall img:nth-child(2n) {
  --preview-offset-y: 34px;
}

.preview-wall img:hover {
  transform: translateY(var(--preview-offset-y)) scale(1.1);
  filter: grayscale(0.8) contrast(1.04);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.44);
}

/* Force reliable hover behavior for interface preview images */
.preview-section .preview-wall img {
  transition:
    transform 780ms cubic-bezier(0.2, 0.7, 0.2, 1) !important,
    box-shadow 560ms ease !important,
    filter 520ms ease !important;
}

.preview-section .preview-wall img:hover,
.preview-section .preview-wall img:focus-visible {
  z-index: 10;
  transform: translateY(var(--preview-offset-y)) scale(1.12) !important;
  filter: grayscale(0.72) contrast(1.06) !important;
  box-shadow: 0 38px 94px rgba(0, 0, 0, 0.5) !important;
}

.muscle-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.1);
}

.muscle-cloud div {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 22px;
  background: var(--paper);
}

.muscle-cloud img {
  width: min(112px, 78%);
  height: 112px;
  object-fit: contain;
  transition: opacity 320ms ease;
  transform-origin: center;
}

.muscle-cloud span {
  margin-top: 14px;
  font-weight: 600;
}

.muscle-cloud div:hover img {
  opacity: 0.98;
}

@keyframes musclePulseSpin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.14);
  }

  100% {
    transform: scale(1);
  }
}

.muscle-cloud div.is-muscle-pulse img {
  animation: musclePulseSpin 3600ms cubic-bezier(0.25, 0.7, 0.2, 1) both;
}

.muscle-cloud.is-muscle-paused div.is-muscle-pulse img {
  animation-play-state: paused;
}

.download-section {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 6vw, 88px);
}

.download-shell {
  position: relative;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 88px);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.download-shell h2 {
  max-width: 16ch;
  margin: 0 auto;
}

.download-shell p:not(.eyebrow) {
  max-width: 58ch;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  display: block;
  max-width: min(72ch, 100%);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.45;
}

.js-motion .site-footer p.motion-reveal {
  opacity: 1;
  transform: none;
}

.document-page,
.support-page {
  min-height: 100svh;
  padding: 136px clamp(18px, 6vw, 88px) 72px;
}

.support-page>section+section {
  margin-top: 26px;
}

.document-hero,
.support-hero {
  position: relative;
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.document-hero {
  opacity: 0;
  animation: heroIntroRise 980ms cubic-bezier(0.2, 0.7, 0.2, 1) 120ms forwards;
}

.document-hero::after,
.support-hero::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: rgba(141, 163, 153, 0.18);
  border-radius: 999px;
  filter: blur(70px);
}

.document-hero h1,
.support-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8.8rem);
  line-height: 0.86;
}

.document-hero p:not(.eyebrow),
.support-hero p:not(.eyebrow) {
  max-width: 66ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.document-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  color: var(--ink);
  background: var(--mist);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.document-shell.is-loaded {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.document-shell h2:first-child {
  display: none;
}

.document-shell h2,
.document-shell h3,
.document-shell h4 {
  color: var(--ink);
  letter-spacing: 0;
}

.document-shell h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.document-shell h3 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.document-shell h4 {
  margin: 24px 0 8px;
  font-size: 1.1rem;
}

.document-shell p,
.document-shell li {
  color: #3f3f3f;
}

.document-shell p {
  margin: 0 0 14px;
}

.document-shell ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.document-shell li {
  margin: 8px 0;
}

.document-loading,
.document-error {
  margin: 0;
}

.support-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: center;
}

.support-form-section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.support-form-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(22px, 3.2vw, 34px);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 28, 42, 0.26);
  border-radius: 38px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px) saturate(140%);
}

.support-form-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: inherit;
}

.support-form-panel::after {
  position: absolute;
  top: 34px;
  right: 54px;
  width: 190px;
  height: 150px;
  content: "";
  opacity: 0.32;
  background:
    linear-gradient(135deg, transparent 42%, rgba(0, 0, 0, 0.08) 43% 48%, transparent 49%),
    linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, 0.06) 49% 53%, transparent 54%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  clip-path: polygon(4% 22%, 96% 0, 72% 96%);
  filter: blur(0.2px);
}

.support-form-heading {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

.support-form-heading .eyebrow {
  color: #8290a4;
}

.support-form-heading h1 {
  max-width: none;
  margin: 0;
  color: #07101d;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
}

.support-form-heading h1 span {
  color: #93a0b2;
}

.support-form-heading p:not(.eyebrow) {
  max-width: 58ch;
  margin: 12px auto 0;
  color: #6d7582;
}

.support-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 16px;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-group span {
  color: #8796aa;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-group input,
.field-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: #08111e;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(127, 145, 166, 0.22);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-group textarea {
  min-height: 100px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(8, 17, 30, 0.34);
  box-shadow: 0 0 0 4px rgba(141, 163, 153, 0.16);
}

.support-submit {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 188px;
  min-height: 48px;
  margin: 18px auto 0;
  color: var(--white);
  background: #07101d;
  border: 1px solid rgba(7, 16, 29, 0.8);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(7, 16, 29, 0.24);
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.support-submit:hover {
  transform: translateY(-2px);
  background: #111b2a;
}

.support-form-note {
  position: relative;
  z-index: 1;
  max-width: 54ch;
  min-height: 24px;
  margin: 10px auto 0;
  color: #788599;
  text-align: center;
}

@media (min-width: 1024px) {
  .support-page {
    padding-top: 112px;
    padding-bottom: 44px;
  }
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.support-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.support-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}

.support-modal-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 44px);
  color: var(--ink);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 34px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.44);
  transform: translateY(14px) scale(0.98);
  transition: transform 200ms ease;
}

.support-modal.is-open .support-modal-dialog {
  transform: translateY(0) scale(1);
}

.support-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #07101d;
  background: rgba(7, 16, 29, 0.06);
  border: 1px solid rgba(7, 16, 29, 0.08);
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.support-modal-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--white);
  background: #07101d;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(7, 16, 29, 0.24);
  font-size: 2rem;
  font-weight: 600;
}

.support-modal .eyebrow {
  color: #8290a4;
}

.support-modal h2 {
  margin: 0;
  color: #07101d;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.support-modal p:not(.eyebrow) {
  max-width: 40ch;
  margin: 16px auto 0;
  color: #687386;
}

.support-modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.support-modal-actions .support-submit {
  width: auto;
  min-width: 150px;
  margin: 0;
}

.support-modal-actions a {
  color: #07101d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
}

.support-card img {
  width: 44px;
  height: 40px;
  margin-bottom: 36px;
}

.support-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

.support-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.support-grid,
.faq-section {
  max-width: 1180px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-grid article,
.faq-section {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.support-grid span {
  display: block;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.54);
  font-weight: 600;
}

.support-grid h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.support-grid p,
.faq-list p {
  color: rgba(255, 255, 255, 0.7);
}

.support-grid a,
.faq-list a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-section {
  margin-top: 0;
}

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

.faq-list details {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 420ms ease, background 420ms ease;
}

.faq-list details:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding-right: 28px;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  content: "+";
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1;
  transition: opacity 420ms ease;
}

.faq-list details[open] summary::after {
  opacity: 0.85;
}

.faq-list details.is-hover-open summary::after {
  opacity: 0.85;
}

.faq-list p {
  display: block !important;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 520ms cubic-bezier(0.22, 0.7, 0.18, 1),
    opacity 420ms ease,
    margin-top 460ms ease;
}

.faq-list details[open] p {
  margin-top: 12px;
  max-height: 260px;
  opacity: 1;
}

.faq-list details.is-hover-open p {
  margin-top: 12px;
  max-height: 260px;
  opacity: 1;
}

.faq-list details.is-opening p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
}

.faq-list details.is-closing p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
}

@keyframes floatBody {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

@keyframes ambientFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes ornamentDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 10px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroIntroRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.99);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes metricOrbit {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  20% {
    transform: translate3d(2px, -3px, 0) rotate(-0.45deg);
  }

  40% {
    transform: translate3d(0, -7px, 0) rotate(0.2deg);
  }

  60% {
    transform: translate3d(-2px, -4px, 0) rotate(0.5deg);
  }

  80% {
    transform: translate3d(-1px, -1px, 0) rotate(-0.2deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {

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

@media (max-width: 1060px) {

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

  .device-composition {
    min-height: 630px;
  }

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

  .bento-large {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-download {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 18px 58px;
  }

  h1 {
    max-width: 7ch;
    font-size: clamp(3.4rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 4.3rem);
  }

  .hero-copy>p:not(.eyebrow) {
    max-width: 31ch;
  }

  .hero-copy .eyebrow {
    max-width: 30ch;
  }

  .store-button {
    width: min(100%, 320px);
  }

  .device-composition {
    min-height: 570px;
    margin-top: 22px;
  }

  .phone-front {
    width: min(344px, 100%);
    min-height: 586px;
    border-width: 8px;
    border-radius: 34px;
  }

  .phone-back {
    width: 270px;
    height: 500px;
    transform: translate(-76px, 28px) rotate(-10deg);
  }

  .metric-card {
    display: none;
  }

  .bento-grid,
  .steps-list article,
  .preview-wall {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: auto;
    min-height: 420px;
  }

  .bento-figure {
    width: min(330px, 72%);
  }

  .bento-metrics {
    max-width: 100%;
    padding-right: 36%;
  }

  .image-card img {
    min-height: 300px;
  }

  .steps-list article {
    align-items: start;
    gap: 8px;
  }

  .preview-wall {
    transform: none;
  }

  .preview-wall img:nth-child(2n) {
    --preview-offset-y: 0px;
  }

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

  .muscle-cloud div {
    min-height: 164px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .support-form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 244px);
  }

  .support-form-heading {
    text-align: left;
  }

  .support-form-heading p:not(.eyebrow) {
    margin-inline: 0;
    max-width: 32ch;
    overflow-wrap: anywhere;
  }

  .document-page,
  .support-page {
    padding-top: 112px;
    padding-inline: 12px;
  }

  .support-form-section {
    max-width: 280px;
  }

  .document-hero,
  .support-hero,
  .support-form-panel,
  .document-shell,
  .support-grid article,
  .faq-section {
    padding: 18px;
    border-radius: 28px;
  }

  .document-hero *,
  .support-hero *,
  .support-form-panel *,
  .document-shell *,
  .support-card * {
    min-width: 0;
    max-width: 100%;
  }

  .document-hero h1,
  .support-hero h1 {
    max-width: 7ch;
    font-size: clamp(3rem, 13vw, 4.1rem);
  }

  .document-hero p:not(.eyebrow),
  .support-hero p:not(.eyebrow) {
    max-width: 28ch;
  }

  .support-form-heading h1 {
    font-size: clamp(2.55rem, 12vw, 3rem);
  }

  .support-form-heading h1 span {
    display: block;
  }

  .support-form-heading p:not(.eyebrow) {
    max-width: 27ch;
  }

  .field-group input,
  .field-group textarea {
    min-height: 54px;
    padding: 14px 16px;
  }

  .support-submit {
    width: 100%;
    min-width: 0;
  }

  .document-shell p,
  .document-shell li {
    max-width: 31ch;
    overflow-wrap: anywhere;
  }

  .document-shell ul {
    max-width: 31ch;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 8px;
    letter-spacing: 0.08em;
  }

  .brand img {
    width: 31px;
    height: 28px;
  }

  .hero {
    padding-inline: 16px;
  }

  .document-page,
  .support-page {
    padding-inline: 12px;
  }

  .document-hero,
  .support-hero,
  .document-shell {
    overflow: hidden;
  }

  .document-hero,
  .support-hero,
  .support-form-panel,
  .document-shell,
  .support-grid article,
  .faq-section {
    padding: 18px;
  }

  .document-shell p,
  .document-shell li {
    font-size: 0.95rem;
    line-height: 1.62;
    max-width: 29ch;
    overflow-wrap: anywhere;
  }

  .document-shell ul {
    max-width: 29ch;
  }

  .document-hero h1,
  .support-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.45rem);
  }

  .support-page .store-button {
    width: 100%;
    min-width: 0;
  }

  .support-form-panel {
    border-radius: 28px;
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .support-form-panel::after {
    right: -30px;
    opacity: 0.18;
  }

  .support-form-heading h1 {
    font-size: clamp(2.55rem, 12vw, 3rem);
  }

  .support-submit {
    width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 3.6rem);
  }

  .phone-front {
    padding: 14px;
  }
}

.admin-page {
  position: relative;
  min-height: 100svh;
  padding: 102px 0 40px;
}

.admin-page[hidden],
.admin-login-screen[hidden],
.admin-wrap[hidden] {
  display: none !important;
}

body.admin-route .site-header {
  display: none;
}

body.admin-route .site-footer {
  display: none !important;
}

html.boot-admin main,
html.boot-admin .site-header,
html.boot-admin .site-footer {
  display: none !important;
}

.admin-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 8%, rgba(141, 163, 153, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(185, 150, 147, 0.22), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(150deg, #050505, #0b1013 52%, #08080a);
}

.admin-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 0 clamp(10px, 2.4vw, 26px);
}

.admin-login-screen {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 110px);
  padding: 0 clamp(10px, 3vw, 18px);
}

.admin-login-card {
  width: min(460px, 100%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), transparent 18%),
    rgba(9, 12, 15, 0.88);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.admin-login-card h2 {
  margin: 6px 0 16px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
}

.admin-login-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.admin-login-field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.admin-login-field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

.admin-login-btn {
  width: fit-content;
  display: block;
  min-height: 40px;
  margin: 6px auto 0;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  color: #0f1918;
  background: linear-gradient(145deg, #f4f8f6, #d5e2dc);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-login-note {
  min-height: 18px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.admin-local-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 10px clamp(10px, 2.4vw, 26px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%),
    rgba(8, 11, 13, 0.95);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px) saturate(130%);
}

.admin-local-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.9);
}

.admin-local-brand img {
  width: 32px;
  height: 30px;
  filter: invert(1);
}

.admin-logout-btn {
  min-height: 38px;
  padding: 8px 14px;
  color: #ffe9e7;
  background: rgba(178, 52, 52, 0.18);
  border: 1px solid rgba(255, 170, 170, 0.42);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease;
}

.admin-logout-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.admin-table-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 18%),
    rgba(9, 12, 15, 0.78);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px) saturate(120%);
  overflow: hidden;
}

.admin-refresh {
  min-height: 42px;
  padding: 10px 18px;
  color: #0c1715;
  background: linear-gradient(145deg, #f4f8f6, #d5e2dc);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(141, 163, 153, 0.24);
  transition: transform 160ms ease, filter 160ms ease;
}

.admin-refresh:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.04);
}

.admin-table-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.admin-table-head .eyebrow {
  margin: 0;
  opacity: 0.84;
}

.admin-head-left {
  display: grid;
  gap: 8px;
  width: min(620px, 100%);
}

.admin-search-wrap {
  position: relative;
}

.admin-search-icon {
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.admin-search-input {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px 9px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

.admin-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.admin-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f1918;
  background: linear-gradient(145deg, #f4f8f6, #d5e2dc);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(141, 163, 153, 0.24);
  transition: transform 160ms ease, filter 160ms ease;
}

.admin-icon-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.admin-table-shell {
  overflow: auto;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
}

.admin-table th,
.admin-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.admin-table th:first-child,
.admin-table td:first-child {
  width: 66px;
  text-align: center;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
  width: 150px;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3) {
  width: 220px;
}

.admin-table th:nth-child(4),
.admin-table td:nth-child(4) {
  width: 170px;
}

.admin-table th:last-child,
.admin-table td:last-child {
  width: 86px;
  text-align: center;
}

.admin-table th:nth-last-child(2),
.admin-table td:nth-last-child(2) {
  width: 86px;
  text-align: center;
}

.admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: rgba(255, 255, 255, 0.83);
  background: rgba(8, 10, 12, 0.95);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-table td {
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.5;
}

.admin-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.012);
}

.admin-table tbody tr:hover td {
  background: rgba(141, 163, 153, 0.09);
}

.admin-table td:nth-child(3) {
  color: #cae6db;
  font-weight: 600;
}

.admin-table td:nth-child(5) {
  width: 280px;
  max-width: 280px;
}

.admin-mark-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #9dc6b3;
  cursor: pointer;
}

.admin-email-link {
  color: #cae6db;
  text-decoration: none;
}

.admin-email-link:hover {
  color: #e4f7ef;
}

.admin-email-link.is-disabled {
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  text-decoration: none;
}

.admin-message-preview {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-row-delete {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffdede;
  background: rgba(178, 52, 52, 0.2);
  border: 1px solid rgba(255, 170, 170, 0.46);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease;
}

.admin-row-delete:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.admin-click-row {
  cursor: pointer;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.admin-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(3px);
}

.admin-modal-dialog {
  position: relative;
  width: min(860px, calc(100% - 24px));
  max-height: 90svh;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 18%),
    rgba(9, 12, 15, 0.95);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.admin-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.admin-modal h2 {
  margin: 4px 0 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
}

.admin-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-modal-grid div {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-modal-grid span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-modal-grid strong {
  color: rgba(255, 255, 255, 0.95);
}

.admin-modal-message-block,
.admin-modal-note-block {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.admin-modal-message-block span,
.admin-modal-note-block span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-modal-message-block textarea,
.admin-modal-note-block textarea {
  width: 100%;
  min-height: 118px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
  resize: vertical;
}

.admin-modal-note-block textarea {
  min-height: 132px;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.admin-save-btn {
  min-height: 40px;
  padding: 10px 16px;
  color: #0e1a18;
  background: linear-gradient(145deg, #f4f8f6, #d5e2dc);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 140ms ease, filter 140ms ease;
}

.admin-save-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.admin-delete-btn {
  min-height: 40px;
  min-width: 44px;
  padding: 8px 12px;
  color: #ffe9e7;
  background: rgba(178, 52, 52, 0.2);
  border: 1px solid rgba(255, 170, 170, 0.42);
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 140ms ease, filter 140ms ease;
}

.admin-delete-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}


@media (max-width: 760px) {
  .admin-page {
    padding-top: 96px;
    padding-right: 0;
    padding-left: 0;
  }

  .admin-local-header {
    min-height: 64px;
    padding: 10px 10px;
  }

  .admin-local-brand {
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .admin-local-brand img {
    width: 28px;
    height: 26px;
  }

  .admin-logout-btn {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .admin-refresh {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .admin-wrap {
    padding: 0 8px;
  }

  .admin-login-screen {
    min-height: calc(100svh - 96px);
    padding: 0 10px;
  }

  .admin-login-card {
    padding: 16px;
    border-radius: 14px;
  }

  .admin-table-head {
    align-items: start;
    flex-direction: column;
    padding: 12px 12px 10px;
  }

  .admin-head-left {
    width: 100%;
  }

  .admin-table-card {
    border-radius: 16px;
  }

  .admin-table-shell {
    border-radius: 0 0 16px 16px;
  }

  .admin-table {
    min-width: 720px;
  }

  .admin-modal-dialog {
    width: calc(100% - 14px);
    padding: 14px;
    border-radius: 14px;
  }

  .admin-modal-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================
   Admin Aesthetic Refresh
   ========================= */

.admin-page {
  font-family: "Plus Jakarta Sans", "Segoe UI", "Inter", sans-serif;
  padding-top: 96px;
  --admin-side-space: clamp(42px, 7vw, 110px);
}

.admin-backdrop {
  background:
    radial-gradient(circle at 12% 10%, rgba(130, 208, 191, 0.2), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(156, 188, 255, 0.16), transparent 28%),
    radial-gradient(circle at 52% 90%, rgba(255, 255, 255, 0.07), transparent 42%),
    linear-gradient(150deg, #040506, #071018 54%, #05070a);
}

.admin-local-header {
  min-height: 68px;
  padding: 10px var(--admin-side-space);
  border-bottom: 1px solid rgba(175, 225, 213, 0.2);
  background:
    linear-gradient(120deg, rgba(177, 235, 219, 0.13), transparent 36%),
    rgba(7, 12, 16, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px) saturate(130%);
}

.admin-local-brand {
  letter-spacing: 0.18em;
  color: rgba(234, 249, 243, 0.95);
}

.admin-logout-btn {
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  border-color: rgba(255, 166, 166, 0.5);
  background: linear-gradient(160deg, rgba(212, 74, 74, 0.38), rgba(153, 40, 40, 0.32));
  box-shadow: 0 8px 20px rgba(148, 42, 42, 0.25);
}

.admin-wrap {
  width: 100%;
  gap: 18px;
  padding: 0 var(--admin-side-space);
}

.admin-login-card {
  width: min(470px, 100%);
  padding: 22px;
  border: 1px solid rgba(182, 236, 222, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(168deg, rgba(162, 224, 205, 0.13), transparent 34%),
    rgba(9, 14, 19, 0.86);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.admin-login-field input,
.admin-search-input,
.admin-modal-message-block textarea,
.admin-modal-note-block textarea {
  border-color: rgba(183, 231, 219, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.admin-login-field input:focus,
.admin-search-input:focus,
.admin-modal-note-block textarea:focus {
  outline: none;
  border-color: rgba(153, 224, 205, 0.55);
  box-shadow: 0 0 0 3px rgba(128, 208, 188, 0.18);
}

.admin-login-btn,
.admin-icon-btn,
.admin-save-btn {
  border-radius: 999px;
  color: #0b1614;
  background: linear-gradient(145deg, #f2faf7, #d1e8df);
}

.admin-table-card {
  border: 1px solid rgba(181, 234, 221, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(175, 233, 217, 0.12), transparent 26%),
    rgba(9, 14, 19, 0.78);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.admin-table-head {
  padding: 14px 16px 12px;
  border-bottom-color: rgba(176, 232, 218, 0.16);
  background:
    linear-gradient(180deg, rgba(171, 233, 216, 0.12), rgba(255, 255, 255, 0.01));
}

.admin-table th {
  background: rgba(8, 14, 18, 0.96);
  color: rgba(222, 246, 238, 0.9);
  letter-spacing: 0.12em;
}

.admin-table td {
  border-bottom-color: rgba(175, 231, 217, 0.1);
}

.admin-table tbody tr:nth-child(odd) td {
  background: rgba(159, 227, 209, 0.02);
}

.admin-table tbody tr:hover td {
  background: rgba(130, 207, 189, 0.11);
}

.admin-email-link {
  color: #bfeedd;
}

.admin-email-link:hover {
  color: #e6fff5;
}

.admin-row-delete,
.admin-delete-btn {
  border-color: rgba(255, 176, 176, 0.52);
  background: linear-gradient(160deg, rgba(182, 62, 62, 0.32), rgba(132, 34, 34, 0.28));
}

.admin-modal-backdrop {
  background: rgba(2, 6, 10, 0.74);
  backdrop-filter: blur(5px);
}

.admin-modal-dialog {
  border: 1px solid rgba(186, 234, 222, 0.18);
  background:
    linear-gradient(160deg, rgba(171, 233, 216, 0.12), transparent 26%),
    rgba(9, 14, 19, 0.95);
  box-shadow:
    0 30px 88px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

@media (max-width: 760px) {
  .admin-page {
    --admin-side-space: 30px;
  }

  .admin-local-header {
    padding: 10px var(--admin-side-space);
  }

  .admin-wrap {
    padding: 0 var(--admin-side-space);
  }

  .admin-login-card {
    padding: 16px;
    border-radius: 16px;
  }
}

.js-motion .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition:
    opacity 820ms cubic-bezier(0.2, 0.75, 0.18, 1) var(--motion-delay, 0ms),
    transform 980ms cubic-bezier(0.2, 0.75, 0.18, 1) var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.js-motion .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-copy {
  opacity: 0;
  animation:
    heroIntroRise 1.1s cubic-bezier(0.18, 0.72, 0.2, 1) 120ms forwards,
    ambientFloat 14s ease-in-out 1.35s infinite;
}

.device-composition {
  opacity: 0;
  animation:
    heroIntroRise 1.2s cubic-bezier(0.18, 0.72, 0.2, 1) 260ms forwards,
    ambientFloat 14s ease-in-out 1.55s infinite;
}

.download-shell,
.support-form-panel {
  animation: ambientFloat 14s ease-in-out infinite;
}

.metric-left,
.metric-right {
  transform-origin: center;
  animation: metricOrbit 3.1s linear infinite;
  will-change: transform;
}

.metric-right {
  animation-delay: -1.6s;
}

/* =========================
   Responsive Scale System
   ========================= */

.hero,
.section,
.document-page,
.support-page,
.site-footer,
.ticker,
.download-section,
.admin-wrap,
.admin-login-screen,
.admin-local-header {
  padding-inline: var(--content-side);
}

@media (max-width: 359px) {
  :root {
    --content-side: var(--content-side-small);
    --admin-side-space: 12px;
  }

  html {
    font-size: 15px;
  }

  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
    grid-template-columns: auto auto auto;
    gap: 10px;
    min-height: 56px;
    padding: 8px 10px;
  }

  .brand img {
    width: 30px;
    height: 26px;
  }

  .brand {
    gap: 6px;
    letter-spacing: 0.08em;
    min-height: 34px;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .hero-copy>p:not(.eyebrow) {
    max-width: 30ch;
  }

  h1 {
    max-width: 6.5ch;
    font-size: clamp(2.48rem, 15vw, 2.95rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .store-button {
    min-width: 0;
    width: min(100%, 248px);
    min-height: 52px;
    padding: 8px 14px;
    border-radius: 14px;
    text-align: center;
    justify-items: center;
  }

  .store-button strong {
    font-size: 0.96rem;
  }

  .device-composition {
    min-height: 450px;
  }

  .phone-back {
    width: 188px;
    height: 388px;
    transform: translate(-56px, 16px) rotate(-9deg);
  }

  .phone-front {
    width: min(292px, 100%);
    min-height: 470px;
    border-radius: 26px;
    padding: 11px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 46px;
  }

  .section-kicker {
    margin-bottom: 22px;
  }

  .bento-grid,
  .preview-section,
  .admin-modal-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    gap: 12px;
  }

  .bento-large {
    min-height: 300px;
  }

  .steps-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 15px;
  }

  .preview-wall {
    transform: none;
  }

  .preview-wall img:nth-child(2n) {
    --preview-offset-y: 0px;
  }

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

  .support-grid,
  .faq-section,
  .support-form-grid {
    grid-template-columns: 1fr;
  }

  .support-hero,
  .support-form-section {
    width: 100%;
  }

  .admin-wrap {
    gap: 12px;
    padding-inline: 0;
  }

  .admin-local-header {
    padding-inline: 10px;
  }

  .admin-table {
    min-width: 620px;
  }

  .admin-login-screen {
    padding: 0 10px;
    min-height: calc(100svh - 84px);
  }

  .admin-login-card {
    width: min(100%, 360px);
    padding: 14px;
  }

  .admin-modal-dialog {
    width: calc(100% - 14px);
    padding: 13px;
    border-radius: 12px;
    max-height: 92svh;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  :root {
    --content-side: clamp(16px, 4vw, 22px);
    --admin-side-space: 16px;
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    grid-template-columns: auto auto auto;
    padding: 9px 10px;
    min-height: 60px;
  }

  .brand {
    min-height: 40px;
  }

  .brand img {
    width: 32px;
    height: 28px;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 44px;
  }

  .hero-copy>p:not(.eyebrow) {
    max-width: 35ch;
  }

  .store-row {
    gap: 10px;
    justify-content: center;
  }

  .store-button {
    width: min(100%, 252px);
    min-height: 54px;
    padding: 8px 14px;
    border-radius: 14px;
    text-align: center;
    justify-items: center;
  }

  .store-button strong {
    font-size: 1rem;
  }

  .device-composition {
    min-height: 500px;
  }

  .metric-card {
    display: none;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .bento-grid,
  .steps-list article,
  .preview-wall {
    grid-template-columns: 1fr;
  }

  .steps-list article {
    align-items: start;
    gap: 10px;
  }

  .admin-table {
    min-width: 700px;
  }

  .admin-table th,
  .admin-table td {
    padding: 12px 10px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --content-side: clamp(22px, 4.8vw, 34px);
  }

  .site-header {
    top: 14px;
    right: 14px;
    left: 14px;
    min-height: 62px;
  }

  .nav-links {
    display: flex;
    gap: 12px;
    font-size: 0.84rem;
  }

  .nav-download {
    display: inline-flex;
    min-height: 42px;
    padding: 8px 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.95fr);
    gap: clamp(24px, 6vw, 54px);
    min-height: 100svh;
    padding-top: 122px;
  }

  .hero-copy {
    width: 100%;
  }

  .device-composition {
    min-height: 600px;
  }

  .section {
    padding-top: clamp(62px, 8vw, 94px);
    padding-bottom: clamp(68px, 10vw, 96px);
  }

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

  .bento-large {
    grid-column: span 2;
  }

  .steps-list article {
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 18px 20px;
  }

  .preview-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  }

  .muscle-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .download-shell {
    padding: clamp(38px, 7vw, 74px);
  }

  .store-button {
    min-width: 156px;
    min-height: 56px;
    padding: 9px 16px;
    border-radius: 15px;
    text-align: center;
    justify-items: center;
  }

  .store-button strong {
    font-size: 1.02rem;
  }

  .site-footer {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
  }

  .admin-wrap {
    --admin-side-space: 24px;
  }

  .admin-table {
    min-width: 860px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --content-side: clamp(28px, 4.6vw, 56px);
    --admin-side-space: 28px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
    gap: clamp(34px, 5vw, 70px);
  }

  .device-composition {
    transform-origin: center top;
  }

  .bento-grid {
    grid-template-columns: minmax(300px, 1.08fr) repeat(2, minmax(220px, 0.88fr));
  }

  .preview-panel {
    min-height: 0;
  }

  .admin-wrap {
    width: min(1260px, 100%);
    gap: 16px;
  }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  :root {
    --content-side: clamp(34px, 5vw, 74px);
    --admin-side-space: clamp(36px, 4vw, 72px);
  }

  .site-header {
    right: var(--content-side);
    left: var(--content-side);
  }

  .section-kicker,
  .download-shell {
    max-width: 1280px;
  }

  .bento-grid {
    grid-auto-rows: minmax(248px, auto);
    gap: 20px;
  }

  .steps-list article {
    grid-template-columns: 78px 0.8fr 1fr;
  }

  .admin-wrap {
    width: min(1380px, 100%);
  }
}

@media (min-width: 1600px) {
  :root {
    --content-side: clamp(48px, 5.2vw, 110px);
    --admin-side-space: 92px;
  }

  .hero,
  .section,
  .site-footer,
  .ticker,
  .download-section,
  .document-page,
  .support-page {
    padding-inline: clamp(48px, 4.8vw, 112px);
  }

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

  .bento-grid,
  .steps-list,
  .preview-wall {
    max-width: 1500px;
  }

  .admin-wrap {
    max-width: 1600px;
    margin-inline: auto;
    width: min(1600px, 100%);
    padding-inline: 0;
  }

  .admin-local-header {
    padding-inline: clamp(56px, 6vw, 94px);
  }
}

@media (max-width: 1023px) {
  .hero-copy>.eyebrow {
    white-space: nowrap;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(0.68rem, 1.9vw, 0.9rem);
    letter-spacing: 0.11em;
    text-align: center;
  }

  #hero-title {
    max-width: none;
    text-align: center;
  }

  #hero-title .hero-word {
    display: inline;
  }

  #hero-title .hero-word+.hero-word {
    margin-left: 0.28ch;
  }

  #hero-title .hero-word-muted {
    display: block;
    margin-top: 0.06em;
    margin-left: 0;
  }

  .site-header {
    position: fixed;
    grid-template-columns: 1fr auto 1fr;
    padding: 8px 10px;
  }

  .site-header>.brand {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .nav-download {
    display: none !important;
    grid-column: 2;
    justify-self: center;
    margin-left: 0;
  }

  .site-header.is-mobile-nav-open>.nav-download {
    display: none !important;
  }

  .site-header>.nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: var(--content-side);
    right: var(--content-side);
    z-index: 70;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    transition: max-height 190ms ease, opacity 190ms ease, transform 190ms ease;
  }

  .site-header.is-mobile-nav-open>.nav-links {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 10px 0;
  }

  .site-header.is-mobile-nav-open>.nav-links a {
    padding: 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    display: block;
  }

  .site-header>.nav-links .nav-mobile-download {
    display: none;
  }

  .site-header.is-mobile-nav-open>.nav-links .nav-mobile-download {
    display: block;
    margin: 10px auto 0;
    width: calc(100% - 32px);
    justify-self: center;
    text-align: center;
  }

  .site-header>.nav-links a:first-child {
    border-top: 0;
  }

  .site-header:not(.is-mobile-nav-open)>.nav-links {
    padding: 0;
  }

  .site-header .nav-mobile-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background:
      linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
      rgba(9, 9, 9, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 22px rgba(0, 0, 0, 0.34);
  }

  .site-header .nav-mobile-toggle span {
    width: 18px;
    height: 2.2px;
  }

  .site-header.is-mobile-nav-open>.nav-links .nav-mobile-download {
    width: min(220px, calc(100% - 32px));
    margin: 12px auto 4px;
    padding: 10px 16px;
  }
}

@media (max-width: 767px) {
  .bento-save>div>img {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    filter: none !important;
  }

  .saved-strip {
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .saved-strip span {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .download-shell h2 {
    max-width: 24ch;
    font-size: clamp(2.1rem, 8vw, 2.9rem);
    line-height: 1.04;
  }

  .section-ornament-orb {
    top: -120px;
    right: -120px;
    width: min(360px, 72vw);
    opacity: 0.2;
  }

  .section-ornament-mesh {
    top: -60px;
    right: -220px;
    width: min(760px, 140vw);
    opacity: 0.24;
  }

  .support-form-heading h1 {
    white-space: nowrap;
    font-size: clamp(2.05rem, 9.2vw, 2.7rem);
    line-height: 1;
  }

  .support-form-heading h1 span {
    display: inline;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .site-footer .footer-links {
    justify-content: center;
  }

  .site-footer p {
    padding-inline: 12px;
    text-align: center;
  }

  .support-page {
    padding-inline: 14px;
  }

  .support-form-section {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .support-form-panel {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .support-form-grid {
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .support-form-heading {
    margin-bottom: 20px;
  }

  .support-form-heading p:not(.eyebrow) {
    max-width: 100%;
  }

  .field-group input,
  .field-group textarea {
    width: 100%;
  }

  .support-submit {
    width: min(100%, 190px);
    min-width: 0;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "desc"
      "device"
      "stores";
    justify-items: center;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy>.eyebrow {
    grid-area: eyebrow;
    white-space: normal;
    text-wrap: balance;
    max-width: 33ch;
    line-height: 1.35;
  }

  #hero-title {
    grid-area: title;
  }

  .hero-copy>p:not(.eyebrow) {
    grid-area: desc;
    text-align: center;
  }

  .device-composition {
    grid-area: device;
    margin-top: 10px;
    margin-bottom: 8px;
    width: min(100%, 360px);
  }

  .hero-copy>.store-row {
    grid-area: stores;
    margin-top: 8px;
    justify-content: center;
  }

  .store-row {
    justify-content: center;
  }

  .steps-list article {
    grid-template-columns: 56px 1fr;
    gap: 10px 12px;
    align-items: start;
  }

  .steps-list span {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    border-radius: 12px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .steps-list h3 {
    grid-column: 2;
    font-size: clamp(1.06rem, 5vw, 1.24rem);
  }

  .steps-list p {
    grid-column: 2;
    font-size: 0.96rem;
    line-height: 1.45;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header {
    left: 20px;
    right: 20px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .steps-list article {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .steps-list article span {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .steps-list article h3,
  .steps-list article p {
    grid-column: 2;
  }

  .steps-list article p {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .site-footer .footer-links {
    justify-content: center;
  }

  .site-footer p {
    margin: 0 auto;
    text-align: center;
  }

}

/* =========================
   Responsive Stability Layer
   Canonical breakpoints:
   Mobile: <=767
   Tablet: 768-1023
   ========================= */

@media (max-width: 767px) {
  .ambient-shot-desktop {
    display: none;
  }

  .ambient-shot-mobile {
    display: block;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.4) 52%, rgba(5, 5, 5, 0.68)),
      linear-gradient(to bottom, transparent 74%, var(--black) 100%);
  }

  .hero-ambient {
    opacity: 1;
  }

  .ambient-shot {
    width: min(960px, 112vw);
    opacity: 0.48;
  }

  .shot-one {
    top: 16%;
    right: -14%;
    transform: rotate(-6deg);
  }

  .shot-two {
    right: 2%;
    bottom: -4%;
    transform: rotate(5deg);
    opacity: 0.26;
  }

  .ambient-body {
    width: clamp(84px, 15vw, 140px);
    opacity: 0.4;
  }

  .body-one {
    right: 20%;
    bottom: 14%;
  }

  .body-two {
    right: 8%;
    bottom: 20%;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
    padding: 8px 10px;
    grid-template-columns: auto auto auto;
  }

  .site-header>.brand {
    min-width: 0;
  }

  .site-header .nav-mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .site-header>.nav-links {
    left: 10px;
    right: 10px;
  }

  .hero,
  .section,
  .document-page,
  .support-page,
  .download-section,
  .ticker,
  .site-footer {
    padding-inline: 14px;
  }

  .hero-copy>p:not(.eyebrow),
  .support-form-heading p:not(.eyebrow),
  .support-hero p:not(.eyebrow),
  .steps-list p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .preview-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .preview-panel {
    width: 100%;
    max-width: 100%;
    padding: 18px 14px;
    border-radius: 20px;
    min-height: 430px;
  }

  .preview-panel h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.2rem);
  }

  .preview-wall {
    grid-template-columns: 1fr;
    gap: 10px;
    transform: none;
  }

  .preview-wall img {
    aspect-ratio: 1.4;
    border-radius: 16px;
  }

  .device-composition {
    width: min(100%, 360px);
    max-width: 100%;
    min-height: 460px;
  }

  .phone-front,
  .phone-back,
  .mini-screen img,
  .phone-visual img {
    max-width: 100%;
    height: auto;
  }

  .support-form-section,
  .support-form-panel,
  .support-form-grid {
    width: 100%;
    max-width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .site-footer .footer-links {
    justify-content: center;
  }

  .site-footer p {
    padding-inline: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --content-side: 24px;
  }

  .ambient-shot-desktop {
    display: none;
  }

  .ambient-shot-mobile {
    display: block;
  }

  .hero-ambient {
    opacity: 1;
  }

  .ambient-shot {
    width: min(940px, 88vw);
    opacity: 0.36;
  }

  .shot-one {
    top: 12%;
    right: -16%;
  }

  .shot-two {
    right: 14%;
    bottom: -5%;
  }

  .ambient-body {
    width: clamp(90px, 11vw, 150px);
    opacity: 0.42;
  }

  .site-header {
    top: 14px;
    left: 20px;
    right: 20px;
    min-height: 62px;
    padding: 10px 18px;
    grid-template-columns: 1fr auto 1fr;
  }

  .site-header>.nav-links {
    left: 20px;
    right: 20px;
  }

  .hero,
  .section,
  .document-page,
  .support-page,
  .download-section,
  .ticker,
  .site-footer {
    padding-inline: 24px;
  }

  .section-ornament-orb {
    top: -140px;
    right: -140px;
    width: min(460px, 56vw);
    opacity: 0.22;
  }

  .section-ornament-mesh {
    right: -170px;
    width: min(860px, 112vw);
    opacity: 0.28;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 56px;
  }

  .hero-copy,
  .device-composition {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy>p:not(.eyebrow),
  .support-form-heading p:not(.eyebrow),
  .support-hero p:not(.eyebrow),
  .steps-list p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .preview-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .preview-panel {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
    min-height: 480px;
  }

  .preview-panel h2 {
    font-size: clamp(2rem, 5.2vw, 2.8rem);
  }

  .preview-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    transform: none;
  }

  .preview-wall img {
    aspect-ratio: 1.52;
    border-radius: 18px;
  }

  .device-composition {
    min-height: 560px;
  }

  .phone-front,
  .phone-back,
  .mini-screen img,
  .phone-visual img,
  .preview-wall img,
  .image-card img {
    max-width: 100%;
    height: auto;
  }

  .steps-list article {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    gap: 14px 18px;
    min-height: 0;
    padding: 18px 20px;
  }

  .steps-list article span {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .steps-list article h3,
  .steps-list article p {
    grid-column: 2;
    max-width: 100%;
    margin: 0;
  }

  .support-form-section,
  .support-form-panel,
  .support-form-grid {
    width: 100%;
    max-width: 100%;
  }

  .support-form-panel {
    max-width: 980px;
    margin-inline: auto;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .support-form-heading {
    margin-bottom: 26px;
  }

  .support-form-heading h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  }

  .support-grid,
  .faq-section {
    width: 100%;
    max-width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .site-footer .footer-links {
    justify-content: center;
  }

  .site-footer p {
    margin: 0 auto;
    text-align: center;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .support-form-section {
    max-width: 1020px;
  }


  .support-form-panel {
    padding: 24px 26px;
    border-radius: 28px;
  }

  .support-form-heading {
    margin-bottom: 30px;
  }

  .support-form-heading h1 {
    font-size: clamp(2.4rem, 3.9vw, 3.8rem);
  }
}

@media (min-width: 1280px) {
  .support-form-section {
    max-width: 1080px;
  }


  .support-form-panel {
    padding: 28px 30px;
    border-radius: 30px;
  }

  .support-form-heading {
    margin-bottom: 30px;
  }

  .support-form-heading h1 {
    font-size: clamp(2.6rem, 3.3vw, 4.1rem);
  }
}


@media (min-width: 1024px) {
  .preview-panel {
    min-height: 0;
  }

  .preview-panel h2 {
    font-size: clamp(2.1rem, 3.2vw, 3.35rem);
    max-width: 13ch;
  }
}
