:root {
  --bg: #f7efe4;
  --panel: rgba(255, 250, 245, 0.84);
  --panel-strong: rgba(255, 248, 241, 0.96);
  --text: #3b241f;
  --muted: #7a625b;
  --line: rgba(108, 76, 68, 0.16);
  --accent: #dd6f67;
  --accent-strong: #c4554c;
  --accent-soft: rgba(221, 111, 103, 0.14);
  --green: #4f8f67;
  --shadow: 0 22px 60px rgba(91, 63, 54, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(141, 198, 164, 0.26), transparent 30%),
    radial-gradient(circle at top right, rgba(221, 111, 103, 0.22), transparent 26%),
    linear-gradient(180deg, #fbf4ec 0%, #f5ebde 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Nunito Sans", "Trebuchet MS", sans-serif;
}

a {
  color: inherit;
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.shell {
  background: var(--panel);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 48px 48px 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(159, 212, 180, 0.38), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(245, 160, 152, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(255, 249, 244, 0.94), rgba(255, 246, 240, 0.78));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 40px 0;
  height: 1px;
  background: var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9cd5a0, #4f8f67);
  box-shadow: 0 0 0 6px rgba(79, 143, 103, 0.12);
}

.hero h1 {
  margin: 18px 0 12px;
  max-width: 12ch;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 14px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 48px 0;
}

.nav a,
.home-card {
  text-decoration: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 700;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.nav-link:hover,
.nav-link.active {
  transform: translateY(-1px);
  background: var(--accent);
  color: #fff8f5;
}

.content {
  padding: 28px 48px 48px;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  margin-bottom: 22px;
}

.landing-copy,
.hero-stage {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(100, 72, 62, 0.06);
}

.landing-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.landing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eb9087, #4f8f67);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.app-store-button {
  position: relative;
  display: inline-grid;
  min-width: 220px;
  padding: 14px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1f1a20, #3a2a35);
  color: #fff;
  box-shadow: 0 18px 30px rgba(38, 28, 36, 0.24);
}

.app-store-button .mini {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.72;
}

.app-store-button .big {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-top: 4px;
}

.app-store-button .status {
  margin-top: 10px;
  font-size: 12px;
  color: #ffd2ce;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-store-button.is-disabled {
  cursor: default;
  pointer-events: none;
}

.secondary-link {
  font-weight: 800;
  color: var(--accent-strong);
  text-decoration: none;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background:
    radial-gradient(circle at top, rgba(255, 221, 218, 0.62), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.9), rgba(248, 239, 232, 0.9));
}

.hero-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

#pretext-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.phone-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(260px, calc(100% - 48px));
  padding: 14px;
  border-radius: 26px;
  background: rgba(41, 28, 35, 0.92);
  color: #fff5f0;
  box-shadow: 0 20px 44px rgba(43, 28, 37, 0.28);
}

.phone-card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 239, 232, 0.42);
}

.phone-label {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffbcb6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-title {
  margin-top: 14px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.phone-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.phone-metric-row strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.phone-metric-row span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 242, 236, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.prose {
  display: grid;
  gap: 18px;
}

.prose section,
.home-card {
  padding: 24px 24px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(100, 72, 62, 0.06);
}

.prose h2,
.home-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.prose p,
.prose li,
.home-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.prose ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

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

.home-card {
  display: block;
  min-height: 180px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-card:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 111, 103, 0.3);
  box-shadow: 0 20px 36px rgba(100, 72, 62, 0.1);
}

.home-card .pill {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--accent-strong);
  font-weight: 700;
}

@media (max-width: 760px) {
  .page {
    width: min(100%, calc(100% - 18px));
    padding-top: 10px;
  }

  .hero,
  .nav,
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1 {
    max-width: none;
  }

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

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

  .hero-stage {
    min-height: 0;
  }

  .phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .prose section,
  .home-card,
  .landing-copy,
  .hero-stage {
    padding: 20px 18px;
  }
}

body.landing-home {
  background:
    radial-gradient(circle at top, rgba(98, 160, 125, 0.16), transparent 28%),
    linear-gradient(180deg, #0d1421 0%, #09111c 100%);
  color: #f7f0e0;
  font-family: "Inter", "Avenir Next", "Nunito Sans", sans-serif;
}

.landing-home .landing-page {
  width: 100%;
  overflow: clip;
}

.landing-home a {
  color: inherit;
  text-decoration: none;
}

.landing-home img {
  display: block;
  max-width: 100%;
}

.landing-home figure {
  margin: 0;
}

.landing-home .section-pad,
.landing-home .hero-inner,
.landing-home .footer-pad {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.landing-home .home-hero,
.landing-home .section-surface,
.landing-home .biome-section,
.landing-home .landing-footer {
  position: relative;
}

.landing-home .screenshots-section,
.landing-home .features-section,
.landing-home .stats-section,
.landing-home .quote-section,
.landing-home .cta-section,
.landing-home .biome-section,
.landing-home .landing-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.landing-home .home-hero {
  min-height: 900px;
  background:
    linear-gradient(180deg, rgba(9, 16, 28, 0.54), rgba(9, 16, 28, 0.68)),
    url("/assets/space_bg.webp") center/cover no-repeat,
    #0d1421;
  padding: 80px 0 60px;
}

.landing-home .hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.landing-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid #59b259;
  border-radius: 999px;
  padding: 6px 20px;
  color: #59b259;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-home .home-hero h1,
.landing-home .section-header h2,
.landing-home .features-header h2,
.landing-home .cta-section h2,
.landing-home .footer-brand strong,
.landing-home .quote-section blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
}

.landing-home .home-hero h1 {
  width: min(900px, 100%);
  font-size: clamp(3.4rem, 6.2vw, 58px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.landing-home .hero-subtitle {
  width: min(660px, 100%);
  margin: 0;
  color: #b8c4d0;
  font-size: 18px;
  line-height: 1.65;
}

.landing-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.landing-home .store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 28px;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.landing-home .store-button-primary {
  background: #59b259;
  color: #0d1421;
}

.landing-home .store-button-logo,
.landing-home .cta-store-logo {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.landing-home .hero-orb {
  width: 260px;
  height: 260px;
  margin-top: 8px;
}

.landing-home .hero-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-home .hero-streak,
.landing-home .cta-streak {
  position: absolute;
  display: block;
  background-repeat: no-repeat;
}

.landing-home .hero-streak-left {
  left: 60px;
  top: 200px;
  width: 280px;
  height: 2px;
  transform: rotate(22deg);
  background-image: linear-gradient(90deg, transparent, rgba(89, 178, 89, 0.27), transparent);
}

.landing-home .hero-streak-right {
  top: 240px;
  right: 100px;
  width: 260px;
  height: 2px;
  transform: rotate(-20deg);
  background-image: linear-gradient(90deg, transparent, rgba(153, 217, 217, 0.21), transparent);
}

.landing-home .hero-streak-bottom {
  left: 120px;
  bottom: 188px;
  width: 180px;
  height: 1px;
  transform: rotate(10deg);
  background-image: linear-gradient(90deg, transparent, rgba(89, 178, 89, 0.15), transparent);
}

.landing-home .section-city {
  background:
    linear-gradient(180deg, rgba(13, 20, 33, 0.6), rgba(13, 20, 33, 0.82)),
    url("/assets/biome_city.webp") center/cover no-repeat,
    #0f1728;
}

.landing-home .section-river {
  background:
    linear-gradient(180deg, rgba(13, 20, 33, 0.36), rgba(13, 20, 33, 0.66)),
    url("/assets/biome_river_valley.webp") center/cover no-repeat,
    #0e1724;
}

.landing-home .section-mountain {
  background:
    linear-gradient(180deg, rgba(11, 17, 31, 0.52), rgba(11, 17, 31, 0.74)),
    url("/assets/biome_mountain.webp") center/cover no-repeat,
    #101a2d;
}

.landing-home .quote-section {
  background:
    linear-gradient(180deg, rgba(13, 20, 33, 0.34), rgba(13, 20, 33, 0.8)),
    url("/assets/focus_completion_scene.webp") center/cover no-repeat,
    #0b1220;
}

.landing-home .section-sky {
  background:
    linear-gradient(180deg, rgba(13, 20, 33, 0.44), rgba(13, 20, 33, 0.78)),
    url("/assets/biome_sky_islands.webp") center/cover no-repeat,
    #0b1423;
}

.landing-home .screenshots-pad,
.landing-home .stats-pad {
  padding: 80px 0;
}

.landing-home .features-pad {
  padding: 60px 0 80px;
}

.landing-home .quote-pad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 72px min(200px, 12vw);
  text-align: center;
}

.landing-home .cta-pad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 100px 0;
  text-align: center;
}

.landing-home .biome-pad {
  padding: 72px 0;
}

.landing-home .section-header,
.landing-home .features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.landing-home .section-header p,
.landing-home .cta-copy {
  width: min(760px, 100%);
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.landing-home .screenshots-section .section-header h2,
.landing-home .features-header h2 {
  font-size: clamp(2.4rem, 5vw, 44px);
  font-weight: 700;
  line-height: 1.18;
}

.landing-home .stats-section .section-header h2,
.landing-home .biome-section .section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 40px);
  font-weight: 700;
  line-height: 1.18;
}

.landing-home .cta-section h2 {
  font-size: clamp(2.8rem, 5.5vw, 52px);
  font-weight: 700;
  line-height: 1.18;
}

.landing-home .screenshots-section .section-header p {
  color: #ffffff;
}

.landing-home .biome-section .section-header p {
  color: #7a9fc0;
}

.landing-home .features-header {
  margin-bottom: 40px;
}

.landing-home .features-header h2 {
  width: min(700px, 100%);
  color: #f7f0e0;
}

.landing-home .section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-home .section-eyebrow-green {
  color: #59b259;
}

.landing-home .section-eyebrow-cyan {
  color: #99d9d9;
}

.landing-home .phone-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  margin-top: 48px;
  overflow: hidden;
}

.landing-home .phone-shell {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(150, 171, 212, 0.32);
  border-radius: 32px;
  padding: 8px;
  background: #141f40;
  box-shadow: 0 24px 44px rgba(4, 8, 17, 0.38);
}

.landing-home .phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.landing-home .phone-small {
  width: 220px;
  height: 511px;
}

.landing-home .phone-large {
  width: 240px;
  height: 535px;
}

.landing-home .phone-mid {
  width: 220px;
  height: 514px;
}

.landing-home .phone-featured {
  border-color: rgba(89, 178, 89, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(89, 178, 89, 0.24),
    0 24px 44px rgba(4, 8, 17, 0.42);
}

.landing-home .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.landing-home .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 208px;
  border-radius: 16px;
  padding: 28px 24px;
}

.landing-home .feature-card-green {
  border: 1px solid rgba(89, 178, 89, 0.21);
  background: transparent;
}

.landing-home .feature-card-cyan {
  border: 1px solid rgba(153, 217, 217, 0.21);
  background: transparent;
}

.landing-home .feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.landing-home .globe-icon {
  border-radius: 50%;
}

.landing-home .feature-card h3 {
  margin: 0;
  color: #f7f0e0;
  font-size: 16px;
  font-weight: 700;
}

.landing-home .feature-card p {
  margin: 0;
  color: #f2f4f7;
  font-size: 14px;
  line-height: 1.7;
}

.landing-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin-top: 56px;
}

.landing-home .stat-card {
  padding: 32px 20px;
  border: 1px solid #2d3f6b;
  background: transparent;
  text-align: center;
}

.landing-home .stat-card strong {
  display: block;
  color: #59b259;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5.2vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.landing-home .stat-card:nth-child(2) strong {
  color: #99d9d9;
}

.landing-home .stat-card:nth-child(3) strong {
  color: #b3ecc9;
}

.landing-home .stat-card span {
  display: block;
  margin-top: 8px;
  color: #7a9fc0;
  font-size: 14px;
}

.landing-home .quote-mark {
  color: rgba(247, 240, 224, 0.6);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.landing-home .quote-section blockquote {
  width: min(840px, 100%);
  color: #f7f0e0;
  font-size: clamp(1.7rem, 3vw, 24px);
  line-height: 1.55;
  font-style: italic;
}

.landing-home .cta-streak-top {
  left: 300px;
  top: 80px;
  width: 600px;
  height: 4px;
  transform: none;
  background: rgba(89, 178, 89, 0.31);
  filter: blur(1px);
}

.landing-home .cta-streak-mid {
  left: 600px;
  top: 200px;
  width: 400px;
  height: 3px;
  transform: none;
  background: rgba(153, 217, 217, 0.28);
  filter: blur(1px);
}

.landing-home .cta-mascot {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.landing-home .cta-copy {
  color: #a8c8b0;
  font-size: 18px;
}

.landing-home .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.landing-home .cta-store-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 200px;
  height: 60px;
  border-radius: 14px;
  padding: 12px 18px;
  background: #59b259;
  color: #fff;
  text-align: left;
}

.landing-home .cta-store-card {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.landing-home .store-small,
.landing-home .cta-note {
  font-family: "Inter", "Avenir Next", sans-serif;
}

.landing-home .store-small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.landing-home .store-big {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
}

.landing-home .cta-store-card > .store-small,
.landing-home .cta-store-card > .store-big {
  width: 100%;
}

.landing-home .cta-store-logo {
  width: 16px;
  height: 16px;
  margin-bottom: 6px;
}

.landing-home .cta-note {
  margin: 0;
  color: #7a9fc0;
  font-size: 13px;
}

.landing-home .biome-section {
  background: #0a1220;
}

.landing-home .biome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.landing-home .biome-grid-top {
  margin-top: 40px;
}

.landing-home .biome-grid-bottom {
  margin-top: 16px;
}

.landing-home .biome-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 16px;
  background: #13213a;
  box-shadow: inset 0 -90px 80px rgba(9, 14, 23, 0.48);
}

.landing-home .biome-card-short {
  min-height: 200px;
}

.landing-home .biome-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-home .biome-card span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.landing-home .landing-footer {
  background: #000;
}

.landing-home .footer-pad {
  padding: 40px 0 28px;
}

.landing-home .footer-top,
.landing-home .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.landing-home .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-home .footer-brand strong {
  font-size: 22px;
  line-height: 1;
}

.landing-home .footer-brand span,
.landing-home .footer-links a,
.landing-home .footer-bottom span {
  color: #7a9fc0;
  font-size: 13px;
}

.landing-home .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.landing-home .footer-divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: #1e2b3a;
}

.landing-home .footer-bottom span {
  color: #4a5568;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .landing-home .phone-row {
    gap: 20px;
  }

  .landing-home .phone-small,
  .landing-home .phone-mid {
    width: 180px;
    height: 418px;
  }

  .landing-home .phone-large {
    width: 204px;
    height: 454px;
  }
}

@media (max-width: 960px) {
  .landing-home .home-hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .landing-home .section-pad,
  .landing-home .hero-inner,
  .landing-home .footer-pad {
    width: min(1280px, calc(100% - 32px));
  }

  .landing-home .phone-row {
    flex-wrap: wrap;
  }

  .landing-home .feature-grid,
  .landing-home .stats-grid,
  .landing-home .biome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .landing-home .section-pad,
  .landing-home .hero-inner,
  .landing-home .footer-pad {
    width: calc(100% - 24px);
  }

  .landing-home .home-hero {
    padding-top: 40px;
    background-position: center top;
  }

  .landing-home .home-hero h1 {
    font-size: clamp(2.55rem, 12vw, 44px);
  }

  .landing-home .hero-subtitle,
  .landing-home .section-header p,
  .landing-home .cta-copy {
    font-size: 16px;
  }

  .landing-home .hero-actions,
  .landing-home .cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .landing-home .store-button,
  .landing-home .cta-store-card {
    width: 100%;
  }

  .landing-home .hero-orb {
    width: 210px;
    height: 210px;
  }

  .landing-home .hero-orb img,
  .landing-home .cta-mascot {
    width: 150px;
    height: 150px;
  }

  .landing-home .screenshots-pad,
  .landing-home .stats-pad,
  .landing-home .biome-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .landing-home .features-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .landing-home .quote-pad,
  .landing-home .cta-pad {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .landing-home .phone-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .landing-home .phone-shell,
  .landing-home .phone-small,
  .landing-home .phone-mid,
  .landing-home .phone-large {
    width: 100%;
    height: auto;
    aspect-ratio: 220 / 511;
  }

  .landing-home .phone-mid {
    aspect-ratio: 220 / 514;
  }

  .landing-home .phone-large {
    aspect-ratio: 240 / 535;
  }

  .landing-home .phone-row .phone-shell:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 280px;
    justify-self: center;
  }

  .landing-home .feature-grid,
  .landing-home .stats-grid,
  .landing-home .biome-grid {
    grid-template-columns: 1fr;
  }

  .landing-home .quote-pad {
    padding-left: 12px;
    padding-right: 12px;
  }

  .landing-home .cta-note {
    line-height: 1.6;
  }

  .landing-home .footer-top,
  .landing-home .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-home .footer-links {
    gap: 18px;
  }

  .landing-home .hero-streak,
  .landing-home .cta-streak {
    display: none;
  }
}
