/* ==========================================================================
   MusicFlex — musicflex.app
   The site runs on the app's own tokens: #1e1e1e canvas, #d42601 accent
   sampled from the icon, Doto as the display face. Doto is a dot-matrix
   display font — it *is* the identity at headline size and unreadable noise
   in a paragraph, so prose is handed back to Verdana exactly as the in-app
   transfer page does it.
   ========================================================================== */

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

:root {
  color-scheme: dark;

  --bg:      #1e1e1e;   /* the app's dark canvas */
  --void:    #141414;   /* recessed panels */
  --panel:   #191919;   /* raised panels */
  --line:    #333;
  --line-hi: #4a4a4a;

  --ink:     #c3c3c3;   /* body */
  --bright:  #ececec;   /* headings */
  --dim:     #a8a8a8;
  /* The app uses #676767 for hints; on a marketing page the same grey at
     label size drops under 3:1, so the web token is nudged up a step. */
  --hint:    #7d7d7d;

  --accent:  #d42601;   /* sampled from the icon's own red */
  --ember:   #ff6a45;   /* the accent, lit */

  --display: 'Doto', 'Courier New', monospace;
  --content: Verdana, Geneva, 'DejaVu Sans', sans-serif;

  --wrap: 1200px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 10px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--content);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* The whole page sits on a faint dot grid — the same dot-matrix logic as the
   typeface, one layer down. */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 4px 4px;
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: .7rem 1.1rem; z-index: 100;
}
.skip:focus { left: 0; }

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

/* --- Type ----------------------------------------------------------------- */

h1, h2, h3, .num, .kicker, .eyebrow, .brand__name, .btn, .claims, .formats {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .02em;
}

/* Doto is a dot-matrix face with wide, near-monospaced advances — it needs a
   noticeably smaller size than a proportional display font to hold two lines. */
h1 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.08;
  margin: .45em 0 .55em;
  color: var(--bright);
  text-wrap: balance;
}
h1 .hl {
  color: var(--accent);
  text-shadow: 0 0 34px rgba(212, 38, 1, .5);
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--bright);
  text-wrap: balance;
}

h3 {
  font-size: 1.12rem;
  margin: 0 0 .5em;
  color: var(--bright);
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

code {
  font-family: var(--display);
  font-size: .95em;
  color: var(--dim);
  background: var(--void);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: .1em .4em;
  white-space: nowrap;
}

em { font-style: normal; color: var(--bright); }

/* Wraps: the platform line is four names long and must not run off a phone. */
.eyebrow, .kicker {
  display: flex; align-items: center; flex-wrap: wrap; gap: .3rem .6rem;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--hint);
  margin: 0;
}
@media (max-width: 480px) {
  .eyebrow { font-size: .72rem; letter-spacing: .1em; }
}

.num {
  font-size: .9rem; letter-spacing: .2em;
  color: var(--accent);
  margin: 0 0 .9rem;
}

/* Small LED. The lit one breathes; the rest are dark bulbs on the panel. */
.led {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--line-hi); flex: none;
}
.led--on {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; } }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.5rem;
  font-size: .95rem;
  border: 1px solid var(--line-hi);
  border-radius: 8px;
  color: var(--bright);
  text-decoration: none;
  background: rgba(255, 255, 255, .05);
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.btn:hover { background: rgba(255, 255, 255, .1); border-color: var(--dim); transform: translateY(-1px); }

.btn--primary {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 8px 30px -12px rgba(212, 38, 1, .9);
}
.btn--primary:hover { background: var(--accent); filter: brightness(1.16); border-color: var(--accent); }

.btn--ghost { background: none; }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }

.cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* --- Top bar -------------------------------------------------------------- */

.topbar {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .8rem var(--pad);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.topbar.stuck,
body.menu-open .topbar {
  background: rgba(20, 20, 20, .85);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { border-radius: 22.4%; }
.brand__name { font-size: 1.05rem; color: var(--bright); }

.topnav { display: flex; gap: 1.6rem; }
.topnav a {
  font-size: .88rem; text-decoration: none; color: var(--dim);
  transition: color .18s;
}
.topnav a:hover { color: var(--accent); }

@media (max-width: 720px) { .topnav { display: none; } }

/* --- Mobile menu ---------------------------------------------------------- */

/* Hamburger: three bars that fold into an X. Desktop never sees it. */
.menubtn {
  display: none;
  width: 42px; height: 42px; flex: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
  border: 1px solid var(--line-hi);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}
.menubtn span {
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--bright);
  transition: transform .28s cubic-bezier(.2, .7, .3, 1), opacity .18s;
}
/* bar height 2px + 5px gap: the outer bars travel 7px to meet in the middle */
body.menu-open .menubtn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menubtn span:nth-child(2) { opacity: 0; }
body.menu-open .menubtn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* The overlay: whole screen, sitting under the topbar so brand + button stay. */
.mobilemenu {
  position: fixed; inset: 0; z-index: 40;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 1.5rem;
  padding: 5.5rem var(--pad) 3rem;
  background: rgba(20, 20, 20, .96);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  visibility: hidden; opacity: 0;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
body.menu-open { overflow: hidden; }
body.menu-open .mobilemenu {
  visibility: visible; opacity: 1;
  transition: opacity .25s ease;
}

.mobilemenu a:not(.btn) {
  display: flex; align-items: baseline; gap: .9rem;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.7rem, 7.5vw, 2.4rem);
  color: var(--bright); text-decoration: none;
}
.mobilemenu a:not(.btn):hover { color: var(--ember); }
.mobilemenu .num { font-size: .85rem; margin: 0; }
.mobilemenu .btn { margin-top: 1.4rem; }

/* Items fade in with a small rise, staggered by --d. The transition lives on
   the open state only, so closing is just the overlay fade. */
.mobilemenu a { opacity: 0; transform: translateY(14px); }
body.menu-open .mobilemenu a {
  opacity: 1; transform: none;
  transition: opacity .35s cubic-bezier(.2, .7, .3, 1) var(--d, 0ms),
              transform .35s cubic-bezier(.2, .7, .3, 1) var(--d, 0ms);
}

@media (min-width: 721px) { .mobilemenu { display: none; } }

@media (max-width: 720px) {
  .topbar__cta { display: none; }
  .menubtn { display: flex; }

  /* The brand name sits out until the hero wordmark has scrolled away —
     site.js flips .named on the topbar — then fades in. */
  .brand__name {
    opacity: 0; transform: translateY(5px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .topbar.named .brand__name,
  body.menu-open .brand__name { opacity: 1; transform: none; }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem var(--pad) 5rem;
  overflow: hidden;
}

.hero__art {
  position: absolute;
  inset: 0;
  background: url('assets/hero.jpg') center 40% / cover no-repeat;
  /* The generated art is warm and busy on the right; pulling it down and
     desaturating a touch keeps the headline the loudest thing on screen. */
  filter: saturate(0) brightness(.82);
}
/* Two scrims: one darkening the left third under the type, one fading the
   whole frame into the page background at the bottom seam. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,20,20,.97) 0%, rgba(20,20,20,.86) 32%, rgba(20,20,20,.25) 62%, rgba(20,20,20,.55) 100%),
    linear-gradient(to bottom, rgba(20,20,20,.85) 0%, transparent 22%, transparent 62%, var(--bg) 100%);
}

.hero__inner {
  position: relative;
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}

.hero__copy { max-width: 42rem; }

/* The site's name, set large in the display face — the same dot-matrix
   treatment the app wears on its own title screens. Sized deliberately below
   the h1 so the promise still outranks the brand. */
.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 22.9rem);
  line-height: 1;
  letter-spacing: .04em;
  color: var(--bright);
  margin: 0 0 1.1rem;
  text-shadow: 0 0 40px rgba(0, 0, 0, .8);
}
.wordmark__tld { color: var(--accent); }

.eyebrow .sep { color: var(--line-hi); margin: 0 .12rem; }

.lede { font-size: clamp(1rem, 1.15vw, 1.1rem); color: var(--dim); max-width: 34rem; }

.claims {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0 0 1.8rem; padding: 0;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
}
.claims li {
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  padding: .38rem .95rem;
  color: var(--dim);
  background: rgba(20, 20, 20, .5);
}
.claims li::before { content: '— '; color: var(--accent); }

.formats {
  display: flex; flex-wrap: wrap; gap: 1.1rem;
  margin: 2.2rem 0 0;
  font-size: .78rem; letter-spacing: .22em;
  color: var(--hint);
}
.formats span { position: relative; }
.formats span + span::before {
  content: '·'; position: absolute; left: -.68rem; color: var(--line-hi);
}

/* Phone frames — a bezel, not a skeuomorphic handset. */
.phone {
  border-radius: 42px;
  background: #0a0a0a;
  padding: 9px;
  border: 1px solid #2c2c2c;
  box-shadow: 0 2px 0 rgba(255, 255, 255, .06) inset, 0 50px 90px -40px rgba(0, 0, 0, .95), 0 0 70px -30px rgb(0 0 0);
}
.phone img { border-radius: 34px; }
.phone--lg { width: min(100%, 340px); }
.phone--md { width: min(100%, 300px); }
.phone--sm { width: min(100%, 250px); flex: none; }

.hero__device { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
@media (max-width: 900px) { .hero__device .meter { display: none; } }

/* The level meter: the one moving part in the hero. */
.meter { display: flex; align-items: flex-end; gap: 5px; height: 44px; }
.meter i {
  width: 4px; border-radius: 2px;
  height: var(--h);
  background: linear-gradient(to top, var(--accent), var(--ember));
  opacity: .85;
  animation: bounce 1.5s ease-in-out infinite;
  transform-origin: bottom;
}
.meter i:nth-child(2n)  { animation-duration: 1.9s; }
.meter i:nth-child(3n)  { animation-duration: 1.2s; animation-delay: -.4s; }
.meter i:nth-child(4n)  { animation-duration: 2.2s; animation-delay: -.8s; }
.meter i:nth-child(5n)  { animation-delay: -.25s; }
@keyframes bounce {
  0%, 100% { transform: scaleY(.45); }
  50%      { transform: scaleY(1); }
}

.hero__more {
  position: absolute; left: 50%; bottom: 1.8rem; translate: -50% 0;
  width: 26px; height: 42px; border: 1px solid var(--line-hi); border-radius: 999px;
  display: grid; place-items: start center; padding-top: 7px;
}
.hero__more span {
  width: 3px; height: 8px; border-radius: 2px; background: var(--accent);
  animation: scrolldot 1.9s ease-in-out infinite;
}
@keyframes scrolldot { 50% { transform: translateY(14px); opacity: .2; } }
@media (max-height: 720px), (max-width: 760px) { .hero__more { display: none; } }

/* --- Sections ------------------------------------------------------------- */

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.band {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--void);
  border-block: 1px solid var(--line);
}

.shead { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.shead h2 { margin-top: .8rem; }
.shead__sub { color: var(--dim); }
.shead--center { margin-inline: auto; text-align: center; }
.shead--center .kicker { justify-content: center; }

/* Pitch trio */
.pitch { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1.8rem, 4vw, 3.5rem); }
.pitch h2 { font-size: 1.3rem; margin-bottom: .55em; }
.pitch p:not(.num) { color: var(--dim); font-size: .95rem; margin: 0; }

/* --- Transfer ------------------------------------------------------------- */

.section--transfer { position: relative; }
/* A single ember bloom behind the marquee feature. */
.section--transfer::before {
  content: '';
  position: absolute; top: 12%; left: 50%; translate: -50% 0;
  width: min(900px, 90vw); height: 460px;
  background: radial-gradient(ellipse at center, rgba(212, 38, 1, .17), transparent 68%);
  pointer-events: none;
}
.section--transfer > .wrap { position: relative; }

/* The browser shot leads full-width — it's the thing that makes the feature
   click — and the three steps read as a row underneath it. */
.steps {
  list-style: none; margin: clamp(2.5rem, 5vw, 4rem) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.steps li { border-left: 1px solid var(--line); padding-left: 1.3rem; }
.steps .num { margin-bottom: .4rem; }
.steps p:not(.num) { color: var(--dim); font-size: .92rem; margin: 0; }

/* Browser chrome around the desktop screenshot. */
.shot { margin: 0; }
.shot__frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--void);
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, 1);
}
.shot__bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .6rem .8rem;
  background: #101010;
  border-bottom: 1px solid var(--line);
}
.shot__bar i { width: 9px; height: 9px; border-radius: 50%; background: #2f2f2f; flex: none; }
.shot__bar span {
  font-family: var(--display); font-size: .72rem; color: var(--hint);
  margin-left: .7rem; letter-spacing: .06em;
}
.shot img { display: block; }
.shot figcaption {
  margin-top: .9rem; font-size: .82rem; color: var(--hint); text-align: center;
}

.pair {
  display: flex; align-items: center; gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .pair { flex-direction: column; align-items: flex-start; } }
.pair__copy { max-width: 42rem; }
.pair__copy p { color: var(--dim); }

/* --- Split (Files) -------------------------------------------------------- */

.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .7fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split__copy h2 { margin-top: .8rem; }
.split__copy p { color: var(--dim); }
.split__art { display: flex; justify-content: center; }

/* Tick lists */
.ticks { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .7rem; }
.ticks li {
  position: relative; padding-left: 1.6rem;
  font-size: .92rem; color: var(--dim);
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .58em;
  width: 7px; height: 7px; border-radius: 1px;
  background: var(--accent);
}

/* --- About ---------------------------------------------------------------- */

.about {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

/* The photo is already halftoned — the frame stays out of its way and just
   lifts it off the canvas with the accent it's lit in. */
.about__portrait { margin: 0; }
.about__portrait img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow:
    0 40px 80px -40px rgba(0, 0, 0, .95),
    0 0 90px -40px rgba(212, 38, 1, .75);
}

.about__copy h2 { margin-top: .8rem; }
.about__copy p { color: var(--dim); }
.about__standfirst { color: var(--ink) !important; font-size: 1.05rem; }
.about__sign {
  font-family: var(--display); font-weight: 700;
  color: var(--hint) !important; margin-top: 1.6rem;
}

/* --- Card grid ------------------------------------------------------------ */

/* 320px floor lands six cards as a clean 3x2 at full width rather than 4+2. */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card {
  background: var(--panel);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: background .25s;
}
.card:hover { background: #1f1f1f; }
.card p { color: var(--dim); font-size: .92rem; margin: 0; }

/* --- Beta ----------------------------------------------------------------- */

.beta {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--void);
  border-block: 1px solid var(--line);
  text-align: center;
}
.beta__inner { max-width: 44rem; }
.beta .kicker { justify-content: center; }
.beta h2 { margin-top: .8rem; }
.beta p { color: var(--dim); }
.beta .cta { justify-content: center; margin-top: 2rem; }
.fineprint {
  margin-top: 1.2rem; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--hint);
  font-family: var(--display);
}

/* --- Footer --------------------------------------------------------------- */

.foot { padding: 2.6rem 0; }
.foot__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
  justify-content: space-between;
}
.foot__brand { display: flex; align-items: center; gap: .8rem; }
.foot__brand img { border-radius: 22.4%; }
.foot__name { font-family: var(--display); font-weight: 700; color: var(--bright); margin: 0; }
.foot__by, .foot__copy, .foot__line { margin: 0; font-size: .82rem; color: var(--hint); }
.foot__line a, .foot__copy a { color: var(--dim); text-decoration: none; }
.foot__line a:hover, .foot__copy a:hover { color: var(--accent); text-decoration: underline; }

/* --- Legal pages ---------------------------------------------------------- */

/* The topbar floats with no hero underneath it, so the article clears it with
   its own headroom. Reading measure, not marketing measure. */
.legal {
  max-width: 44rem;
  margin-inline: auto;
  padding-top: clamp(4.5rem, 10vw, 6.5rem);
}
.legal h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  margin: .5em 0 .3em;
}
.legal h1 .hl {
  color: var(--accent);
  text-shadow: 0 0 34px rgba(212, 38, 1, .5);
}
.legal__date {
  font-family: var(--display); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 2.4rem;
}
.legal__standfirst { color: var(--ink); font-size: 1.05rem; }
.legal p { color: var(--dim); }
.legal h2 {
  font-size: 1.2rem;
  margin: 2.2em 0 .6em;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
}
.legal a { color: var(--ink); text-decoration-color: var(--line-hi); }
.legal a:hover { color: var(--ember); }

/* --- Reveal --------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); }
.reveal--rise { transform: translateY(34px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .75s cubic-bezier(.2, .7, .3, 1) var(--d, 0ms),
              transform .75s cubic-bezier(.2, .7, .3, 1) var(--d, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .meter i, .led--on, .hero__more span { animation: none !important; }
  .mobilemenu, .mobilemenu a, .menubtn span, .brand__name { transition: none !important; }
  .mobilemenu a { transform: none; }
}

/* --- Small screens -------------------------------------------------------- */

@media (max-width: 860px) {
  /* Stack, but keep the headline first — the phone follows the promise, it
     doesn't push it off the fold. */
  .hero__inner { grid-template-columns: 1fr; }
  .hero__device { align-items: flex-start; }
  .phone--lg { width: min(70%, 250px); }
  .hero { padding-top: 6rem; min-height: 0; }
  .hero__scrim {
    background:
      linear-gradient(to bottom, rgba(20,20,20,.92) 0%, rgba(20,20,20,.72) 45%, var(--bg) 100%);
  }
}

@media (max-width: 480px) {
  .cta .btn { width: 100%; }
}
