:root {
  --bg: #f4f6ef;
  --bg-alt: #e8efe3;
  --surface: rgba(255, 255, 255, 0.78);
  --text: #173126;
  --muted: #5a6f65;
  --line: rgba(23, 49, 38, 0.12);
  --primary: #1b7f5b;
  --primary-strong: #126347;
  --secondary: #dcebc6;
  --shadow: 0 24px 60px rgba(23, 49, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 233, 178, 0.65), transparent 28%),
    radial-gradient(circle at top right, rgba(124, 210, 176, 0.4), transparent 24%),
    linear-gradient(180deg, #f7faf3 0%, var(--bg) 42%, #f3f4ee 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.nav,
.section,
.footer,
.policy {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero,
.policy-header {
  padding-bottom: 36px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(23, 49, 38, 0.14);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
}

.brand-main {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand-sub {
  color: var(--muted);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.hero-copy,
.hero-card,
.download-card,
.feature-card,
.screen-card,
.policy section {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero-copy {
  padding: 38px;
}

.hero-card {
  position: relative;
  min-height: 660px;
  padding: 28px 22px 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(220, 235, 198, 0.95), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(152, 216, 186, 0.45), transparent 24%),
    rgba(255, 255, 255, 0.7);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-text,
.section-text,
.feature-card p,
.screen-card p,
.download-card p,
.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 54ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.cta-row,
.store-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button.primary {
  background: var(--primary);
  color: #f6fbf7;
}

.button.primary:hover {
  background: var(--primary-strong);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 168px;
  min-height: 64px;
  padding: 12px 18px 13px;
  border-radius: 20px;
  border: 1px solid rgba(23, 49, 38, 0.12);
  box-shadow:
    0 14px 28px rgba(23, 49, 38, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 32px rgba(23, 49, 38, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.store-badge-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.store-badge-label {
  margin-top: 2px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.store-badge-dark {
  background: linear-gradient(180deg, #173126, #10251d);
  color: #f6fbf7;
}

.store-badge-web {
  background: linear-gradient(180deg, #1b7f5b, #126347);
  color: #f6fbf7;
}

.store-badge-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  min-height: 560px;
  border-radius: 40px;
  padding: 62px 18px 18px;
  background:
    linear-gradient(180deg, rgba(252, 253, 250, 0.98), rgba(232, 239, 227, 0.96));
  border: 1px solid rgba(23, 49, 38, 0.16);
  box-shadow:
    0 28px 60px rgba(23, 49, 38, 0.16),
    inset 0 0 0 8px rgba(255, 255, 255, 0.68);
}

.phone-header,
.section-label {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}

.phone-header {
  margin-bottom: 18px;
  align-items: center;
}

.phone-section {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  border: 1px solid rgba(23, 49, 38, 0.1);
  box-shadow: 0 16px 30px rgba(23, 49, 38, 0.06);
}

.phone-section + .phone-section {
  margin-top: 14px;
}

.phone-section.accent {
  background:
    radial-gradient(circle at top right, rgba(244, 250, 188, 0.56), transparent 34%),
    linear-gradient(180deg, rgba(222, 240, 196, 0.98), rgba(204, 231, 220, 0.88));
}

.mini-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-list.compact {
  list-style: none;
  padding-left: 0;
}

.mini-list strong {
  color: var(--text);
  margin-right: 4px;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 132px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(23, 49, 38, 0.9);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.08);
}

.project-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.project-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: baseline;
  column-gap: 12px;
  color: var(--muted);
}

.project-row strong {
  color: var(--text);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.orbit-one {
  top: 54px;
  right: 54px;
  width: 136px;
  height: 136px;
  background: radial-gradient(circle, rgba(212, 237, 162, 0.82), rgba(212, 237, 162, 0));
}

.orbit-two {
  bottom: 56px;
  left: 36px;
  width: 164px;
  height: 164px;
  background: radial-gradient(circle, rgba(128, 209, 175, 0.38), rgba(128, 209, 175, 0));
}

.hero-stat {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 138px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(23, 49, 38, 0.12);
}

.hero-stat strong {
  font-size: 0.98rem;
}

.stat-kicker {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-top {
  top: 118px;
  left: 20px;
}

.stat-bottom {
  right: 10px;
  bottom: 98px;
}

.section {
  padding: 26px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.feature-grid,
.screen-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screen-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shots {
  align-items: stretch;
}

.feature-card,
.screen-card {
  padding: 22px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.story-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.story-card p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.8;
}

.story-card p + p {
  margin-top: 14px;
}

.story-signoff {
  color: var(--text);
  font-weight: 800;
}

.story-aside {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 24%, rgba(220, 235, 198, 0.92), transparent 28%),
    radial-gradient(circle at 76% 76%, rgba(152, 216, 186, 0.42), transparent 24%),
    rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.story-aside-orbit {
  position: absolute;
  inset: auto auto 36px 36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(6px);
  background: radial-gradient(circle, rgba(128, 209, 175, 0.42), rgba(128, 209, 175, 0));
}

.story-aside-logo {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 128px;
  border-radius: 28px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  box-shadow: 0 24px 48px rgba(23, 49, 38, 0.16);
}

.story-aside-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-aside-wordmark {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.story-aside-quote {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.story-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.story-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(23, 49, 38, 0.06);
}

.shot-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shot-card h3,
.shot-card p {
  margin: 0;
}

.shot-frame {
  padding: 14px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(236, 242, 235, 0.96), rgba(248, 250, 247, 0.96));
  border: 1px solid rgba(23, 49, 38, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 24px rgba(23, 49, 38, 0.05);
}

.shot-image {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 20px;
  border: 1px solid rgba(23, 49, 38, 0.12);
  box-shadow: 0 16px 30px rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.shot-placeholder {
  min-height: 260px;
  border-radius: 20px;
  border: 1px dashed rgba(23, 49, 38, 0.18);
  background:
    linear-gradient(135deg, rgba(220, 235, 198, 0.55), rgba(255, 255, 255, 0.88));
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-weight: 700;
}

.alt {
  background: linear-gradient(180deg, rgba(220, 235, 198, 0.18), transparent);
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 24%, rgba(220, 235, 198, 0.5), transparent 28%),
    rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.support-copy > p {
  margin: 0;
}

.support-copy .eyebrow {
  margin-bottom: 10px;
}

.support-copy h2 {
  max-width: 72ch;
  margin: 0 0 16px;
}

.support-copy > p + p {
  margin-top: 14px;
}

.support-copy > p:not(.eyebrow) {
  max-width: 72ch;
}

.support-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.support-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(23, 49, 38, 0.06);
}

.support-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(23, 49, 38, 0.08);
  background:
    radial-gradient(circle at top right, rgba(244, 250, 188, 0.5), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 242, 235, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 36px rgba(23, 49, 38, 0.08);
}

.support-kicker,
.support-title,
.support-note,
.support-footnote {
  margin: 0;
}

.support-kicker {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-title {
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b7f5b, #126347);
  color: #f6fbf7;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(18, 99, 71, 0.24);
}

.support-button:hover {
  background: linear-gradient(180deg, #228765, #14684b);
}

.support-note {
  max-width: 30ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.support-footnote {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0 44px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.policy-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 0;
}

.policy-hero h1 {
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.policy {
  display: grid;
  gap: 18px;
  padding-bottom: 32px;
}

.policy section {
  padding: 24px;
}

.policy h2 {
  max-width: none;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.policy ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 860px) {
  .hero-content,
  .download-card,
  .support-card,
  .feature-grid,
  .story-layout,
  .screen-grid,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-copy,
  .hero-card,
  .download-card,
  .story-card,
  .support-card {
    padding: 24px;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-stat {
    display: none;
  }

  .phone-shell {
    width: 100%;
    min-height: 520px;
  }

  .story-aside {
    width: 100%;
    min-height: auto;
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-bottom: 18px;
  }

  .hero-content {
    margin-top: 18px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .hero-card {
    display: none;
  }

  .store-badge {
    width: 100%;
  }

  .support-actions {
    width: 100%;
  }

  .support-button {
    width: 100%;
  }

  .story-layout {
    gap: 18px;
  }

  .story-aside {
    gap: 14px;
    align-items: flex-start;
    text-align: left;
  }

  .story-aside-quote {
    max-width: none;
    text-align: left;
  }

  .story-points {
    justify-content: flex-start;
  }
}
