:root {
  --bg-main: #f8fbf7;
  --bg-cream: #f3f7ef;
  --ink: #171f1a;
  --muted: #5a6860;
  --stroke: rgba(23, 31, 26, 0.12);
  --card: rgba(255, 255, 255, 0.9);
  --brand: #5cb85c;
  --brand-dark: #42904e;
  --brand-cta: #2f7045;
  --brand-cta-dark: #245a37;
  --brand-soft: rgba(92, 184, 92, 0.14);
  --shadow-soft: 0 16px 40px rgba(22, 35, 27, 0.1);
  --shadow-hard: 0 30px 72px rgba(10, 18, 13, 0.3);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbf8 0%, #f5f9f3 100%);
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.lp-home .container {
  width: min(1160px, 88vw);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(860px 430px at 6% 8%, rgba(92, 184, 92, 0.18), transparent 70%),
    radial-gradient(760px 420px at 95% 10%, rgba(134, 212, 154, 0.16), transparent 72%),
    linear-gradient(180deg, #f8fbf8 0%, #f5f9f3 100%);
}

/* Shared top nav */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(248, 252, 248, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 31, 26, 0.06);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.lp-home .topbar {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

.topbar.is-scrolled {
  background: rgba(248, 252, 248, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 22px rgba(24, 34, 28, 0.08);
  border-bottom: 1px solid rgba(23, 31, 26, 0.06);
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(44, 112, 67, 0.25);
}

.topnav {
  display: none;
  align-items: center;
  gap: 24px;
}

.topnav a {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 150ms ease;
}

.topnav a:hover {
  color: var(--ink);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand-cta);
  color: #fff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(64, 145, 78, 0.26);
  transition: transform 150ms ease, background 150ms ease;
}

.topbar-cta:hover {
  transform: translateY(-1px);
  background: var(--brand-cta-dark);
}

/* Landing page */
.lp-section {
  position: relative;
  padding: 96px 0;
}

.lp-hero {
  min-height: 100svh;
  padding: 84px 0 28px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lp-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  z-index: -2;
  pointer-events: none;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(248, 252, 248, 0.72), rgba(248, 252, 248, 0.52) 40%, #f8fbf7 94%);
}

.lp-hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.lp-hero-blob-a {
  width: 360px;
  height: 360px;
  top: 90px;
  left: -110px;
  background: rgba(92, 184, 92, 0.2);
}

.lp-hero-blob-b {
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: 60px;
  background: rgba(123, 205, 145, 0.22);
}

.lp-hero-grid {
  width: 100%;
  display: grid;
  gap: 48px;
  align-items: center;
}

.lp-hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lp-hero-copy .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #2f7045;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.lp-hero-copy .badge svg {
  width: 16px;
  height: 16px;
}

.lp-hero-copy h1 {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.45rem, 7vw, 5.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lp-hero-copy h1 .lp-nowrap {
  color: var(--brand);
}

.lp-hero-copy p {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.8vw, 1.35rem);
  max-width: 560px;
}

.lp-hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 55px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: var(--brand-cta);
  box-shadow: 0 14px 30px rgba(64, 145, 78, 0.28);
}

.btn-primary:hover {
  background: var(--brand-cta-dark);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--stroke);
}

.lp-hero-phones {
  position: relative;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-phone {
  margin: 0;
  position: relative;
  border-radius: 26px;
  border: 1.5px solid #111827;
  background: #111827;
  padding: 5px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(12, 20, 34, 0.16);
}

.lp-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.lp-phone-main {
  width: min(300px, 72vw);
  z-index: 2;
}


.lp-phone-side {
  width: min(270px, 56vw);
  position: absolute;
  right: -28px;
  top: 52px;
  z-index: 3;
  animation: lpFloat 4.2s ease-in-out infinite;
}

.lp-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lp-scroll-indicator svg {
  width: 16px;
  height: 16px;
  animation: lpBounce 1.5s ease-in-out infinite;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 62px;
}

.lp-eyebrow {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.lp-section-head h2 {
  margin: 10px 0 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lp-section-head h2 span {
  color: var(--brand);
}

.lp-feature-stack {
  display: grid;
  gap: 76px;
}

.lp-feature-row {
  display: grid;
  align-items: center;
  gap: 34px;
}

.lp-feature-copy h3 {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4.1vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.lp-feature-copy p {
  margin: 12px 0 0;
  font-size: clamp(1.06rem, 2.5vw, 1.28rem);
  color: var(--muted);
  max-width: 530px;
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.lp-feature-icon svg {
  width: 24px;
  height: 24px;
}

.lp-feature-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.lp-illustration-shell {
  width: min(380px, 84vw);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.lp-phone-overlay {
  width: min(188px, 44vw);
  position: absolute;
  right: max(-10px, calc(50% - 220px));
  bottom: -50px;
}

.lp-feature-visual-single {
  align-items: center;
}

.lp-feature-visual-single .lp-phone-main {
  width: min(280px, 70vw);
}

.lp-how {
  background: linear-gradient(180deg, rgba(235, 246, 234, 0.7), rgba(244, 248, 241, 0.86));
  overflow: hidden;
}

.lp-how-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.lp-how-blob-a {
  width: 300px;
  height: 300px;
  top: 42%;
  left: -110px;
  background: rgba(92, 184, 92, 0.12);
}

.lp-how-blob-b {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -30px;
  background: rgba(92, 184, 92, 0.14);
}

.lp-steps-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.lp-step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: 0 14px 30px rgba(18, 28, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lp-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(18, 28, 22, 0.11);
}

.lp-step-number {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(66, 144, 78, 0.18);
}

.lp-step-card h3 {
  margin: 14px 0 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.34rem;
  line-height: 1.2;
}

.lp-step-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.lp-download {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbf7 0%, #f6faf5 100%);
}

.lp-download-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 310px at 50% 24%, rgba(92, 184, 92, 0.13), transparent 72%),
    linear-gradient(135deg, rgba(92, 184, 92, 0.05), transparent 45%, rgba(123, 205, 145, 0.06));
}

.lp-download-wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.lp-download-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(44, 112, 67, 0.24);
}

.lp-download-wrap h2 {
  margin: 22px 0 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.05rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lp-download-wrap h2 span {
  color: var(--brand);
}

.lp-download-wrap p {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.11rem;
}

.lp-store-buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lp-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 196px;
  min-height: 56px;
  border-radius: 13px;
  padding: 10px 16px;
  background: #101812;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.lp-store-btn:hover {
  background: #111d15;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 24, 18, 0.3);
}

.lp-store-btn.is-disabled {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.lp-store-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.lp-store-btn > span {
  text-align: left;
}

.lp-store-small {
  display: block;
  font-size: 10px;
  line-height: 1;
  opacity: 0.8;
}

.lp-store-big {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.lp-store-status {
  margin-top: 14px !important;
  font-size: 0.95rem !important;
  color: var(--muted);
}

.lp-download-note {
  margin-top: 18px !important;
  font-size: 0.94rem !important;
}

.lp-footer {
  border-top: 1px solid rgba(23, 31, 26, 0.08);
  padding: 34px 0 44px;
}

.lp-footer-inner {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.lp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.lp-footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.lp-copyright {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Support/privacy pages */
.wrap {
  max-width: 980px;
  padding: 28px 18px 46px;
  margin: 0 auto;
}

.wrap > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.wrap .brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.wrap .logo {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4aa85d, #3d8f53);
  box-shadow: 0 10px 24px rgba(66, 145, 84, 0.24);
}

.wrap .brand h1 {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.wrap nav {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.wrap nav a {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.wrap nav a:hover {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.65);
}

.hero {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: calc(var(--radius-lg) + 6px);
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}

.hero h2 {
  margin: 0 0 6px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.12;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.card {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.07);
}

.card h3 {
  margin: 0 0 10px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
}

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

.card ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(18, 18, 18, 0.8);
  font-size: 14px;
}

.footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.doc {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.doc h2 {
  margin: 0 0 6px;
  font-family: "DM Sans", system-ui, sans-serif;
}

.doc h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  font-family: "DM Sans", system-ui, sans-serif;
}

.doc p,
.doc li {
  color: var(--muted);
  font-size: 14px;
}

.doc code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(18, 18, 18, 0.06);
  padding: 2px 6px;
  border-radius: 8px;
}

.sp-page {
  padding-top: 72px;
  padding-bottom: 8px;
}

.sp-hero {
  padding-top: 46px;
  padding-bottom: 24px;
}

.sp-hero .lp-section-head {
  margin-bottom: 0;
}

.sp-hero h1 {
  margin: 10px 0 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 5.2vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.sp-lead {
  margin: 14px auto 0;
  color: var(--muted);
  max-width: 700px;
  font-size: 1.14rem;
}

.sp-pills {
  justify-content: center;
}

.sp-content {
  padding-top: 22px;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.sp-card {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.sp-card h3 {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.sp-card p,
.sp-card li {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.sp-card p {
  margin-top: 10px;
}

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

.sp-card-note {
  margin-top: 12px !important;
}

.sp-doc {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.sp-doc h3 {
  margin: 20px 0 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.16rem;
}

.sp-doc p,
.sp-doc li {
  color: var(--muted);
  font-size: 1rem;
}

.sp-doc ul {
  margin: 10px 0 0 20px;
}

.sp-doc p + h3,
.sp-doc ul + h3 {
  margin-top: 22px;
}

.sp-doc code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(18, 18, 18, 0.06);
  padding: 2px 6px;
  border-radius: 8px;
}

.sp-footnote {
  margin-top: 20px;
  font-size: 0.85rem !important;
}

/* Motion */
@keyframes lpFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes lpBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 760px) {
  .topbar-inner {
    height: 80px;
  }

  .topnav {
    display: inline-flex;
  }

  .lp-hero {
    padding-top: 80px;
  }

  .lp-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 24px;
  }

  .lp-hero-copy {
    text-align: left;
    max-width: 640px;
  }

  .lp-hero-copy h1 .lp-nowrap {
    white-space: nowrap;
  }

  .lp-hero-copy p {
    margin-left: 0;
  }

  .lp-hero-actions {
    justify-content: flex-start;
  }

  .lp-phone-side {
    right: -28px;
    top: 52px;
    width: 270px;
    animation: lpFloat 4s ease-in-out infinite;
  }

  .lp-scroll-indicator {
    display: inline-flex;
  }

  .lp-feature-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .lp-feature-row.is-reverse .lp-feature-copy {
    order: 2;
  }

  .lp-feature-row.is-reverse .lp-feature-visual {
    order: 1;
  }

  .lp-phone-overlay {
    right: -14px;
    bottom: -54px;
  }

  .lp-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .lp-step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 5px);
    width: 16px;
    height: 2px;
    background: rgba(66, 144, 78, 0.23);
  }

  .lp-footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .lp-copyright {
    justify-self: end;
  }

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

@media (min-width: 1024px) {
  .lp-feature-stack {
    gap: 106px;
  }

  .lp-illustration-shell {
    width: 390px;
  }

  .lp-phone-overlay {
    width: 196px;
  }
}

@media (max-width: 759px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(248, 252, 248, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(23, 31, 26, 0.06);
  }

  .brand-link {
    font-size: 19px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .topbar-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .lp-section {
    padding: 74px 0;
  }

  .lp-hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .lp-hero-phones {
    min-height: 430px;
  }

  .lp-phone-side {
    display: none;
  }

  .lp-section-head {
    margin-bottom: 38px;
  }

  .lp-feature-stack {
    gap: 58px;
  }

  .lp-feature-copy {
    text-align: center;
  }

  .lp-feature-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-phone-overlay {
    right: -10px;
    bottom: -36px;
    width: min(162px, 38vw);
  }

  .lp-step-card {
    padding: 24px 20px;
  }

  .lp-download-logo {
    width: 72px;
    height: 72px;
  }
}
