:root {
  --bg: #070b11;
  --bg-elevated: rgba(16, 22, 33, 0.72);
  --bg-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f7fb;
  --text-soft: rgba(235, 241, 251, 0.72);
  --text-faint: rgba(235, 241, 251, 0.52);
  --accent: #f7c96b;
  --accent-soft: rgba(247, 201, 107, 0.18);
  --accent-strong: #ffe1a2;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 78% 14%, rgba(223, 175, 88, 0.16), transparent 24%),
    radial-gradient(circle at 18% 0%, rgba(76, 108, 160, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(7, 11, 17, 0.7), rgba(7, 11, 17, 0.94)),
    url("./assets/night-bg.png") center top / cover fixed no-repeat,
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.shell {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(7, 11, 17, 0.8), rgba(7, 11, 17, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.brand-wordmark {
  width: 132px;
  opacity: 0.98;
}

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

.nav a {
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--text);
}

.nav-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 76px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(247, 201, 107, 0.2);
  background: rgba(247, 201, 107, 0.08);
  color: var(--accent-strong);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.hero p.lead,
.page-hero p.lead {
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.7;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #f2f6ff, #d6e2f7);
  color: #102238;
  box-shadow: 0 16px 36px rgba(8, 17, 31, 0.38);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

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

.meta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 25, 36, 0.72), rgba(12, 17, 25, 0.82)),
    rgba(12, 16, 23, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(247, 201, 107, 0.14), transparent 62%);
  pointer-events: none;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #17263b;
  font-size: 13px;
  font-weight: 700;
}

.device {
  position: relative;
  margin-top: 22px;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 14, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.device-notch {
  width: 34%;
  height: 28px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #02050a;
}

.device-screen {
  border-radius: 26px;
  overflow: hidden;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(10, 16, 27, 0.72), rgba(12, 15, 22, 0.94)),
    url("./assets/night-bg.png") center / cover no-repeat;
  min-height: 560px;
}

.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.device-wordmark {
  width: 112px;
}

.device-card {
  margin-top: 26px;
  padding: 22px 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 24, 34, 0.68);
  backdrop-filter: blur(24px);
}

.device-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.device-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

.feature-stack {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.feature-pill {
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-pill strong {
  display: block;
  font-size: 14px;
}

.feature-pill span {
  display: block;
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.section-header p {
  max-width: 470px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.cards-3,
.cards-2 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.glass-card,
.detail-card,
.faq-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.glass-card h3,
.detail-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.glass-card p,
.detail-card p,
.faq-card p,
.detail-card li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.glass-card small,
.detail-card small {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.detail-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.stat {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.stat strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.cta-band {
  margin: 34px 0 0;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(247, 201, 107, 0.24);
  background: linear-gradient(180deg, rgba(247, 201, 107, 0.08), rgba(255, 255, 255, 0.04));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.cta-band p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 680px;
}

.page-hero {
  padding: 88px 0 24px;
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.document-page {
  position: relative;
  background: #03060a;
}

.document-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("./assets/dark-sky-lit-up.webp") center center / cover no-repeat;
  opacity: 0.5;
}

.document-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 7, 11, 0.62), rgba(4, 7, 11, 0.84) 52%, rgba(4, 7, 11, 0.94) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

.document-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.document-topbar-inner {
  justify-content: space-between;
  gap: 24px;
}

.document-brand {
  flex: 0 0 auto;
}

.document-brand .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.document-nav {
  justify-content: flex-end;
  gap: 10px;
}

.document-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 247, 251, 0.72);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.document-nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.document-nav a[aria-current="page"] {
  color: #102238;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #f2f6ff, #d8e5f8);
}

.document-hero {
  padding: 96px 0 22px;
}

.document-hero .eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.document-hero h1 {
  font-family: var(--body);
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.document-hero p.lead {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(244, 247, 251, 0.72);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.document-panel {
  padding: 14px 0 28px;
}

.document-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 13, 20, 0.28);
  backdrop-filter: blur(8px);
}

.legal-content,
.support-grid {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 31, 0.76);
  box-shadow: var(--shadow);
}

.legal-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.document-list .legal-section,
.document-list .detail-card,
.document-list .faq-card {
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.document-list .legal-section:last-child,
.document-list .detail-card:last-child,
.document-list .faq-card:last-child {
  border-bottom: 0;
}

.document-list .legal-section h3,
.document-list .detail-card h3,
.document-list .faq-card h3 {
  margin: 0 0 10px;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}

.document-list .legal-section p,
.document-list .legal-section li,
.document-list .detail-card p,
.document-list .detail-card li,
.document-list .faq-card p {
  color: rgba(244, 247, 251, 0.72);
  font-size: 0.99rem;
  line-height: 1.84;
}

.document-list .legal-section ul,
.document-list .detail-list {
  margin-top: 14px;
  padding-left: 18px;
  gap: 8px;
}

.document-list .detail-card small {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.document-list .detail-list {
  list-style: disc;
}

.document-list .detail-list li {
  padding-top: 0;
  border-top: 0;
}

.document-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.document-link {
  color: var(--accent-strong);
}

.document-link:hover {
  color: #fff0c6;
}

.document-actions .button {
  width: auto;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.footer {
  padding: 44px 0 60px;
  color: var(--text-faint);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

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

.footer-nav a:hover {
  color: var(--text);
}

.launch-page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.launch-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.12), rgba(0, 0, 0, 0.82) 94%),
    radial-gradient(circle at 68% 30%, rgba(184, 207, 255, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(7, 11, 17, 0.18) 50%, rgba(0, 0, 0, 0.62)),
    url("./assets/night-bg.png") center / cover no-repeat,
    var(--bg);
}

.launch-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 55%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    radial-gradient(circle at 50% 112%, rgba(0, 0, 0, 0.9), transparent 48%);
}

.launch-shell {
  width: min(1340px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 0.88fr);
  align-items: end;
  gap: clamp(28px, 4.5vw, 76px);
  padding: 7vh 0 8vh;
}

.launch-copy {
  display: grid;
  justify-items: start;
  align-content: end;
  gap: clamp(34px, 4.2vh, 54px);
  min-width: 0;
  padding-bottom: 17vh;
}

.launch-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 5vh, 56px);
}

.launch-brand .brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.launch-brand .brand-wordmark {
  width: clamp(150px, 18vw, 214px);
}

.launch-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--body);
  font-size: clamp(3rem, 4vw, 4.25rem);
  line-height: 1.13;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}

.launch-actions {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 0;
}

.launch-actions .button {
  min-height: 76px;
  border-radius: 10px;
  background: rgba(244, 246, 249, 0.88);
  color: #17202e;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-links {
  position: fixed;
  right: 26px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.launch-links a:hover {
  color: var(--text);
}

.launch-phone {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: end;
  min-width: 0;
  padding-bottom: 4vh;
}

.phone-orbit {
  position: absolute;
  bottom: -8%;
  width: min(42vw, 600px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
  filter: blur(14px);
  opacity: 0.7;
}

.launch-device {
  width: min(430px, 100%);
  margin: 0;
  padding: 14px;
  border-radius: 46px;
  border: 12px solid rgba(6, 8, 12, 0.95);
  background: #05070b;
  transform: translateY(4vh);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.launch-device .device-screen {
  position: relative;
  min-height: 710px;
  padding: 58px 16px 24px;
  border-radius: 32px;
  overflow: hidden;
}

.launch-device .device-notch {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 50%;
  width: 116px;
  height: 34px;
  margin: 0;
  transform: translateX(-50%);
  background: #000;
}

.launch-device .device-header {
  margin-bottom: 26px;
}

.launch-device .device-wordmark {
  width: 74px;
}

.device-icons {
  display: flex;
  gap: 10px;
}

.device-icons span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.phone-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(37, 44, 55, 0.72), rgba(27, 34, 43, 0.64)),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.phone-card + .phone-card {
  margin-top: 12px;
}

.card-kicker,
.phone-card p {
  margin: 0;
  color: rgba(244, 247, 252, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.phone-card h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.1;
}

.balance-row,
.budget-row,
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.balance-row strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 38px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.balance-row span,
.budget-row em {
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(235, 243, 255, 0.96);
  color: #24334a;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.budget-card h2,
.week-card h2,
.feature-stack h2 {
  margin: 0;
  font-size: 17px;
}

.card-title-row span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-weight: 700;
}

.budget-row strong {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 26px;
  letter-spacing: -0.045em;
}

.budget-card b {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin: 14px 0;
}

.week-row span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
}

.week-row small {
  color: rgba(244, 247, 252, 0.54);
  font-size: 9px;
  text-transform: uppercase;
}

.week-row .active {
  background: rgba(235, 243, 255, 0.94);
  color: #26354c;
}

.week-row .active small {
  color: rgba(38, 53, 76, 0.62);
}

.launch-device .feature-stack {
  margin-top: 16px;
}

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

.goal-row div {
  min-height: 92px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.goal-row span,
.goal-row strong {
  display: block;
}

.goal-row span {
  color: rgba(244, 247, 252, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.goal-row strong {
  margin-top: 10px;
  color: var(--text);
  font-size: 19px;
}

.phone-tabbar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(45, 50, 57, 0.82);
  backdrop-filter: blur(24px);
}

.phone-tabbar span {
  color: rgba(244, 247, 252, 0.68);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.phone-tabbar .active {
  color: var(--text);
}

.coming-soon-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(9, 13, 20, 0), rgba(0, 0, 0, 0.28) 64%, rgba(0, 0, 0, 0.68) 100%),
    url("./assets/dark-sky-lit-up.webp") center center / cover no-repeat,
    #03060a;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.coming-soon-card {
  width: min(560px, 100%);
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
  transform: translateY(2vh);
}

.coming-soon-wordmark {
  width: min(176px, 46vw);
  opacity: 0.98;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.42));
}

.coming-soon h1 {
  margin: 0;
  color: var(--text);
  font-family: Inter, var(--body);
  font-size: clamp(3rem, 7.2vw, 6.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 650;
}

.coming-soon-cta {
  width: min(420px, 100%);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2f6ff, #d8e5f8);
  color: #102238;
  font-family: Inter, var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.coming-soon-links {
  position: fixed;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.coming-soon-links a:hover {
  color: var(--text);
}

@media (max-aspect-ratio: 4 / 3) {
  .coming-soon-page {
    background:
      radial-gradient(circle at 50% 44%, rgba(9, 13, 20, 0), rgba(0, 0, 0, 0.28) 64%, rgba(0, 0, 0, 0.68) 100%),
      url("./assets/dark-sky-lit-up.webp") center center / cover no-repeat,
      #03060a;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .cards-3,
  .cards-2,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .launch-page {
    overflow: auto;
  }

  .launch-shell {
    width: min(100% - 28px, 420px);
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 20px;
    padding: 24px 0;
  }

  .launch-copy {
    gap: 18px;
    padding-bottom: 0;
  }

  .launch-copy h1 {
    max-width: 340px;
    font-size: clamp(2.35rem, 12vw, 3rem);
    line-height: 1.05;
  }

  .launch-actions {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0;
  }

  .launch-actions .button {
    min-height: 58px;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 13px;
  }

  .launch-links {
    position: static;
    justify-content: center;
    width: 100%;
    font-size: 13px;
    margin-top: 0;
  }

  .launch-phone {
    margin-top: 0;
    align-self: end;
  }

  .phone-orbit {
    width: 320px;
  }

  .launch-device {
    width: min(100%, 310px);
    transform: none;
    border-width: 10px;
    border-radius: 40px;
  }

  .launch-device .device-notch {
    top: 20px;
    width: 98px;
    height: 28px;
  }

  .launch-device .device-screen {
    min-height: 500px;
    padding: 50px 12px 18px;
    border-radius: 27px;
  }

  .launch-device .device-header {
    margin-bottom: 18px;
  }

  .phone-card {
    padding: 14px;
    border-radius: 18px;
  }

  .balance-row strong {
    font-size: 31px;
  }

  .balance-row span,
  .budget-row em {
    padding: 8px 9px;
    font-size: 9px;
  }

  .week-row {
    gap: 5px;
  }

  .week-row span {
    min-height: 44px;
    border-radius: 12px;
    font-size: 15px;
  }

  .goal-row {
    display: none;
  }

  .phone-tabbar {
    min-height: 58px;
    border-radius: 20px;
  }

  .shell {
    width: min(var(--content), calc(100% - 24px));
  }

  .topbar-inner {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 14px 0;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-wordmark {
    width: 112px;
  }

  .nav {
    justify-content: flex-end;
    gap: 8px 12px;
  }

  .nav a:not(.nav-pill) {
    display: none;
  }

  .document-topbar-inner {
    gap: 12px;
  }

  .document-nav {
    justify-content: flex-end;
    gap: 8px;
  }

  .document-nav a {
    display: inline-flex !important;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .nav-pill {
    padding: 9px 14px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero p.lead,
  .page-hero p.lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.07em;
  }

  .hero-grid,
  .hero-copy {
    min-width: 0;
  }

  .hero-card,
  .glass-card,
  .detail-card,
  .faq-card,
  .cta-band,
  .legal-section {
    padding: 20px;
    border-radius: 22px;
  }

  .document-shell {
    width: min(920px, calc(100% - 24px));
  }

  .document-hero {
    padding-top: 76px;
  }

  .document-list .legal-section,
  .document-list .detail-card,
  .document-list .faq-card {
    padding: 20px 0;
    border-radius: 0;
  }

  .device {
    padding: 14px;
    border-radius: 28px;
  }

  .device-screen {
    padding: 20px 14px;
    border-radius: 22px;
  }

  .device-wordmark {
    width: 100px;
  }

  .status-badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .device-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .device-card h3 {
    font-size: 24px;
  }

  .device-screen {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
