@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700;800&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --bg: #f4ecd6;
  --bg-soft: #fbf6e7;
  --bg-strong: #efe4c2;
  --surface: rgba(255, 251, 241, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: rgba(255, 247, 228, 0.78);
  --border: #ead9ad;
  --border-strong: #d9c388;
  --text: #111827;
  --muted: #7b6f5a;
  --muted-strong: #6d552c;
  --primary: #205b3a;
  --primary-soft: #e7f4ea;
  --primary-border: #93c5a5;
  --gold: #d8b45a;
  --gold-soft: #fff8e8;
  --gold-border: #d9c388;
  --danger: #c4632c;
  --shadow: 0 20px 50px rgba(73, 55, 24, 0.12);
  --shadow-soft: 0 10px 28px rgba(73, 55, 24, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --anchor-offset: 184px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

main [id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 180, 90, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(32, 91, 58, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf5e5 0%, var(--bg) 48%, #f7efd9 100%);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  width: min(calc(100% - 24px), var(--max));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(234, 217, 173, 0.92);
  border-radius: 999px;
  background: rgba(255, 251, 241, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 18px 40px rgba(73, 55, 24, 0.08);
  position: sticky;
  top: 16px;
  z-index: 20;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-name,
.footer-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 248, 232, 0.9);
}

.page {
  width: min(calc(100% - 24px), var(--max));
  margin: 24px auto 0;
  padding-bottom: 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 26px;
}

.hero-copy,
.hero-visual,
.section-card,
.legal-card,
.contact-card,
.page-hero,
.footer-card,
.metric-card,
.faq-card,
.social-card,
.detail-card,
.feature-card,
.launch-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.accent-bar {
  position: absolute;
  inset: 0 auto auto 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(32, 91, 58, 0.66));
}

.hero-copy {
  padding: 34px 30px 30px;
  background:
    radial-gradient(circle at top right, rgba(216, 180, 90, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    var(--surface);
}

.hero-visual {
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(32, 91, 58, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1)),
    rgba(255, 251, 241, 0.76);
}

.hero-visual-copy {
  margin-bottom: 18px;
}

.hero-visual-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-strong);
  font-weight: 800;
}

.hero-visual-copy h2 {
  margin: 10px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-visual-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-border);
  background: var(--gold-soft);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 16px 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-lead,
.page-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
  max-width: 60ch;
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn.is-disabled {
  opacity: 0.64;
  cursor: default;
  pointer-events: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(32, 91, 58, 0.2);
}

.btn-secondary {
  background: rgba(255, 251, 241, 0.9);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost {
  background: transparent;
  border-color: var(--gold-border);
  color: var(--muted-strong);
}

.hero-points,
.metric-strip,
.feature-grid,
.story-grid,
.detail-grid,
.journey-grid,
.faq-grid,
.social-grid,
.page-layout,
.support-grid,
.snapshot-grid {
  display: grid;
  gap: 16px;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.hero-support {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 195, 136, 0.62);
}

.hero-support-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-strong);
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-support .hero-lead {
  margin-top: 10px;
}

.hero-support .hero-lead + .hero-lead {
  margin-top: 12px;
}

.mini-stat,
.metric-card,
.feature-card,
.detail-card,
.social-card,
.faq-card,
.launch-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 195, 136, 0.82);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.mini-stat strong,
.metric-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
}

.mini-stat span,
.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.device-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.75fr);
  gap: 14px;
  height: 100%;
}

.device-side-stack {
  display: grid;
  gap: 14px;
}

.phone-shell {
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(180deg, #1e3b2f 0%, #0f261d 100%);
  border: 1px solid rgba(101, 74, 27, 0.28);
  box-shadow: 0 24px 44px rgba(32, 21, 6, 0.22);
}

.phone-shell-primary {
  min-height: 520px;
}

.phone-shell-secondary {
  min-height: 252px;
}

.phone-screen {
  height: 100%;
  border-radius: 26px;
  padding: 16px 14px 14px;
  background:
    radial-gradient(circle at top right, rgba(216, 180, 90, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(248, 239, 217, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  gap: 12px;
}

.phone-screen-compact,
.phone-screen-shot {
  align-content: start;
}

.phone-notch {
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.16);
  justify-self: center;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.screen-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-strong);
  font-weight: 800;
}

.screen-title {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--text);
}

.screen-summary {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(217, 195, 136, 0.84);
  background: rgba(255, 255, 255, 0.74);
}

.screen-balance {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.screen-summary p,
.screen-card span,
.mini-panel span,
.goal-progress-head span,
.queue-row span {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  display: block;
}

.screen-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
}

.screen-card-soft {
  background: rgba(255, 248, 232, 0.92);
}

.screen-card-label,
.mini-panel-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-strong);
  font-weight: 800;
}

.screen-card strong,
.mini-panel strong,
.queue-row strong,
.goal-progress-head strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
}

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

.mini-panel {
  padding: 13px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.queue-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 13px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
}

.queue-row em {
  font-style: normal;
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
}

.goal-progress {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(217, 195, 136, 0.84);
  background: rgba(255, 255, 255, 0.82);
}

.goal-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.goal-progress-bar {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.goal-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8b45a, #205b3a);
}

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

.app-shot-card {
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 195, 136, 0.82);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.app-shot-frame {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 22px;
}

.app-shot-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(217, 195, 136, 0.82);
  box-shadow: 0 14px 30px rgba(73, 55, 24, 0.12);
  background: #fffdf7;
}

.screenshot-carousel {
  display: grid;
  gap: 16px;
}

.screenshot-carousel-stage {
  position: relative;
  min-height: 720px;
}

.carousel-slide {
  display: none;
  margin: 0;
}

.carousel-slide.is-active {
  display: block;
}

.screenshot-phone-shell {
  width: min(100%, 372px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1e3b2f 0%, #0f261d 100%);
  border: 1px solid rgba(101, 74, 27, 0.28);
  box-shadow: 0 24px 44px rgba(32, 21, 6, 0.22);
}

.screenshot-phone-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #fffdf7;
}

.carousel-caption {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(217, 195, 136, 0.82);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.carousel-caption strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.carousel-caption span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

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

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.carousel-dot,
.carousel-arrow {
  appearance: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(109, 85, 44, 0.24);
}

.carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.08);
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.92);
  border: 1px solid var(--gold-border);
  color: var(--muted-strong);
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover,
.carousel-dot:hover {
  transform: translateY(-1px);
}

.phone-screen-shot {
  min-height: 290px;
}

.chart-card {
  position: relative;
  min-height: 110px;
  border-radius: 18px;
  border: 1px solid rgba(217, 195, 136, 0.84);
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.chart-line {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 180, 90, 0.3), rgba(32, 91, 58, 0.9));
  transform: skewX(-18deg);
}

.chart-line-mid {
  bottom: 54px;
  opacity: 0.24;
  transform: none;
}

.chart-marker {
  position: absolute;
  right: 58px;
  bottom: 48px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #d8b45a;
  border: 3px solid #205b3a;
  box-shadow: 0 0 0 6px rgba(216, 180, 90, 0.16);
}

.faq-card h3,
.feature-card h3,
.detail-card h3,
.social-card h3,
.app-shot-card h3 {
  margin: 0;
  font-size: 16px;
}

.feature-card p,
.detail-card p,
.social-card p,
.faq-card p,
.app-shot-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.story-grid,
.journey-grid,
.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.detail-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  margin-top: 18px;
}

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

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

.section-card,
.page-hero,
.footer-card {
  padding: 24px;
}

.section-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.feature-tag,
.section-chip {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--gold-border);
  background: rgba(255, 248, 232, 0.86);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.pill.is-disabled {
  opacity: 0.62;
  cursor: default;
  pointer-events: none;
}

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

.list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  position: absolute;
  top: 8px;
  left: 0;
}

.social-link,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  margin-top: 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--gold-border);
  background: var(--gold-soft);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.social-link.is-disabled,
.mini-link.is-disabled {
  opacity: 0.62;
  cursor: default;
  pointer-events: none;
}

.page-hero {
  margin-top: 32px;
  background:
    radial-gradient(circle at top right, rgba(216, 180, 90, 0.12), transparent 30%),
    rgba(255, 251, 241, 0.86);
}

.page-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.page-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  margin-top: 20px;
}

.contact-card,
.legal-card {
  padding: 24px;
}

.legal-card h2 {
  margin: 24px 0 10px;
  font-size: 18px;
}

.legal-card p,
.legal-card li {
  color: #374151;
  font-size: 15px;
  line-height: 1.78;
}

.legal-card ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.notice {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-card form {
  display: grid;
  gap: 14px;
}

.launch-signup-card {
  align-self: start;
}

.launch-signup-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 180, 90, 0.16);
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.checkbox-card input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.launch-checkbox {
  margin-top: 2px;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
}

.status-message {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.status-message.show {
  display: block;
}

.status-message.success {
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  color: var(--primary);
}

.status-message.error {
  background: #f7e1d6;
  border: 1px solid #e7b9a5;
  color: #8a4a1d;
}

.launch-signup-note {
  margin-top: 16px;
}

.footer-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  background: rgba(255, 251, 241, 0.88);
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.footer-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 58ch;
}

@media (max-width: 1024px) {
  :root {
    --anchor-offset: 212px;
  }

  .hero,
  .detail-grid,
  .page-layout,
  .feature-grid,
  .metric-strip,
  .faq-grid,
  .social-grid,
  .device-showcase {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .story-grid,
  .journey-grid,
  .support-grid,
  .snapshot-grid,
  .screen-split {
    grid-template-columns: 1fr;
  }

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

  .topbar {
    border-radius: 28px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  :root {
    --anchor-offset: 236px;
  }

  .page {
    width: min(calc(100% - 18px), var(--max));
  }

  .topbar {
    width: min(calc(100% - 18px), var(--max));
    top: 10px;
    padding: 12px 14px;
  }

  .hero-copy,
  .hero-visual,
  .section-card,
  .legal-card,
  .contact-card,
  .footer-card,
  .page-hero,
  .metric-card,
  .faq-card,
  .social-card,
  .detail-card,
  .feature-card,
  .launch-card {
    padding: 22px 18px;
  }

  .hero h1,
  .page-title {
    font-size: 40px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .screenshot-carousel-stage {
    min-height: auto;
  }

  .screenshot-phone-shell {
    width: min(100%, 320px);
  }
}
