* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #07100e;
  --bg-deep: #030706;
  --surface: #0d1916;
  --surface-soft: rgba(18, 34, 30, 0.74);
  --line: rgba(210, 255, 230, 0.11);
  --text: #f4f7f5;
  --muted: #a5b2ad;
  --green: #7ed894;
  --green-strong: #45bd70;
  --blue: #57c6df;
  --yellow: #e6cd70;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 2%, rgba(54, 160, 188, 0.13), transparent 28rem),
    radial-gradient(circle at 94% 24%, rgba(87, 190, 113, 0.1), transparent 30rem),
    linear-gradient(180deg, #07110f 0%, #07100e 42%, #040806 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(var(--max), calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 19px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(67, 193, 116, 0.18);
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease, transform 160ms ease;
}

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

.site-nav .nav-download {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--text);
  color: #07100e;
}

.site-nav .nav-download:hover {
  color: #07100e;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding: 76px 0 92px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
  opacity: 0.55;
}

.hero-glow-blue {
  width: 360px;
  height: 360px;
  right: 19%;
  top: 18%;
  background: radial-gradient(circle, rgba(57, 172, 211, 0.18), transparent 68%);
}

.hero-glow-green {
  width: 430px;
  height: 430px;
  right: -8%;
  bottom: 0;
  background: radial-gradient(circle, rgba(74, 198, 111, 0.16), transparent 69%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.trust-copy h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(50px, 6.1vw, 82px);
  font-weight: 750;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--green) 4%, #9adca9 40%, var(--blue) 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 600px;
  margin: 26px 0 0;
  color: #b8c4bf;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.store-button {
  min-width: 196px;
  min-height: 62px;
  padding: 9px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: #f5f7f5;
  color: #07100e;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.store-button > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 720;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-mark {
  width: 25px;
  height: 29px;
  display: inline-grid;
  place-items: center;
  font-size: 25px;
  transform: translateY(-1px);
}

.text-button {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.text-button span {
  display: inline-block;
  margin-left: 4px;
  color: var(--green);
}

.hero-meta {
  margin: 20px 0 0;
  color: #82908b;
  font-size: 13px;
}

.hero-meta span {
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.24);
}

.hero-visual {
  min-height: 570px;
}

.phone {
  overflow: hidden;
  border: 7px solid #151b19;
  border-radius: 42px;
  background: #1c2422;
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.13);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 31%;
  height: 24px;
  top: 12px;
  left: 50%;
  border-radius: 999px;
  background: #050706;
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-visual .phone {
  position: absolute;
  width: 270px;
  aspect-ratio: 473 / 1024;
}

.phone-back {
  top: 40px;
  right: 8px;
  opacity: 0.76;
  transform: rotate(6deg);
}

.phone-front {
  z-index: 4;
  left: 26px;
  top: 2px;
  transform: rotate(-4deg);
}

.value-strip {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip div {
  min-height: 58px;
  padding: 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-strip div + div {
  border-left: 1px solid var(--line);
}

.value-strip strong {
  color: var(--text);
  font-size: 15px;
}

.value-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

.process-section {
  padding: 132px 0 122px;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.trust-copy h2,
.final-cta h2 {
  font-size: clamp(38px, 5vw, 60px);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.steps-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 330px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 48%),
    var(--surface-soft);
}

.step-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.17);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 216, 148, 0.24);
  border-radius: 16px;
  background: rgba(126, 216, 148, 0.09);
  color: var(--green);
  font-size: 25px;
}

.step-card h3 {
  margin: 58px 0 12px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.feature-stack {
  border-top: 1px solid var(--line);
}

.feature-row {
  width: min(var(--max), calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 92px;
}

.feature-row + .feature-row {
  border-top: 1px solid var(--line);
}

.feature-reverse .feature-copy {
  order: 2;
}

.feature-reverse .feature-phone-wrap {
  order: 1;
}

.feature-copy h2 {
  font-size: clamp(40px, 4.6vw, 62px);
}

.feature-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #c7d1cd;
  font-size: 15px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.feature-phone-wrap {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  border-radius: 44px;
  background:
    radial-gradient(circle at 45% 38%, rgba(63, 177, 201, 0.18), transparent 43%),
    radial-gradient(circle at 65% 70%, rgba(94, 202, 124, 0.15), transparent 45%);
}

.feature-phone {
  position: relative;
  width: 286px;
  aspect-ratio: 473 / 1024;
}

.trust-section {
  margin-top: 58px;
  margin-bottom: 130px;
  padding: 66px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  border: 1px solid rgba(126, 216, 148, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(65, 180, 199, 0.13), transparent 40%),
    linear-gradient(135deg, #10231e, #0b1714);
}

.trust-copy p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.trust-points {
  display: grid;
  align-content: center;
  gap: 14px;
}

.trust-points > div {
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.trust-points > div > span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(126, 216, 148, 0.13);
  color: var(--green);
  font-weight: 800;
}

.trust-points p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-points strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.final-cta {
  width: min(930px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 34px 92px;
  text-align: center;
}

.final-cta > img {
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(67, 193, 116, 0.18);
}

.final-cta > p:not(.eyebrow) {
  margin: 22px auto 30px;
  color: var(--muted);
  font-size: 18px;
}

.final-cta .store-button {
  margin: 0 auto;
}

.final-cta > small {
  margin-top: 14px;
  display: block;
  color: #74817c;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 46px;
  border-top: 1px solid var(--line);
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand span,
.site-footer > p {
  color: #74817c;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

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

.site-footer > p {
  margin: 0;
}

/* Help and legal pages */
.document-page {
  min-height: 100vh;
}

.page-shell {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.legal-card {
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(68, 180, 202, 0.1), transparent 27rem),
    linear-gradient(145deg, rgba(18, 34, 30, 0.9), rgba(8, 16, 14, 0.94));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.nav-row {
  margin: 0 0 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #75837e;
  font-size: 13px;
}

.nav-row a {
  color: var(--green);
  text-decoration: none;
}

.legal-card > .eyebrow {
  margin-bottom: 16px;
}

.legal-card > h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #93a19c;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
}

.lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: #b5c0bc;
  font-size: 19px;
  line-height: 1.7;
}

.toc {
  margin-top: 54px;
  padding: 28px 30px;
  border: 1px solid rgba(126, 216, 148, 0.14);
  border-radius: 22px;
  background: rgba(126, 216, 148, 0.045);
}

.toc > h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.toc ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 28px;
  list-style: none;
}

.toc li {
  min-width: 0;
}

.toc a {
  color: #a9b7b2;
  text-decoration: none;
  font-size: 14px;
}

.toc a:hover {
  color: var(--green);
}

.section {
  padding-top: 42px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.section h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section p,
.section li {
  color: #aab6b1;
  font-size: 15px;
  line-height: 1.75;
}

.section p {
  margin: 0;
}

.section p + p,
.section p + ul,
.section p + ol,
.section ul + p,
.section ol + p {
  margin-top: 16px;
}

.section ul,
.section ol {
  margin-bottom: 0;
  padding-left: 23px;
}

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

.section strong {
  color: #dfe6e3;
}

.section a {
  color: var(--green);
  text-underline-offset: 3px;
}

.support-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.support-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.support-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.support-card p {
  margin: 0;
}

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

.document-page .legal-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.document-page .nav-row {
  margin-bottom: 46px;
}

.document-hero {
  max-width: 850px;
  padding-bottom: 62px;
}

.document-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.document-layout {
  width: min(900px, 100%);
  margin: 0 auto;
}

.document-layout .toc {
  position: static;
  margin: 0 0 24px;
  padding: 24px;
  max-height: none;
  overflow: visible;
  border-color: var(--line);
  background: rgba(13, 25, 22, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.document-layout .toc ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.document-layout .toc a {
  display: block;
  padding: 5px 0;
  line-height: 1.35;
}

.document-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.document-content .section {
  padding: 34px 36px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 42%),
    rgba(13, 25, 22, 0.7);
}

.document-content .section:target {
  border-color: rgba(126, 216, 148, 0.38);
  box-shadow: 0 0 0 1px rgba(126, 216, 148, 0.08);
}

.document-content .section h2 {
  padding-left: 18px;
  border-left: 3px solid var(--green);
}

.document-content .support-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.document-content .support-card {
  background: rgba(255, 255, 255, 0.03);
}

.legal-document-page .document-hero {
  max-width: 760px;
  padding-bottom: 54px;
}

.legal-document-page .document-hero h1 {
  font-size: clamp(46px, 5.6vw, 64px);
}

.legal-document-page .document-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

.legal-document-page .document-layout .toc {
  position: sticky;
  top: 28px;
  margin: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.legal-document-page .document-layout .toc ul {
  grid-template-columns: 1fr;
  gap: 4px;
}

.legal-document-page .document-layout .toc a {
  padding: 6px 0;
  color: #889690;
  font-size: 13px;
}

.legal-document-page .document-content {
  display: block;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 25, 22, 0.72);
}

.legal-document-page .document-content .section {
  padding: 36px 0 0;
  margin: 36px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.legal-document-page .document-content .section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-document-page .document-content .section h2 {
  padding-left: 0;
  border-left: 0;
  font-size: 26px;
}

.help-document-page .document-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

.help-document-page .document-layout .toc {
  position: sticky;
  top: 28px;
  margin: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.help-document-page .document-layout .toc ul {
  grid-template-columns: 1fr;
  gap: 4px;
}

.help-document-page .document-layout .toc a {
  padding: 6px 0;
  color: #889690;
  font-size: 13px;
}

.help-document-page .document-content {
  display: block;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 25, 22, 0.72);
}

.help-document-page .document-content .section {
  padding: 36px 0 0;
  margin: 36px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.help-document-page .document-content .section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.help-document-page .document-content .section h2 {
  padding-left: 0;
  border-left: 0;
  font-size: 26px;
}

.help-document-page .support-list {
  display: block;
  margin-top: 16px;
}

.help-document-page .support-card {
  padding: 20px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.help-document-page .support-card:first-child {
  border-top: 0;
}

.help-document-page .support-card h2 {
  margin-bottom: 7px;
  font-size: 17px;
}

.contact-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 78px 0 58px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(50px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-hero p:last-child {
  max-width: 630px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(580px, 100%);
  margin: 0 auto 88px;
}

.contact-card {
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    var(--surface-soft);
}

.contact-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(126, 216, 148, 0.1);
  color: var(--green);
  font-size: 20px;
}

.contact-card h2 {
  margin: 30px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.contact-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.contact-card a {
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-note {
  margin-top: 18px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(87, 198, 223, 0.15);
  border-radius: 22px;
  background: rgba(87, 198, 223, 0.045);
}

.contact-note h2 {
  margin: 0 0 5px;
  font-size: 18px;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-note a {
  flex: 0 0 auto;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

/* Download landing page */
.download-page {
  min-height: 100vh;
}

.download-main {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 110px;
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 82px;
}

.download-product {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.download-product img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(67, 193, 116, 0.18);
}

.download-product div {
  display: flex;
  flex-direction: column;
}

.download-product strong {
  font-size: 23px;
}

.download-product span {
  color: var(--muted);
}

.download-copy h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.download-copy > p {
  max-width: 610px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 19px;
}

.download-facts {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.download-facts span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aebbb6;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
}

.download-preview {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  border-radius: 46px;
  background:
    radial-gradient(circle at 30% 25%, rgba(71, 184, 211, 0.18), transparent 42%),
    radial-gradient(circle at 70% 75%, rgba(92, 201, 122, 0.14), transparent 44%);
}

.download-preview .phone {
  position: relative;
  width: 270px;
  aspect-ratio: 473 / 1024;
  transform: rotate(3deg);
}

.download-features {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.download-features article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-soft);
}

.download-features span {
  color: var(--green);
  font-size: 22px;
}

.download-features h2 {
  margin: 18px 0 8px;
  font-size: 19px;
}

.download-features p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.download-links {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.download-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 64px;
  }

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

  .hero-visual {
    width: min(610px, 100%);
    min-height: 590px;
    margin: 0 auto;
  }

  .feature-row {
    grid-template-columns: 1fr 0.8fr;
    gap: 44px;
  }

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

  .download-hero {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, var(--max));
    min-height: 72px;
  }

  .site-nav > a:not(.nav-download) {
    display: none;
  }

  .site-nav .nav-download {
    min-height: 38px;
  }

  .hero,
  .section-shell,
  .feature-row,
  .value-strip,
  .site-footer,
  .download-main {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 0;
    padding: 56px 0 72px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 65px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-meta {
    line-height: 1.7;
  }

  .hero-visual {
    min-height: 480px;
    transform: translateX(-4px);
  }

  .hero-visual .phone {
    width: min(56vw, 240px);
  }

  .phone-front {
    left: 2%;
  }

  .phone-back {
    right: 2%;
  }

  .value-strip {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .value-strip div {
    padding: 18px 10px;
  }

  .value-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-section {
    padding: 96px 0 88px;
  }

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

  .step-card {
    min-height: 270px;
  }

  .step-card h3 {
    margin-top: 38px;
  }

  .feature-row {
    min-height: 0;
    padding: 82px 0;
    grid-template-columns: 1fr;
  }

  .feature-reverse .feature-copy,
  .feature-reverse .feature-phone-wrap {
    order: initial;
  }

  .feature-phone-wrap {
    min-height: 520px;
  }

  .feature-phone {
    width: 250px;
  }

  .trust-section {
    margin-bottom: 80px;
    padding: 38px 24px;
    gap: 38px;
  }

  .final-cta {
    width: min(100% - 28px, 930px);
    padding-inline: 8px;
  }

  .site-footer {
    padding: 36px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .document-page .page-shell {
    width: min(100% - 20px, 960px);
    padding: 34px 0 72px;
  }

  .legal-card {
    padding: 30px 20px 38px;
    border-radius: 24px;
  }

  .nav-row {
    margin-bottom: 38px;
  }

  .toc {
    margin-top: 42px;
    padding: 22px 20px;
  }

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

  .section {
    padding-top: 34px;
    margin-top: 34px;
  }

  .document-hero {
    padding-bottom: 44px;
  }

  .document-layout {
    width: 100%;
  }

  .document-layout .toc {
    position: static;
    max-height: none;
  }

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

  .document-content .section {
    padding: 28px 22px;
  }

  .document-content .support-list {
    grid-template-columns: 1fr;
  }

  .legal-document-page .document-hero {
    padding-bottom: 38px;
  }

  .legal-document-page .document-layout {
    display: block;
  }

  .legal-document-page .document-layout .toc {
    display: none;
  }

  .legal-document-page .document-content {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .legal-document-page .document-content .section {
    padding-top: 30px;
    margin-top: 30px;
  }

  .help-document-page .document-layout {
    display: block;
  }

  .help-document-page .document-layout .toc {
    display: none;
  }

  .help-document-page .document-content {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .help-document-page .document-content .section {
    padding-top: 30px;
    margin-top: 30px;
  }

  .contact-hero {
    padding: 54px 0 42px;
    text-align: left;
  }

  .contact-hero p:last-child {
    margin-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .contact-card {
    min-height: 240px;
  }

  .contact-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-main {
    padding-top: 54px;
  }

  .download-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .download-copy h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .download-preview {
    min-height: 510px;
  }

  .download-preview .phone {
    width: 245px;
  }

  .download-features {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }
}

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

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