/* =========================================================
   FUELSTATE — Marketing Site
   Image-led, short-form conversion homepage.
   ========================================================= */

:root {
  --bg-0: #141617;
  --appstore-matte: #141617;
  --bg-1: #0B1019;
  --bg-2: #111827;
  --bg-3: #182130;

  --ink-0: #FFFFFF;
  --ink-1: #E8EBF0;
  --ink-2: #B2B8C4;
  --ink-3: #7B8494;
  --ink-4: #4C5565;

  --gold-0: #FFE9A8;
  --gold-1: #F5CD6A;
  --gold-2: #D9A93A;
  --green-1: #4BD38E;
  --blue-1: #4CA7FF;
  --red-1: #FF5B66;

  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-strong: rgba(255, 255, 255, 0.16);
  --hairline-gold: rgba(245, 205, 106, 0.28);

  --radius-card: 8px;
  --radius-media: 22px;
  --radius-pill: 999px;
  --shadow-heavy: 0 34px 90px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-1);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(920px 720px at 84% 0%, rgba(245, 205, 106, 0.12), transparent 62%),
    radial-gradient(820px 680px at 8% 22%, rgba(76, 167, 255, 0.08), transparent 62%),
    radial-gradient(860px 720px at 70% 105%, rgba(75, 211, 142, 0.08), transparent 58%),
    linear-gradient(180deg, #141617 0%, #101214 48%, #0D0E10 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--gold-1); color: #05070B; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 84px 0;
  scroll-margin-top: 92px;
}

.section-title {
  margin: 0;
  max-width: 760px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-0);
  text-wrap: balance;
}

.section-sub {
  margin: 18px 0 0;
  max-width: 610px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.section-head {
  margin: 0 auto 42px;
  text-align: center;
}

.section-head .section-title,
.section-head .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
}

.section-head-left .section-title,
.section-head-left .section-sub {
  margin-left: 0;
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}

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

.nav-inner {
  width: fit-content;
  max-width: min(100%, var(--max));
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: rgba(6, 9, 14, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 5px 12px 5px 7px;
  border-radius: var(--radius-pill);
  color: var(--ink-0);
  transition: background 0.2s, transform 0.18s var(--ease);
}

.nav-brand:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-brand:active {
  transform: scale(0.97);
}

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

.nav-brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  box-shadow: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-pill::-webkit-scrollbar { display: none; }

.nav-pill a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, transform 0.18s var(--ease);
}

.nav-pill a:hover {
  color: var(--ink-0);
  background: rgba(255, 255, 255, 0.06);
}

.nav-pill a:active { transform: scale(0.96); }

.nav-pill .nav-pill-cta {
  color: #121006;
  background: linear-gradient(135deg, var(--gold-0), var(--gold-1));
  font-weight: 600;
}

.nav-pill .nav-pill-cta:hover {
  color: #121006;
  background: var(--gold-1);
}

/* =========================================================
   Buttons
   ========================================================= */

.appstore-badge,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 0.28s var(--ease), border-color 0.28s, background 0.28s, box-shadow 0.28s;
}

.appstore-badge {
  gap: 12px;
  padding: 11px 21px 11px 18px;
  color: #fff;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.appstore-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 205, 106, 0.62);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46), 0 18px 46px rgba(245, 205, 106, 0.12);
}

.appstore-badge svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.as-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.as-small {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.as-big {
  font-size: 18px;
  color: #fff;
}

.btn-ghost {
  padding: 0 22px;
  color: var(--ink-0);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline-strong);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 205, 106, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-0);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  text-underline-offset: 4px;
}

.text-link:hover { color: var(--gold-0); }

/* =========================================================
   Shared media
   ========================================================= */

.poster {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--appstore-matte);
  box-shadow: var(--shadow-heavy);
  isolation: isolate;
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -80px 80px rgba(0, 0, 0, 0.12);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--appstore-matte);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 112px 0 58px;
  overflow: hidden;
  background: var(--appstore-matte);
}

.hero-track {
  position: absolute;
  inset: -12% -10% 0 34%;
  z-index: -1;
  opacity: 0.20;
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(255, 255, 255, 0.10) 38.2% 38.7%, transparent 39% 100%),
    linear-gradient(112deg, transparent 0 46%, rgba(245, 205, 106, 0.12) 46.2% 46.6%, transparent 47% 100%);
  transform: rotate(-7deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 76px;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink-0);
  text-wrap: balance;
}

.hero .lede {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}

.hero-context {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-3);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-media {
  position: relative;
  width: min(100%, 252px);
  justify-self: start;
}

.hero-device {
  margin: 0;
  width: 100%;
}

.hero-device img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.48));
}

.poster-hero {
  transform: rotate(1deg) translateY(-2px);
  transition: transform 0.42s var(--ease), filter 0.42s var(--ease);
}

.hero-media:hover .poster-hero {
  transform: rotate(0deg) translateY(-7px);
  filter: saturate(1.05);
}

/* =========================================================
   Product loop
   ========================================================= */

.loop-section {
  padding-top: 54px;
  padding-bottom: 44px;
}

.loop-section .section-head {
  max-width: none;
  margin-bottom: 34px;
}

.loop-section .section-title {
  max-width: 100%;
}

.loop-section .section-sub {
  max-width: 980px;
}

.loop-section,
.for-section,
.download-section,
footer {
  background: var(--appstore-matte);
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  margin-top: 30px;
}

.loop-card {
  min-width: 0;
  transition: transform 0.34s var(--ease), filter 0.34s var(--ease);
}

.loop-card .poster {
  aspect-ratio: 600 / 1300;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: auto;
}

.loop-card .poster::before {
  display: none;
}

.loop-card .poster img {
  object-fit: contain;
  object-position: top center;
  background: transparent;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.24));
  transition: filter 0.34s var(--ease), transform 0.34s var(--ease);
}

.loop-card:hover {
  transform: translateY(-6px);
  filter: saturate(1.04);
}

.loop-card:hover .poster img {
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.28));
}

/* =========================================================
   Who it is for
   ========================================================= */

.for-section {
  padding-top: 52px;
  overflow: hidden;
}

.for-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.for-copy {
  position: relative;
}

.goal-copy {
  margin: 36px 0 0;
  max-width: 510px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-0);
  text-wrap: balance;
}

.proof-inline {
  max-width: 520px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

.proof-inline .stars {
  margin: 0 0 18px;
}

.proof-inline blockquote {
  margin: 0;
}

.proof-inline blockquote p {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-0);
  text-wrap: balance;
}

.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.problem-list li {
  position: relative;
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid var(--hairline);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.24s var(--ease), transform 0.24s var(--ease), border-color 0.24s var(--ease);
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.035);
  transition: background 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.problem-list li:hover {
  color: var(--ink-0);
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.16);
}

.problem-list li:hover::before {
  background: var(--gold-1);
  box-shadow: 0 0 0 5px rgba(245, 205, 106, 0.08);
  transform: scale(1.08);
}

.stars {
  margin: 0 0 22px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--gold-1);
  text-shadow: 0 0 28px rgba(245, 205, 106, 0.16);
}

/* =========================================================
   Download CTA
   ========================================================= */

.download-section {
  padding: 56px 0 62px;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(16px, 2.2vw, 26px);
  align-items: center;
  padding: 42px 24px 0;
  border-top: 1px solid var(--hairline);
  background: transparent;
  overflow: visible;
}

.download-copy h2 {
  margin: 0;
  max-width: 580px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink-0);
  text-wrap: balance;
}

.download-copy {
  padding-left: clamp(0px, 1.1vw, 16px);
}

.download-copy p {
  margin: 18px 0 30px;
  max-width: 480px;
  font-size: 19px;
  color: var(--ink-2);
}

.download-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  transform: translateX(-18px) rotate(-1.5deg);
}

.download-strip img {
  width: 100%;
  aspect-ratio: 600 / 1300;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
}

.download-strip img:nth-child(2),
.download-strip img:nth-child(4) {
  transform: translateY(28px);
}

/* =========================================================
   Footer
   ========================================================= */

footer {
  padding: 38px 0 32px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink-0);
}

.footer-statement {
  max-width: 260px;
  font-size: 14px;
  color: var(--ink-2);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-3);
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--ink-1);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: color 0.2s, background-size 0.28s var(--ease), transform 0.2s;
}

.footer-col a:hover {
  color: var(--gold-1);
  background-size: 100% 1px;
  transform: translateX(2px);
}

.footer-divider {
  height: 1px;
  margin: 32px 0 18px;
  background: var(--hairline);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--ink-3);
}

.footer-platforms {
  text-transform: uppercase;
  color: var(--ink-3);
}

.footer-fineprint {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* =========================================================
   Motion
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.problem-list li.reveal.in:hover {
  transform: translateX(8px);
}

.download-strip img.reveal.in {
  transform: none;
}

.download-strip img:nth-child(2).reveal.in,
.download-strip img:nth-child(4).reveal.in {
  transform: translateY(28px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .hero {
    min-height: 0;
    padding-top: 108px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero h1,
  .hero .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    justify-self: center;
    width: min(100%, 248px);
  }

  .for-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .for-copy,
  .goal-copy {
    max-width: 720px;
  }

  .download-strip {
    max-width: 640px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 66px 0;
  }

  .section-title {
    font-size: 44px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .loop-card {
    display: block;
  }

  .loop-card .poster {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  body,
  main,
  section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy,
  .hero-media,
  .section-head,
  .loop-card,
  .download-copy {
    min-width: 0;
    max-width: 100%;
  }

  section {
    padding: 56px 0;
  }

  .nav {
    top: 12px;
    padding: 0 10px;
  }

  .nav-inner {
    gap: 8px;
    max-width: calc(100vw - 20px);
  }

  .nav-brand {
    min-height: 42px;
    padding: 5px 9px 5px 6px;
    gap: 7px;
  }

  .nav-brand img {
    width: 30px;
    height: 30px;
  }

  .nav-brand span {
    font-size: 14px;
  }

  .nav-pill {
    justify-content: flex-start;
  }

  .nav-pill a {
    padding: 9px 11px;
    font-size: 13px;
  }

  .nav-pill a[href="#how"],
  .nav-pill a[href="#for"],
  .nav-pill a[href="#reviews"] {
    display: none;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    width: 100%;
  }

  .hero-copy {
    width: 100%;
    max-width: 354px;
    margin: 0 auto;
  }

  .hero h1 {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 36px;
    line-height: 1;
    text-wrap: balance;
  }

  .hero .lede {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16.5px;
  }

  .hero-context {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14.5px;
  }

  .hero-cta {
    width: min(100%, 330px);
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .appstore-badge,
  .hero-cta .btn-ghost {
    width: 100%;
  }

  .hero-media {
    flex: 0 0 auto;
    width: min(100%, 226px);
  }

  .poster-hero {
    transform: rotate(1deg);
  }

  .section-title {
    max-width: 100%;
    font-size: 34px;
  }

  .section-sub {
    font-size: 17px;
  }

  .loop-card {
    display: block;
  }

  .loop-card .poster {
    max-width: none;
  }

  .goal-copy {
    margin-top: 28px;
  }

  .proof-inline {
    margin-top: 30px;
    padding-top: 24px;
  }

  .problem-list li {
    padding: 18px 0 18px 28px;
  }

  .problem-list li:hover {
    transform: none;
  }

  .problem-list li::before {
    top: 26px;
    width: 8px;
    height: 8px;
  }

  .download-panel {
    padding: 28px 18px 0;
    gap: 28px;
  }

  .download-copy h2 {
    font-size: 40px;
  }

  .download-strip {
    display: none;
  }

  .loop-grid {
    display: flex;
    gap: 16px;
    margin: 32px -18px 0;
    padding: 0 18px 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .loop-grid::-webkit-scrollbar {
    display: none;
  }

  .loop-card,
  .loop-card:hover,
  .loop-card-primary,
  .loop-card-primary:hover {
    flex: 0 0 min(78vw, 296px);
    transform: none;
    scroll-snap-align: center;
  }

  .loop-card .poster {
    max-height: 642px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 32px;
  }

  .nav-pill a[href="#for"] {
    display: none;
  }
}
