:root {
  color-scheme: light;
  --brand: #0e4b3f;
  --brand-strong: #083b32;
  --brand-soft: #e6f0ed;
  --accent: #d99d53;
  --background: #f7f5f0;
  --surface: #ffffff;
  --text: #17231f;
  --muted: #60706a;
  --subtle: #7d8985;
  --border: #e7e3da;
  --shadow: 0 18px 48px rgba(14, 75, 63, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 157, 83, 0.12), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-strong);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 157, 83, 0.7);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(231, 227, 218, 0.82);
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner,
.page,
.footer-inner {
  width: min(100% - 40px, 960px);
  margin-inline: auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(14, 75, 63, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand);
}

.page {
  padding-block: 64px 80px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 7vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0e4b3f 0%, #176657 100%);
  box-shadow: var(--shadow);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 72px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #c8e1da;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(35px, 7vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-bottom: 0;
  color: #e8f2ef;
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.6;
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d99d53;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}

.content,
.side-card,
.card,
.faq-list details,
.contact-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(14, 75, 63, 0.045);
}

.content {
  padding: clamp(24px, 5vw, 44px);
  border-radius: var(--radius-lg);
}

.content section + section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.content h2 {
  margin-bottom: 12px;
  color: var(--brand-strong);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.content h3 {
  margin: 25px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.content p:last-child,
.content ul:last-child {
  margin-bottom: 0;
}

.content li + li {
  margin-top: 8px;
}

.side-card {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: var(--radius-md);
}

.side-card h2 {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.side-card ol {
  margin: 0;
  padding-left: 20px;
}

.side-card li + li {
  margin-top: 7px;
}

.side-card a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.side-card a:hover {
  color: var(--brand);
}

.notice {
  margin: 30px 0 0;
  padding: 18px 20px;
  border: 1px solid #c9ddd7;
  border-radius: var(--radius-md);
  background: var(--brand-soft);
  color: #23453d;
}

.notice strong {
  color: var(--brand-strong);
}

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

.card {
  padding: 25px;
  border-radius: var(--radius-md);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card h2,
.card h3 {
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--brand-strong);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand);
}

.section-heading {
  margin: 48px 0 18px;
  color: var(--brand-strong);
  font-size: 29px;
  letter-spacing: -0.03em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: var(--radius-md);
}

.faq-list summary {
  position: relative;
  padding: 20px 55px 20px 22px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 20px;
  color: var(--brand);
  font-size: 24px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 21px;
  color: var(--muted);
}

.faq-answer p:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 34px;
  padding: clamp(24px, 5vw, 38px);
  border-radius: var(--radius-lg);
}

.contact-card h2 {
  margin-bottom: 7px;
  color: var(--brand-strong);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.contact-card p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--subtle);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand);
}

@media (max-width: 760px) {
  .header-inner,
  .page,
  .footer-inner {
    width: min(100% - 28px, 960px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav a {
    padding: 7px 8px;
    font-size: 13px;
  }

  .page {
    padding-block: 34px 56px;
  }

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

  .side-card {
    position: static;
    order: -1;
  }

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

  .contact-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    justify-content: center;
    padding-block: 28px;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 18px;
  }

  .nav {
    gap: 0;
  }

  .nav a {
    padding-inline: 6px;
  }

  .hero {
    border-radius: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Root application directory */
.root-portal {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 75% 10%, rgba(217, 157, 83, 0.18), transparent 28rem),
    var(--brand-strong);
}

.root-portal main {
  width: min(100%, 680px);
}

.app-entry {
  display: grid;
  padding: clamp(24px, 6vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.app-entry:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  transform: translateY(-3px);
}

.app-entry img {
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.app-entry > span:not(.app-entry-arrow) {
  display: grid;
}

.app-entry small {
  margin-bottom: 2px;
  color: #91b7ad;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-entry strong {
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.app-entry > span > span {
  margin-top: 8px;
  color: #cce0db;
  font-size: 15px;
  line-height: 1.5;
}

.app-entry-arrow {
  color: #dfac6c;
  font-size: 34px;
  transition: transform 160ms ease;
}

.app-entry:hover .app-entry-arrow {
  transform: translateX(5px);
}

@media (max-width: 560px) {
  .app-entry {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }

  .app-entry img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .app-entry-arrow {
    display: none;
  }
}

/* Launch homepage */
.home-page {
  background: var(--brand-strong);
}

.home-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 59, 50, 0.86);
}

.home-header .brand,
.home-header .nav a {
  color: rgba(255, 255, 255, 0.78);
}

.home-header .brand {
  color: #fff;
}

.home-header .nav a:hover,
.home-header .nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.launch-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 157, 83, 0.18), transparent 23rem),
    radial-gradient(circle at 6% 76%, rgba(80, 150, 133, 0.25), transparent 25rem),
    var(--brand-strong);
  color: #fff;
}

.launch-hero::before {
  content: "";
  position: absolute;
  top: 14%;
  left: -130px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.launch-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 40px, 1120px);
  min-height: 760px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  padding-block: 76px 96px;
}

.launch-copy {
  max-width: 650px;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d5e5e1;
  font-size: 13px;
  font-weight: 700;
}

.launch-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dfac6c;
  box-shadow: 0 0 0 5px rgba(223, 172, 108, 0.13);
}

.launch-overline {
  margin-bottom: 14px;
  color: #8bc0b3;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.launch-copy h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(53px, 7.5vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.launch-copy h1 em {
  color: #dfac6c;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.launch-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #d5e5e1;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button-light {
  min-height: 50px;
  padding-inline: 20px;
  background: #fff;
  color: var(--brand-strong);
}

.button-light:hover {
  background: #f2eee6;
  color: var(--brand-strong);
}

.text-link {
  color: #d5e5e1;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  color: #fff;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.store-status {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  color: #8eb3aa;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.store-status span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 11px;
  border-radius: 50%;
  background: #527d73;
}

.store-status strong {
  color: #fff;
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 570px;
  height: 570px;
  border-color: rgba(255, 255, 255, 0.045);
}

.phone {
  position: relative;
  z-index: 2;
  width: 310px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 49px;
  background: #122a25;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  transform: rotate(3deg);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 88px;
  height: 23px;
  border-radius: 999px;
  background: #122a25;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 49px 16px 22px;
  border-radius: 41px;
  background: #f7f5f0;
  color: var(--text);
}

.phone-topbar {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 10px;
  align-items: center;
}

.phone-topbar img {
  border-radius: 9px;
}

.phone-topbar div {
  display: grid;
  line-height: 1.25;
}

.phone-topbar div span {
  color: var(--subtle);
  font-size: 10px;
}

.phone-topbar div strong {
  color: var(--brand-strong);
  font-size: 13px;
}

.phone-streak {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: #f0e4d4;
  color: #9b6425;
  font-size: 12px;
  font-weight: 850;
}

.phone-progress {
  height: 5px;
  margin: 18px 2px 17px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e3da;
}

.phone-progress span {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.word-card {
  min-height: 380px;
  padding: 31px 23px 25px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 15px 36px rgba(14, 75, 63, 0.08);
  text-align: center;
}

.difficulty {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f0e4d4;
  color: #966124;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.word-type {
  margin: 26px 0 2px;
  color: var(--subtle);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.word-card h2 {
  margin-bottom: 2px;
  color: var(--brand-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.pronunciation {
  color: var(--subtle);
  font-size: 11px;
}

.word-divider {
  width: 34px;
  height: 1px;
  margin: 22px auto;
  background: #d3cec3;
}

.meaning {
  margin-bottom: 21px;
  color: var(--brand-strong);
  font-size: 15px;
  font-weight: 800;
}

.example {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.phone-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.phone-controls span {
  display: grid;
  height: 38px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fff;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.phone-controls .known {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.phone-homebar {
  width: 92px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: #c6c8c4;
}

.floating-note {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-size: 12px;
}

.note-one {
  top: 108px;
  left: -29px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 14px;
}

.note-dot {
  width: 10px;
  height: 10px;
  border: 3px solid #cce4dd;
  border-radius: 50%;
  background: #3f9a82;
  box-sizing: content-box;
}

.note-two {
  right: -12px;
  bottom: 100px;
  display: grid;
  padding: 13px 17px;
  border-radius: 16px;
  color: #cce0db;
  line-height: 1.25;
}

.note-two strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.feature-section {
  padding: 110px max(20px, calc((100% - 1120px) / 2));
  background: var(--background);
}

.feature-intro {
  display: grid;
  max-width: 700px;
  margin-bottom: 48px;
}

.section-label {
  margin-bottom: 9px;
  color: #a46a27;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-intro h2,
.coming-soon h2 {
  margin-bottom: 14px;
  color: var(--brand-strong);
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.feature-intro > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(14, 75, 63, 0.05);
}

.feature-card.featured {
  background: var(--brand);
  color: #fff;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 72px;
  color: #aab6b2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.featured .feature-number {
  color: #91b7ad;
}

.feature-stat {
  margin-bottom: 2px;
  color: #dfac6c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--brand-strong);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.feature-card.featured h3 {
  color: #fff;
}

.feature-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.feature-card.featured p:last-child {
  color: #cce0db;
}

.coming-soon {
  display: grid;
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 100px 0;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  color: #fff;
}

.coming-soon img {
  border-radius: 21px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.coming-soon .section-label {
  color: #dfac6c;
}

.coming-soon h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
}

.coming-soon div > p:not(.section-label) {
  margin-bottom: 0;
  color: #a8c1bb;
}

.store-download {
  margin-top: 24px;
}

.home-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: #062f28;
}

.home-footer .footer-inner {
  color: #789b93;
}

.home-footer .footer-links a {
  color: #9eb8b2;
}

.home-footer .footer-links a:hover {
  color: #fff;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--brand-strong);
  color: #fff;
  text-align: center;
}

.error-card {
  max-width: 560px;
}

.error-card img {
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.error-card h1 {
  margin: 28px 0 15px;
  font-size: clamp(40px, 9vw, 72px);
}

.error-card p {
  margin-bottom: 28px;
  color: #cce0db;
  font-size: 18px;
}

@media (max-width: 940px) {
  .launch-hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 35px;
  }

  .product-stage {
    transform: scale(0.86);
  }

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

  .feature-card.featured {
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  .launch-hero {
    min-height: auto;
  }

  .launch-hero-inner {
    width: min(100% - 28px, 600px);
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 58px 50px;
    text-align: center;
  }

  .launch-copy {
    margin-inline: auto;
  }

  .launch-badge,
  .launch-actions,
  .store-status {
    justify-content: center;
  }

  .launch-lead {
    margin-inline: auto;
  }

  .product-stage {
    min-height: 570px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .feature-section {
    padding-block: 76px;
  }

  .feature-intro {
    text-align: center;
  }

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

  .feature-card,
  .feature-card.featured {
    min-height: 250px;
    grid-row: auto;
  }

  .feature-number {
    margin-bottom: 50px;
  }

  .coming-soon {
    width: min(100% - 28px, 600px);
    padding-block: 76px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coming-soon img {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .home-header .header-inner {
    min-height: 116px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

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

  .launch-copy h1 {
    font-size: clamp(48px, 16vw, 66px);
  }

  .product-stage {
    min-height: 520px;
    margin-inline: -20px;
    transform: scale(0.79);
  }

  .note-one {
    left: -10px;
  }

  .note-two {
    right: -4px;
  }

  .orbit-two {
    width: 500px;
    height: 500px;
  }

  .store-status span + span::before {
    display: none;
  }
}
