/* Arrow Escape — dark survival UI (reference: in-app Play / Shop screens) */

:root {
  --bg-deep: #121221;
  --bg-elevated: #1a1a2e;
  --surface: #1e1e30;
  --surface-2: #252538;
  --text: #f8fafc;
  --muted: #a8b0c8;
  --gold: #ffd700;
  --gold-dim: rgba(255, 215, 0, 0.35);
  --accent-start: #ff8c42;
  --accent-end: #f45d48;
  --teal: #4fd1c5;
  --teal-dim: rgba(79, 209, 197, 0.35);
  --ring: rgba(244, 93, 72, 0.55);
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 80px rgba(0, 0, 0, 0.55);
  --font-display: "Russo One", system-ui, sans-serif;
  --font-body: "Chakra Petch", system-ui, sans-serif;
  /* iOS screenshots in /images use this frame; ratio box avoids stretch vs arbitrary aspect-ratio on <img> */
  --capture-aspect: 1242 / 2688;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 200;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg-deep);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Ambient background */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-scene__grid {
  position: absolute;
  inset: -40%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 10%, transparent 70%);
}

.bg-scene__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.bg-scene__orb--a {
  width: 420px;
  height: 420px;
  background: #f45d48;
  top: -120px;
  right: -80px;
}

.bg-scene__orb--b {
  width: 360px;
  height: 360px;
  background: #4fd1c5;
  bottom: 10%;
  left: -120px;
  opacity: 0.22;
}

.bg-scene__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, transparent 40%, var(--bg-deep) 100%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 33, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.navbar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.92;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(255, 140, 66, 0.35);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(244, 93, 72, 0.2);
}

.brand__mark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand__mark--footer {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.brand__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.brand__tag {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(79, 209, 197, 0.45);
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links__a {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.nav-links__a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  color: #fff;
  box-shadow: 0 10px 36px rgba(244, 93, 72, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 14px 44px rgba(244, 93, 72, 0.45);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(79, 209, 197, 0.55);
  color: var(--teal);
}

.btn--ghost:hover {
  background: rgba(79, 209, 197, 0.08);
  border-color: var(--teal);
}

.btn--store {
  min-height: 48px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn__icon {
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding: 2.5rem 1.25rem 3.5rem;
}

.hero__wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(30, 30, 48, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin: 1rem 0 0.85rem;
  letter-spacing: 0.01em;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  background: linear-gradient(90deg, #fff, #ffc48a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero__hud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero__stat svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.hero__stat-label {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
}

.hero__glow {
  position: absolute;
  inset: 10% -5% auto;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(244, 93, 72, 0.35), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}

.phone-frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.phone-frame__bezel {
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2a40, #12121c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glow), 0 0 0 1px rgba(244, 93, 72, 0.12);
}

.phone-frame__screen {
  border-radius: 28px;
  overflow: hidden;
  background: #0b0b12;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.capture-viewport {
  aspect-ratio: 1242 / 2688;
  aspect-ratio: var(--capture-aspect);
  overflow: hidden;
  background: #0b0b12;
}

.capture-viewport--hero {
  width: 100%;
  border-radius: 28px;
}

.capture-viewport--feature {
  width: min(100%, calc(1242 * min(620px, 74vh) / 2688));
  margin-inline: auto;
  border-radius: 20px;
}

.capture-viewport--download {
  width: min(100%, calc(1242 * min(480px, 52vh) / 2688));
  margin-inline: auto;
  border-radius: calc(var(--radius-md) - 2px);
}

.phone-frame__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: 3rem 1.25rem 4rem;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__inner--features {
  max-width: 1180px;
}

.section__head {
  margin-bottom: 2rem;
}

.section__head--features {
  margin-bottom: 2.25rem;
}

.section__sub--wide {
  max-width: 44rem;
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.section__sub {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* Features — split storytelling (copy vs. device frame) */
.features {
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, rgba(30, 30, 48, 0.35) 35%, rgba(30, 30, 48, 0.35) 65%, transparent 100%);
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.feature-rail__item {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-rail__item:hover {
  border-color: rgba(255, 140, 66, 0.28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.feature-rail__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.feature-rail__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.feature-stories {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-story:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.feature-story--reverse .feature-story__copy {
  order: 2;
}

.feature-story--reverse .feature-story__media {
  order: 1;
}

.feature-story--spotlight {
  padding: clamp(1rem, 3vw, 1.75rem);
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 209, 197, 0.35);
  background: rgba(26, 26, 46, 0.55);
  box-shadow: 0 0 0 1px rgba(79, 209, 197, 0.12);
}

.feature-story__copy {
  min-width: 0;
}

.feature-story__kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.65rem;
}

.feature-story__num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-start);
}

.feature-story__tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 209, 197, 0.35);
  background: rgba(79, 209, 197, 0.06);
}

.feature-story__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.feature-story__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-story__list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: #c5cbe0;
  font-size: 0.95rem;
}

.feature-story__list li {
  margin-bottom: 0.45rem;
}

.feature-story__list li:last-child {
  margin-bottom: 0;
}

.feature-story__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.feature-story__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.feature-story__chips li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.feature-story__stars {
  display: flex;
  gap: 3px;
}

.feature-story__media {
  min-width: 0;
}

.feature-frame {
  position: relative;
  margin: 0;
}

.feature-frame__glow {
  position: absolute;
  inset: 8% -6% 12%;
  background: radial-gradient(ellipse at 50% 30%, rgba(244, 93, 72, 0.32), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.feature-frame__glow--cool {
  background: radial-gradient(ellipse at 50% 30%, rgba(79, 209, 197, 0.22), transparent 68%);
}

.feature-frame__shell {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(165deg, #2c2c44, #14141f);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glow);
  max-width: min(400px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.feature-story--reverse .feature-frame__shell {
  margin-left: auto;
  margin-right: auto;
}

.feature-frame--accent .feature-frame__shell {
  border-color: rgba(79, 209, 197, 0.45);
  box-shadow:
    var(--shadow-glow),
    0 0 0 1px rgba(79, 209, 197, 0.2);
}

.feature-frame__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.feature-frame__cap {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
}

.star {
  width: 14px;
  height: 14px;
}

.feature-story__stars .star--fill {
  color: var(--gold);
}

.feature-story__stars .star--fill path {
  fill: currentColor;
  stroke: currentColor;
}

.feature-story__stars .star--line path {
  fill: none;
  stroke: var(--gold-dim);
}

/* Download */
.download {
  padding-bottom: 4.5rem;
}

.download__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30, 30, 48, 0.95), rgba(26, 26, 46, 0.98));
  border: 2px solid rgba(79, 209, 197, 0.45);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.download__panel::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.2), transparent 70%);
  pointer-events: none;
}

.download__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.download__lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 32rem;
}

.download__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.download__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.35rem 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elevated);
}

.download__art-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.95;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 1.25rem;
  background: rgba(10, 10, 18, 0.65);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.site-footer__tag {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__links a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
}

.site-footer__links a:hover {
  color: var(--teal);
}

.site-footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 12, 0.72);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glow);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 140, 66, 0.35);
}

.modal__title {
  font-family: var(--font-display);
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.modal__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.modal__ok {
  width: 100%;
  border: none;
}

body.nav-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 960px) {
  .hero__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead,
  .hero__note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__hud,
  .hero__cta-row {
    justify-content: center;
  }

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

  .feature-story,
  .feature-story--reverse,
  .feature-story--spotlight {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    gap: 1.75rem;
  }

  .feature-story--reverse .feature-story__copy,
  .feature-story--reverse .feature-story__media {
    order: unset;
  }

  .feature-story__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .download__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .download__lead {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    inset: 72px 12px auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: rgba(18, 18, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-glow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links__a {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .feature-rail {
    grid-template-columns: 1fr;
  }

  .feature-stories {
    gap: 2.75rem;
  }

  .feature-story {
    padding-bottom: 2.75rem;
  }

  .phone-frame {
    max-width: 280px;
  }
}
