/* Sollow — dark, high contrast, sharp corners. Accent: flame orange. */

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --surface: #0f0f0f;
  --surface-2: #141414;
  --fg: #ffffff;
  --fg-muted: #737373;
  --fg-subtle: #3a3a3a;
  --primary: #ffffff;
  --primary-bright: #f0f0f0;
  --on-primary: #000000;
  --accent: #ff5a00;
  --accent-dim: #c44700;
  --border: #2a2a2a;
  --border-strong: #3a3a3a;
  --ring: #ff5a00;

  --font-sans: "Inter", "Helvetica Neue", Helvetica, system-ui, -apple-system, sans-serif;
  --font-brand: "Montserrat", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --font-serif: "Montserrat", "Helvetica Neue", Helvetica, system-ui, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  --container: 1080px;
  --gutter: 20px;
  --section-pad: 60px;
  --nav-h: 68px;

  --dur-fast: 140ms;
  --dur: 220ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --z-nav: 60;
  --z-overlay: 100;
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --nav-h: 76px;
    --section-pad: 88px;
  }
}

@media (min-width: 1280px) {
  :root {
    --gutter: 48px;
  }
}

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

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

body {
  touch-action: manipulation;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

button {
  font: inherit;
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: var(--z-overlay);
  background: var(--primary);
  color: var(--on-primary);
  padding: 12px 20px;
  font-weight: 700;
  transition: top var(--dur) var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 160px;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}

.display {
  font-size: clamp(2.6rem, 8.4vw, 7.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.h2 {
  font-size: clamp(2rem, 5.4vw, 3.75rem);
  line-height: 1.02;
}

.serif-italic {
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.accent-text {
  color: var(--accent);
}

p {
  text-wrap: pretty;
}

.lede {
  font-size: clamp(1.06rem, 2.1vw, 1.3rem);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 58ch;
}

.body-muted {
  color: var(--fg-muted);
  max-width: 62ch;
}

.wrap-anywhere {
  overflow-wrap: anywhere;
}

.btn {
  --btn-bg: var(--primary);
  --btn-fg: var(--on-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
    background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.btn:hover {
  background: var(--primary-bright);
  border-color: var(--primary-bright);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 15px;
}

.btn .icon {
  flex: none;
  transition: transform var(--dur) var(--ease);
}

.btn:hover .icon {
  transform: translateX(3px);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 2px;
  text-decoration: none;
}

.logo__img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__word {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.logo__word--hero {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  letter-spacing: 0.18em;
}

.logo__mark {
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex-shrink: 0;
}

.logo__sep {
  margin-inline: 0.15em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-muted);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 960px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="true"] {
  color: var(--fg);
}

.nav__link[aria-current="true"] {
  box-shadow: inset 0 -2px 0 0 var(--accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__cta {
  display: none;
}

@media (min-width: 620px) {
  .nav__cta {
    display: inline-flex;
  }
}

.nav__toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--border-strong);
  cursor: pointer;
}

.nav__toggle:hover {
  border-color: var(--fg);
}

@media (min-width: 960px) {
  .nav__toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: var(--z-overlay);
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0 var(--space-6);
  overflow-y: auto;
  display: none;
}

.mobile-menu[data-open="true"] {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 18px var(--gutter);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 10px;
  margin: var(--space-4) var(--gutter) 0;
  width: calc(100% - var(--gutter) * 2);
  box-sizing: border-box;
  border-bottom: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.mobile-menu .btn .icon {
  flex-shrink: 0;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  padding-top: calc(var(--section-pad) * 1.05);
  padding-bottom: calc(var(--section-pad) * 1.05);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    115% 85% at 16% 26%,
    rgba(255, 90, 0, 0.16) 0%,
    rgba(255, 90, 0, 0.05) 46%,
    transparent 74%
  );
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%);
}

.hero__inner {
  position: relative;
}

.hero h1 {
  max-width: 16ch;
  margin-bottom: var(--space-4);
}

.hero h1.is-brand {
  max-width: 10ch;
  font-size: clamp(3.4rem, 10.5vw, 7.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .hero h1.is-brand {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
    letter-spacing: -0.04em;
  }
}

.hero__headline {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.15rem, 3.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.hero__sub {
  margin-bottom: var(--space-6);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__meta {
  margin-top: var(--space-5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
}

.hero--split {
  padding-top: calc(var(--section-pad) * 0.85);
  padding-bottom: calc(var(--section-pad) * 0.85);
}

.hero__split {
  position: relative;
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: var(--space-7);
  }
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: var(--space-4);
  max-width: 18ch;
  text-wrap: balance;
}

.hero__visual {
  width: min(100%, 340px);
  margin-inline: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero__visual img {
  width: 88%;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(255, 90, 0, 0.18));
}

.section--center .section-title--center,
.section--center > .container > .eyebrow {
  text-align: center;
  margin-inline: auto;
}

.section-title {
  margin-bottom: var(--space-4);
  max-width: 18ch;
}

.section-title--center {
  max-width: 22ch;
  text-align: center;
  margin-inline: auto;
}

.lede--center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.container--narrow {
  max-width: 820px;
}

.section--tight-top {
  padding-top: calc(var(--section-pad) * 0.45);
}

/* Problem / solution contrast */
.contrast {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 800px) {
  .contrast {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

.contrast__panel {
  padding: var(--space-5) var(--space-4);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.contrast__panel--good {
  border-color: var(--border-strong);
  background: linear-gradient(
    160deg,
    rgba(255, 90, 0, 0.1) 0%,
    var(--bg-elevated) 55%
  );
}

.contrast__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-3);
}

.contrast__panel--good .contrast__label {
  color: var(--accent);
}

.contrast__panel h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.contrast__panel p {
  color: var(--fg-muted);
  font-size: 15.5px;
  max-width: 36ch;
}

/* How it works */
.steps {
  display: grid;
  gap: var(--space-4);
  border-top: 1px solid var(--border);
  text-align: left;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-5);
  }

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

.steps__item {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .steps__item {
    border-bottom: 0;
    padding-top: var(--space-5);
  }
}

.steps__index {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.steps__item h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.steps__item p {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 28ch;
}

.payoff {
  margin-top: var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.payoff img {
  width: min(200px, 42vw);
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(255, 90, 0, 0.15));
}

.payoff .h2 {
  max-width: 16ch;
}

.payoff .lede {
  margin-bottom: 0;
}

/* Use cases */
.usecases {
  display: grid;
  gap: var(--space-5);
  text-align: left;
  margin-top: var(--space-2);
}

@media (min-width: 800px) {
  .usecases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
  }
}

.usecases__item {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.usecases__item h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.usecases__item p {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 28ch;
}

.pillars-note {
  margin-top: var(--space-6);
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.pillars-note strong {
  color: var(--fg);
  font-weight: 600;
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 0;
  margin-top: var(--space-7);
  border-top: 1px solid var(--border);
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.feature-grid__item {
  padding: var(--space-5) var(--space-4) var(--space-5) 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 700px) {
  .feature-grid__item:nth-child(odd) {
    padding-right: var(--space-5);
    border-right: 1px solid var(--border);
  }

  .feature-grid__item:nth-child(even) {
    padding-left: var(--space-5);
  }
}

@media (min-width: 1100px) {
  .feature-grid__item {
    padding: var(--space-5) var(--space-4);
    border-right: 1px solid var(--border);
  }

  .feature-grid__item:nth-child(odd),
  .feature-grid__item:nth-child(even) {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .feature-grid__item:nth-child(3n) {
    border-right: 0;
  }
}

.feature-grid__item h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.feature-grid__item p {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 32ch;
}

/* FAQ */
.faq {
  margin-top: var(--space-6);
  border-top: 1px solid var(--border);
  max-width: 720px;
}

.faq--blocks {
  border-top: 0;
  max-width: none;
  display: grid;
  gap: 10px;
  text-align: left;
}

.faq--blocks .faq__item {
  border: 1px solid var(--border);
  border-bottom-color: var(--border);
  background: var(--bg-elevated);
}

.faq--blocks .faq__item summary {
  padding: 18px 52px 18px 18px;
}

.faq--blocks .faq__item summary::after {
  right: 18px;
}

.faq--blocks .faq__body {
  padding: 0 18px 18px;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4) 2.5rem var(--space-4) 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item summary:hover {
  color: var(--accent);
}

.faq__body {
  padding: 0 0 var(--space-4);
}

.faq__body p {
  color: var(--fg-muted);
  font-size: 15.5px;
  max-width: 58ch;
}

.faq__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta--bare {
  border: 0;
  background: transparent;
  padding: var(--space-4) 0;
}

.cta--bare::before {
  display: none;
}

.cta__inner--center {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.cta__inner--center .h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.cta__actions--center {
  justify-content: center;
  margin-bottom: 0;
}

.tagline {
  margin-top: var(--space-5);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--fg-muted);
}

/* Ecosystem / Sollow */
.ecosystem {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

@media (min-width: 900px) {
  .ecosystem {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: var(--space-7);
  }
}

.ecosystem__media {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  display: grid;
  place-items: center;
}

.ecosystem__media img {
  width: 72%;
  height: auto;
}

/* Inside the app — five screens in a row */
#app .container {
  max-width: 1280px;
}

.app-intro {
  margin-bottom: var(--space-7);
}

.app-row {
  display: grid;
  gap: var(--space-7);
  align-items: start;
}

@media (min-width: 720px) {
  .app-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6) var(--space-4);
  }

  .app-intro {
    margin-bottom: var(--space-6);
  }
}

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

@media (min-width: 1100px) {
  .app-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-3);
  }
}

.app-col {
  margin: 0;
  text-align: center;
}

.app-col__verb {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.app-col__hint {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  margin-bottom: var(--space-3);
}

.app-col__shot {
  border: 0;
  background: transparent;
  line-height: 0;
  max-width: 280px;
  margin-inline: auto;
}

.app-col__shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 719px) {
  .app-col__shot {
    max-width: min(100%, 300px);
  }
}

@media (min-width: 900px) {
  .ecosystem {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }
}


.ecosystem__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.ecosystem__name {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-5);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Store badges: same width as email button — rules live with .cta__stack */

/* Pillars only: 3 + 2 centered on mobile */
@media (max-width: 719px) {
  .chips--pillars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    justify-items: stretch;
  }

  .chips--pillars .chip:nth-child(1) { grid-column: 1 / 3; }
  .chips--pillars .chip:nth-child(2) { grid-column: 3 / 5; }
  .chips--pillars .chip:nth-child(3) { grid-column: 5 / 7; }
  .chips--pillars .chip:nth-child(4) { grid-column: 2 / 4; }
  .chips--pillars .chip:nth-child(5) { grid-column: 4 / 6; }
}

/* Studio */
.split {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-7);
    align-items: start;
  }
}

.entity {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  max-width: 28rem;
}

.entity dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.entity dd {
  margin: 6px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.entity dd + dt {
  margin-top: 16px;
}

.entity .muted {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg-muted);
}

.expertise {
  border-top: 1px solid var(--border);
}

.expertise__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}

.expertise__index {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
}

.expertise__item h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.expertise__item p {
  color: var(--fg-muted);
  font-size: 15.5px;
  max-width: 42ch;
}

/* Contact CTA */
.cta {
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  padding: var(--space-6) var(--space-4);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta {
    padding: var(--space-8) var(--space-7);
  }
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 120% at 0% 0%, rgba(255, 90, 0, 0.14), transparent 62%);
}

.cta__inner {
  position: relative;
  max-width: 720px;
}

.cta h2 {
  margin-bottom: var(--space-4);
}

.cta .lede {
  margin-bottom: var(--space-6);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-5);
}

.cta__stack {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-5);
  width: fit-content;
  max-width: 100%;
}

.cta__stack .btn {
  width: 100%;
}

/* Store badges: same width as email button on mobile */
.chips--stores {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 0;
  width: 100%;
  max-width: none;
}

.chips--stores .chip {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  min-height: 44px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

/* Desktop: chips side by side, natural width (like before) */
@media (min-width: 768px) {
  .cta__stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }

  .cta__stack .btn {
    width: auto;
  }

  .chips--stores {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    align-items: center;
  }

  .chips--stores .chip {
    width: auto;
  }
}

.cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.cta__points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--fg-muted);
}

.cta__points svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-6);
}

.footer__grid {
  display: grid;
  gap: var(--space-5);
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--space-4);
  }

  .footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--space-6);
  }
}

.footer h4 {
  font-size: 11.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer nav a {
  color: var(--fg-muted);
  font-size: 15px;
  transition: color var(--dur) var(--ease);
  width: fit-content;
}

.footer nav a:hover {
  color: var(--fg);
}

.footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  padding-bottom: var(--space-2);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--fg-muted);
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
}

.footer nav.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-left: 0;
  width: 100%;
  justify-content: center;
}

.footer nav.footer__legal a {
  font-size: 13.5px;
  color: var(--fg-muted);
}

.footer__legal a:hover {
  color: var(--fg);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px 24px;
    padding-top: var(--space-4);
    padding-bottom: 0;
  }

  .footer__meta {
    justify-content: flex-start;
  }

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

/* Legal */
.legal {
  max-width: 72ch;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-3);
}

.legal__updated {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-6);
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.legal h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal h3 {
  font-size: 1.05rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  color: var(--fg);
}

.legal p,
.legal li {
  color: var(--fg-muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.legal p + p {
  margin-top: var(--space-3);
}

.legal ul {
  margin: var(--space-3) 0;
  padding-left: 1.25rem;
}

.legal li + li {
  margin-top: 0.45rem;
}

.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__entity {
  margin: var(--space-5) 0 var(--space-6);
  padding: var(--space-4);
  border: 1px solid var(--border);
  background: var(--surface);
}

.legal__entity dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-top: var(--space-3);
}

.legal__entity dt:first-child {
  margin-top: 0;
}

.legal__entity dd {
  margin: 4px 0 0;
  color: var(--fg);
  font-size: 15.5px;
  line-height: 1.5;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* —— Liftoff-style layout additions —— */

.section--tight {
  padding-block: calc(var(--section-pad) * 0.55);
  padding-top: calc(var(--section-pad) * 0.85);
}

.hero--lift {
  padding-top: calc(var(--section-pad) * 0.55);
  padding-bottom: var(--space-4);
  text-align: center;
}

.hero--lift .hero__title {
  margin-inline: auto;
  max-width: 18ch;
}

.hero__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__brand {
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.hero__lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-4);
  transform: translateX(-6px);
}

.hero__lockup img {
  width: clamp(48px, 10vw, 72px);
  height: auto;
  object-fit: contain;
}

.hero--lift .hero__sub {
  margin-inline: auto;
  margin-bottom: var(--space-5);
  text-align: center;
}

.hero--lift .hero__actions {
  justify-content: center;
}

.hero--lift .hero__meta {
  margin-top: var(--space-4);
  margin-bottom: 0;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-2);
}

.store-badges__link {
  display: block;
  line-height: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}

.store-badges__link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.store-badges__img {
  display: block;
  height: 3.5rem;
  width: auto;
}

.store-badges__img--google {
  /* Play badge PNG has extra transparent padding */
  height: 4.25rem;
  margin-block: -0.35rem;
}

.store-badges--cta {
  justify-content: center;
}

@media (min-width: 860px) {
  .store-badges--cta {
    justify-content: flex-start;
  }
}

/* Hero phone mockup (single illustration) */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin-top: var(--space-6);
  margin-bottom: var(--space-5);
  margin-inline: auto;
}

.hero-mockup__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55));
}

/* Phone fan (legacy — kept if reused elsewhere) */
.phone-fan {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(8px, 2vw, 24px);
  width: 100%;
  margin-top: var(--space-6);
  padding-bottom: var(--space-2);
}

.phone-fan__glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  width: min(720px, 100%);
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.18);
  filter: blur(64px);
  pointer-events: none;
}

.phone-fan img {
  position: relative;
  height: auto;
  border: 1px solid var(--border-strong);
  background: #000;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.phone-fan__main {
  z-index: 2;
  width: min(240px, 58vw);
}

.phone-fan__side {
  z-index: 1;
  width: min(190px, 42vw);
  opacity: 0.85;
  display: none;
}

.phone-fan__side--left {
  transform: rotate(-6deg) translateY(12px);
}

.phone-fan__side--right {
  transform: rotate(6deg) translateY(12px);
}

@media (min-width: 768px) {
  .phone-fan__side {
    display: block;
  }

  .phone-fan__main {
    width: min(280px, 28vw);
  }

  .phone-fan__side {
    width: min(220px, 22vw);
  }
}

/* Stats strip */
.stats {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

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

.stats__card {
  display: block;
  padding: var(--space-4) var(--space-3);
  text-align: center;
  background: #141414;
  border: 0;
  border-radius: 12px;
  cursor: default;
  pointer-events: none;
}

.stats__value {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.stats__label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.35;
}

/* Value split */
.value-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

@media (min-width: 860px) {
  .value-split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-7);
  }
}

.value-split__title {
  max-width: 14ch;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.value-split__copy {
  max-width: 36ch;
  margin-bottom: 0;
}

/* Ranks grid — 8 cells (guide + 7 leagues) for a filled 4×2 */
#ranks .container {
  max-width: var(--container);
}

.ranks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: var(--space-6);
  align-items: stretch;
  width: 100%;
}

@media (min-width: 560px) {
  .ranks,
  .ranks--eight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.ranks__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px 12px 14px;
  background: #141414;
  border: 0;
  border-radius: 14px;
  width: 100%;
  box-sizing: border-box;
}

.ranks__item img {
  display: block;
  width: 78% !important;
  max-width: 120px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain;
  flex: 0 0 auto;
}

.ranks__item span {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.ranks__item--guide {
  justify-content: flex-start;
  background: transparent;
  border: 1px dashed #2a2a2a;
}

.ranks__item--guide span {
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

@media (min-width: 960px) {
  .ranks__item {
    gap: 12px;
    padding: 18px 10px 16px;
  }

  .ranks__item img {
    width: 82% !important;
    max-width: 112px !important;
  }

  .ranks__item span {
    font-size: 13px;
  }
}

@media (min-width: 1100px) {
  .ranks__item span {
    font-size: 14px;
  }

  .ranks__item img {
    max-width: 124px !important;
  }
}

.ranks__note {
  margin-top: var(--space-4);
  font-size: 14px;
  color: var(--fg-muted);
}

.ranks__note a {
  color: var(--accent);
  font-weight: 600;
}

.ranks__note a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pillar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-6);
}

.pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  background: #141414;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pillar-chip span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Feature pair: copy + phone mockup */
.feature-pair {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 900px) {
  .feature-pair {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-7);
  }
}

.feature-pair__copy {
  max-width: 34ch;
}

.feature-pair__copy .h2 {
  margin-bottom: var(--space-4);
  text-transform: none;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.feature-pair__copy .lede {
  margin-bottom: 0;
  max-width: 36ch;
}

.feature-pair__shot {
  margin: 0;
  width: min(100%, 280px);
  flex-shrink: 0;
  line-height: 0;
}

@media (min-width: 900px) {
  .feature-pair__shot {
    width: min(42%, 320px);
  }
}

.feature-pair__shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Daily loop: headline + six phone shots */
#loop .container {
  max-width: var(--container);
}

.loop-head {
  max-width: 58ch;
  margin-bottom: var(--space-6);
}

.loop-head .h2 {
  margin-bottom: var(--space-3);
}

.loop-head .lede {
  margin-bottom: 0;
  max-width: none;
}

.loop-shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
}

@media (min-width: 700px) {
  .loop-shots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 32px) clamp(16px, 2.5vw, 32px);
    row-gap: var(--space-6);
    align-items: start;
    justify-items: stretch;
  }
}

.loop-shot {
  margin: 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loop-shot__frame {
  line-height: 0;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}

.loop-shot__frame img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.loop-shot figcaption {
  margin-top: var(--space-3);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 300px;
  text-align: center;
}

.loop-shot figcaption strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.loop-shot figcaption span {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.35;
}

/* Mobile: center section copy, captions above phones, breathing room */
@media (max-width: 699px) {
  :root {
    --gutter: 28px;
  }

  #ranks .section-title,
  #ranks .lede,
  #ranks .ranks__note {
    text-align: center;
    margin-inline: auto;
  }

  #ranks .section-title {
    max-width: none;
  }

  #ranks .lede {
    max-width: none;
  }

  .feature-pair__copy {
    text-align: center;
    max-width: none;
    width: 100%;
  }

  .feature-pair__copy .h2,
  .feature-pair__copy .lede {
    max-width: none;
    margin-inline: auto;
  }

  .loop-head {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .loop-head .lede {
    margin-inline: auto;
  }

  .loop-shots {
    gap: 36px;
  }

  .loop-shot__frame {
    order: 2;
    max-width: min(100%, 320px);
  }

  .loop-shot figcaption {
    order: 1;
    margin-top: 0;
    margin-bottom: 12px;
    max-width: min(100%, 320px);
  }

  .loop-shot figcaption strong {
    font-size: 18px;
  }

  .section--tight {
    display: none;
  }

  #faq .container {
    padding-inline: var(--gutter);
  }

  .faq--blocks {
    gap: 12px;
  }

  .faq--blocks .faq__item {
    border-radius: 12px;
  }

  .faq--blocks .faq__item summary {
    padding: 18px 48px 18px 18px;
  }

  .faq--blocks .faq__body {
    padding: 0 18px 18px;
  }

  /* Download CTA mobile: simple, centered, no big icon */
  .cta__download {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-4);
  }

  .cta__download-copy {
    flex: 1;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta__download-art {
    display: none;
  }

  .cta__download .h2 {
    max-width: 16ch;
    margin-inline: auto;
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    text-align: center;
  }

  .cta__download .lede {
    max-width: 28ch;
    margin-inline: auto;
    margin-bottom: var(--space-4);
    font-size: 1rem;
    text-align: center;
  }

  .cta__download .cta__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-inline: auto;
  }

  .cta__download .store-badges,
  .cta__download .store-badges--cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-inline: auto;
    width: auto;
  }

  .cta__download .store-badges__link {
    margin-inline: auto;
  }

  .cta__download .store-badges__img {
    width: 160px;
    height: auto;
    margin-inline: auto;
  }
}

/* Daily loop split (legacy) */
.loop {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .loop {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-7);
  }

  .loop__intro {
    width: 40%;
    flex-shrink: 0;
  }

  .loop__cards {
    flex: 1;
  }
}

.loop__intro .h2 {
  margin-bottom: var(--space-4);
}

.loop__badge {
  margin-top: var(--space-5);
  width: 112px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(255, 90, 0, 0.2));
}

.loop__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Shared panel */
.panel {
  padding: var(--space-4);
  background: #141414;
  border: 0;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .panel {
    padding: var(--space-5);
  }
}

.panel h3 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.panel p {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 42ch;
}

.panel__pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Progress 3-up */
.progress-grid {
  display: grid;
  gap: 12px;
  margin-top: var(--space-6);
}

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

/* Features bento */
.bento {
  display: grid;
  gap: 12px;
  margin-top: var(--space-6);
}

@media (min-width: 800px) {
  .bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .bento > .panel {
    grid-column: span 4;
  }

  .bento > .bento__wide {
    grid-column: span 8;
  }
}

.bento__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.bento__shot {
  flex-shrink: 0;
  width: 72px;
  height: auto;
  border: 1px solid var(--border);
  background: #000;
  display: none;
}

.bento__shot--logo {
  width: 64px;
  border: 0;
  background: transparent;
  display: block;
}

@media (min-width: 640px) {
  .bento__shot {
    display: block;
    width: 88px;
  }
}

/* Download CTA with art */
.cta--download {
  padding: 0;
}

.cta--download::before {
  background: radial-gradient(
    80% 100% at 100% 100%,
    rgba(255, 90, 0, 0.12),
    transparent 60%
  );
}

.cta__download {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-4);
  text-align: left;
}

.cta__download-copy {
  flex: 1;
  min-width: 0;
}

@media (min-width: 860px) {
  .cta__download {
    padding: var(--space-7) var(--space-6);
    gap: var(--space-7);
  }

  .cta__download .cta__stack {
    align-items: flex-start;
  }

  .cta__download .chips--stores {
    justify-content: flex-start;
  }
}

.cta__download .h2 {
  max-width: 16ch;
}

.cta__download .lede {
  margin-bottom: var(--space-5);
}

.cta__download-art {
  width: min(120px, 28vw);
  height: auto;
  flex-shrink: 0;
  align-self: flex-end;
  filter: drop-shadow(0 16px 40px rgba(255, 90, 0, 0.22));
}

@media (min-width: 860px) {
  .cta__download-art {
    width: 220px;
  }
}

.footer__tagline {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}
