:root {
  --page: #f2f2f7;
  --group: #ffffff;
  --group-2: #f8f8fb;
  --ink: #101014;
  --muted: #73737d;
  --hairline: rgba(16, 16, 20, 0.1);
  --dark: #050506;
  --yellow: #ffd84d;
  --yellow-strong: #ffc928;
  --gold: #8a6d00;
  --pb-glow: rgba(255, 216, 77, 0.42);
  --green: #39a96b;
  --blue: #447cff;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  line-height: 1.45;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 12px clamp(18px, 5vw, 70px);
  color: #fff;
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 760;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

nav {
  gap: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 660;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.menu-icon {
  display: block;
  color: currentColor;
  font-size: 1.65rem;
  font-weight: 760;
  line-height: 1;
}

.menu-toggle:hover {
  color: #fff;
  background: transparent !important;
}

.help-nav-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-weight: 900;
}

.help-nav-icon:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: 92vh;
  padding: 104px clamp(20px, 5vw, 80px) 64px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 216, 77, 0.26), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(255, 201, 40, 0.14), transparent 24%),
    linear-gradient(180deg, #09090b 0%, #1b1b20 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  right: -8vw;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 77, 0.54), transparent);
  content: "";
  transform: rotate(-18deg);
}

.hero::before {
  top: 24%;
}

.hero::after {
  top: 34%;
  opacity: 0.48;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo {
  width: clamp(120px, 18vw, 210px);
  height: auto;
  margin-bottom: 12px;
}

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

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
}

.hero-text span {
  display: block;
}

.hero-text span + span {
  margin-top: 8px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 168px));
  gap: 14px 18px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 760;
}

.button-primary,
.button-dark {
  color: #fff;
  background: #000;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-download {
  color: #000;
  background: var(--yellow);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 12px 28px rgba(255, 216, 77, 0.2);
}

.button-download:hover {
  background: #ffe16f;
}

.phone-frame {
  justify-self: center;
  width: clamp(224px, 22vw, 280px);
  padding: 8px;
  background: #000;
  border-radius: 34px;
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.12),
    0 0 46px rgba(255, 216, 77, 0.16),
    0 24px 58px rgba(0, 0, 0, 0.36);
}

.hero-shot {
  justify-self: end;
}

.screenshot-frame {
  justify-self: center;
  width: clamp(214px, 21vw, 252px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
}

.screenshot-carousel {
  position: relative;
  overflow: visible;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: 27px;
  aspect-ratio: 1320 / 2868;
}

.carousel-track .app-screenshot {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.carousel-track .app-screenshot.is-active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: -24px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.carousel-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transition:
    width 250ms ease,
    background-color 250ms ease;
}

.carousel-dots span.is-active {
  width: 18px;
  background: var(--yellow-strong);
  box-shadow: 0 0 14px var(--pb-glow);
}

.feature-grid article,
.plans article {
  background: var(--group);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.section-heading p,
.feature-grid p,
.plans p {
  color: var(--muted);
}

.section-heading .eyebrow {
  color: var(--gold);
}

.hero .eyebrow,
.app-band .section-heading .eyebrow {
  color: var(--yellow);
}

.section {
  padding: 86px clamp(20px, 5vw, 80px);
}

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

.feature-grid,
.plans,
.store-links {
  display: grid;
  gap: 16px;
}

.feature-grid,
.store-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plans {
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 230px);
  grid-template-columns: none;
  align-items: stretch;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--yellow) rgba(16, 16, 20, 0.1);
}

.plans-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.plan-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 216, 77, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.plan-arrow:hover {
  background: #ffe16f;
}

.feature-grid article,
.plans article {
  padding: 24px;
}

.feature-grid article {
  min-height: 214px;
}

.plans article {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 16px;
  border: 1px solid var(--hairline);
  scroll-snap-align: start;
}

#why .feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

#why .feature-grid article {
  min-height: 132px;
  padding: 18px;
  border-radius: 14px;
}

#why .feature-grid h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

#why .feature-grid p {
  font-size: 0.92rem;
  line-height: 1.4;
}

.feature-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 26px;
  color: #000;
  background: var(--yellow);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 820;
  box-shadow: 0 10px 22px rgba(255, 216, 77, 0.24);
}

.feature-icon::before {
  display: block;
  width: 22px;
  height: 22px;
  background: currentColor;
  content: "";
}

.icon-runner-profile::before {
  clip-path: path("M11 3a4 4 0 1 1 0 8a4 4 0 0 1 0-8ZM4 20c.7-4 3.2-6 7-6s6.3 2 7 6H4Z");
}

.icon-two-profiles::before {
  clip-path: path("M8 4a3.2 3.2 0 1 1 0 6.4A3.2 3.2 0 0 1 8 4Zm8 1.4a2.7 2.7 0 1 1 0 5.4a2.7 2.7 0 0 1 0-5.4ZM2.8 19c.6-3.7 2.7-5.7 5.2-5.7s4.6 2 5.2 5.7H2.8Zm9.2 0c.4-2.2 1.6-3.9 3.8-3.9 2.1 0 3.6 1.5 4.2 3.9h-8Z");
}

.icon-bell::before {
  clip-path: path("M11 21a2.5 2.5 0 0 0 2.4-1.8H8.6A2.5 2.5 0 0 0 11 21Zm7-5-1.8-2.1V9.5a5.2 5.2 0 0 0-4-5.1V3a1.2 1.2 0 0 0-2.4 0v1.4a5.2 5.2 0 0 0-4 5.1v4.4L4 16v1.2h14V16Z");
}

.icon-chart::before {
  clip-path: path("M3 19h17v2H1V3h2v16Zm2-3 4.4-4.4 3.2 3.2L20 7.4 18.6 6l-6 6-3.2-3.2L3.6 14.6 5 16Z");
}

.icon-family::before {
  clip-path: path("M7 4a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm9 1a2.6 2.6 0 1 1 0 5.2A2.6 2.6 0 0 1 16 5ZM2 20c.6-4 2.6-6.2 5-6.2s4.4 2.2 5 6.2H2Zm9.5 0c.4-2.5 1.9-4.5 4.4-4.5s4 1.8 4.6 4.5h-9Z");
}

.icon-runner::before {
  clip-path: path("M14.2 4.2a2.3 2.3 0 1 1-4.6 0 2.3 2.3 0 0 1 4.6 0ZM9 9.4l3.1 1.6 1.5 3.2 3.4 1.1-.7 2-4.5-1.4-1.3-2.4-2 2.5 2.6 2.4-1.4 1.6-4-3.7 3-4.1-2.5-1.1-2.3 2.2-1.4-1.5 3.4-3.4 3.1 1Z");
}

.icon-spark::before {
  clip-path: path("M11 1.8 13.1 8l6.1 2.1-6.1 2.1L11 18.4l-2.1-6.2-6.1-2.1L8.9 8 11 1.8Zm7.2 12.6.9 2.5 2.5.9-2.5.9-.9 2.5-.9-2.5-2.5-.9 2.5-.9.9-2.5Z");
}

.app-band {
  color: #fff;
  background: #101014;
}

.tracking-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 0.84fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  max-width: 980px;
}

.copy-block p {
  color: rgba(255, 255, 255, 0.72);
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 680;
}

.highlight-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  background: var(--yellow-strong);
  box-shadow: 0 0 12px var(--pb-glow);
  border-radius: 999px;
  content: "";
}

.download-section {
  background: #fff;
  border-bottom: 1px solid var(--hairline);
}

.page-hero {
  min-height: calc(100vh - 66px);
  padding: 128px clamp(20px, 5vw, 80px) 86px;
}

.contact-page {
  display: grid;
  justify-items: start;
  gap: 28px;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 216, 77, 0.2), transparent 28%),
    var(--page);
}

.support-page {
  display: grid;
  gap: 30px;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 216, 77, 0.18), transparent 28%),
    var(--page);
}

.legal-page {
  display: grid;
  gap: 30px;
  background: var(--page);
}

.contact-page .section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.support-page .section-heading,
.legal-page .section-heading {
  max-width: 860px;
  margin-bottom: 0;
}

.contact-page h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.contact-page .section-heading p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: min(680px, 100%);
  padding: 28px;
  background: var(--group);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.form-heading {
  padding-bottom: 6px;
}

.form-heading h2 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--page);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(115, 115, 125, 0.72);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 216, 77, 0.34);
  border-color: var(--yellow-strong);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note[data-status="pending"] {
  color: var(--muted);
}

.form-note[data-status="success"] {
  color: #207a45;
  font-weight: 760;
}

.form-note[data-status="error"] {
  color: #b42318;
  font-weight: 760;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.faq-list article,
.support-cta {
  padding: 22px;
  background: var(--group);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.faq-list h2,
.support-cta h2 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.faq-list p,
.support-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list a {
  color: var(--gold);
  font-weight: 800;
}

.support-cta {
  max-width: 860px;
}

.support-cta .button {
  margin-top: 18px;
}

.resources-page {
  display: grid;
  gap: 30px;
}

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

.resource-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 20px;
  background: var(--group);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.resource-grid h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.resource-grid p {
  margin: 0;
  color: var(--muted);
}

.resource-grid a {
  align-self: end;
  color: var(--gold);
  font-weight: 820;
}

.legal-content {
  display: grid;
  gap: 24px;
  max-width: 900px;
  padding: 22px;
  background: var(--group);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--gold);
  font-weight: 800;
}

.store-links {
  grid-template-columns: repeat(2, minmax(160px, 190px));
  align-items: start;
  gap: 18px 24px;
}

.store-link {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.official-store-badge {
  display: block;
  width: 168px;
}

.official-store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.store-status {
  padding: 4px 8px;
  color: #000;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 216, 77, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 820;
}

.official-store-badge.is-disabled {
  cursor: not-allowed;
}

.notify-button {
  margin-top: 26px;
}

.plan-trial-row {
  display: flex;
  margin-top: -10px;
  margin-bottom: 38px;
}

.trial-button {
  width: fit-content;
}

.plans article strong {
  display: inline-flex;
  padding: 5px 8px;
  background: rgba(255, 216, 77, 0.22);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
}

.plan-topline {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.plan-topline h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.plan-topline span {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 860;
  line-height: 1;
}

.plans article p {
  margin-bottom: 12px;
  font-size: 0.86rem;
}

.plans ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plans li {
  position: relative;
  padding-left: 15px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.3;
}

.plans li::before {
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  background: var(--yellow-strong);
  border-radius: 999px;
  content: "";
}

.plan-label {
  justify-self: start;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
}

.featured-plan {
  outline: 3px solid var(--yellow);
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, 0.24),
    0 18px 44px rgba(255, 216, 77, 0.16);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 80px);
  color: #fff;
  background: #050506;
}

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

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand > div {
  display: grid;
  gap: 4px;
}

.footer-brand span:first-child {
  font-weight: 780;
}

.footer-brand span:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  max-width: 620px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    min-height: 60px;
  }

  nav {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  nav.is-open .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    display: grid;
    width: min(220px, calc(100vw - 28px));
    padding: 8px;
    background: rgba(5, 5, 6, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
  }

  nav.is-open .nav-links a {
    display: block;
    padding: 10px 12px;
  }

  .hero-store-links {
    display: grid !important;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
    align-items: start;
  }

  .hero-store-links .store-link {
    display: grid;
    justify-items: center;
    min-width: 0;
  }

  .hero-store-links .official-store-badge {
    width: 100%;
    max-width: 146px;
  }

  .hero-store-links .official-store-badge img {
    width: 100%;
    max-height: 42px;
  }

  .hero-store-links .store-status {
    font-size: 0.73rem;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero,
  .tracking-layout,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(270px, 100%);
  }

  .hero-shot,
  .screenshot-frame {
    justify-self: center;
  }

  .feature-grid,
  #why .feature-grid,
  .resource-grid,
  .store-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .phone-frame,
  .screenshot-frame {
    width: min(228px, 76vw);
    border-radius: 30px;
    padding: 7px;
  }

  .app-screenshot {
    border-radius: 24px;
  }

  .carousel-track {
    border-radius: 24px;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

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

  .plans-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .plan-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.45rem;
  }

  .plans {
    grid-auto-columns: minmax(206px, 220px);
  }

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

  .footer-links {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
