:root {
  --ink: #172024;
  --ink-soft: #39473f;
  --muted: #667269;
  --paper: #fbf7ef;
  --paper-mid: #f7f1e8;
  --paper-cool: #f5f7f0;
  --paper-deep: #f6efe4;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --line: rgba(230, 216, 201, 0.82);
  --line-strong: #e6d8c9;
  --green: #5ab58a;
  --green-bright: #68c99a;
  --green-deep: #315e49;
  --green-dark: #173427;
  --green-soft: #eaf6ef;
  --lilac: #a493c8;
  --lilac-soft: #f0ebf7;
  --coral: #f07a5a;
  --coral-soft: #fff0eb;
  --sun: #f5c26b;
  --sun-soft: #fff4d9;
  --sky: #7ca7b8;
  --blue-soft: #e8f2f5;
  --shadow: 0 22px 70px rgba(23, 32, 36, 0.12);
  --shadow-soft: 0 14px 42px rgba(23, 32, 36, 0.08);
  --radius: 8px;
  --radius-lg: 18px;
  --font-system: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-rounded: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", var(--font-system);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(110deg, var(--paper), var(--paper-mid) 50%, var(--paper-cool)),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-system);
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 13% 5%, rgba(90, 181, 138, 0.13), transparent 26%),
    radial-gradient(circle at 86% 17%, rgba(245, 194, 107, 0.15), transparent 24%),
    linear-gradient(105deg, rgba(164, 147, 200, 0.08), transparent 42%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-rounded);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  width: 100%;
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 6vw, 5.6rem);
  line-height: 0.98;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(46, 59, 52, 0.08);
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(18px);
}

.nav,
.section-shell,
.footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-rounded);
  font-size: 1.78rem;
  font-weight: 640;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 720;
}

.links a,
.footer a {
  text-decoration: none;
}

.links a:hover,
.footer a:hover {
  color: var(--green-deep);
}

.nav-cta,
.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 780;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta {
  padding: 0 20px;
  color: #fffdf8;
  background: var(--green-deep);
  box-shadow: 0 10px 28px rgba(47, 118, 94, 0.18);
}

.button {
  min-height: 56px;
  padding: 0 24px;
}

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

.button.primary {
  color: #fbf7ef;
  border-color: transparent;
  background: var(--green-deep);
  box-shadow: 0 16px 36px rgba(47, 118, 94, 0.2);
}

.button.secondary {
  color: var(--green-deep);
  background: rgba(255, 253, 248, 0.68);
}

.menu-button {
  display: none;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding: clamp(48px, 7vw, 88px) 0 68px;
}

.hero-copy {
  padding: 10px 0;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.availability {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 780;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(91, 181, 139, 0.2);
  border-radius: 999px;
  background: rgba(229, 243, 236, 0.65);
  background: rgba(234, 246, 239, 0.72);
}

.hero-media {
  position: relative;
  min-height: 660px;
}

.phone-frame {
  margin: 0;
  border-radius: 42px;
  background: #172024;
  box-shadow: var(--shadow);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.phone-front {
  position: absolute;
  left: 36%;
  top: 0;
  width: min(330px, 42vw);
  z-index: 3;
}

.phone-back,
.phone-side {
  position: absolute;
  width: min(270px, 34vw);
  z-index: 2;
  opacity: 0.98;
}

.phone-back {
  left: 8%;
  top: 110px;
  transform: rotate(-2deg);
}

.phone-side {
  right: 0;
  top: 126px;
  transform: rotate(2deg);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  font-size: 1.08rem;
}

.how,
.feature-section,
.plans-section,
.privacy-panel,
.plus-section,
.faq-section {
  padding: clamp(48px, 8vw, 92px) 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.soft-card,
.feature-card,
.faq-item,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.step-card {
  position: relative;
  min-height: 220px;
  padding: 32px;
}

.card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green-soft);
}

.sun-icon {
  background:
    radial-gradient(circle, transparent 0 11px, var(--green-deep) 12px 14px, transparent 15px),
    conic-gradient(from 0deg, transparent 0 8%, var(--green-deep) 8% 12%, transparent 12% 20%),
    var(--green-soft);
}

.leaf-icon {
  background:
    radial-gradient(ellipse at 58% 40%, transparent 0 19px, var(--lilac) 20px 22px, transparent 23px),
    linear-gradient(135deg, transparent 48%, var(--lilac) 49% 51%, transparent 52%),
    var(--lilac-soft);
}

.bars-icon {
  background:
    linear-gradient(to top, transparent 0 27px, var(--coral) 27px 48px, transparent 48px),
    linear-gradient(90deg, transparent 16px, var(--coral) 16px 20px, transparent 20px 30px, var(--coral) 30px 34px, transparent 34px 44px, var(--coral) 44px 48px, transparent 48px),
    var(--coral-soft);
}

.step-number {
  position: absolute;
  top: 34px;
  right: 32px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 184px;
  padding: 24px;
  box-shadow: none;
}

.feature-dot {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
}

.feature-dot.green {
  background: var(--green-soft);
  box-shadow: inset 0 0 0 10px rgba(91, 181, 139, 0.22);
}

.feature-dot.lilac {
  background: var(--lilac-soft);
  box-shadow: inset 0 0 0 10px rgba(162, 138, 204, 0.24);
}

.feature-dot.coral {
  background: var(--coral-soft);
  box-shadow: inset 0 0 0 10px rgba(238, 131, 111, 0.24);
}

.feature-dot.sun {
  background: var(--sun-soft);
  box-shadow: inset 0 0 0 10px rgba(244, 198, 99, 0.28);
}

.feature-dot.blue {
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 10px rgba(124, 167, 184, 0.2);
}

.feature-dot.neutral {
  background: #eef0ec;
  box-shadow: inset 0 0 0 10px rgba(104, 115, 109, 0.18);
}

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

.plan-card,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
}

.plus-plan {
  border-color: rgba(90, 181, 138, 0.34);
  background:
    linear-gradient(135deg, rgba(234, 246, 239, 0.92), rgba(255, 255, 255, 0.84) 44%, rgba(240, 235, 247, 0.62)),
    var(--surface-solid);
}

.plan-head {
  min-height: 116px;
}

.plan-head h3 {
  margin-bottom: 8px;
  font-family: var(--font-rounded);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 900;
}

.plan-head p {
  margin-bottom: 0;
  color: var(--green-deep);
  font-weight: 780;
}

.trial-note {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(90, 181, 138, 0.22);
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(234, 246, 239, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
}

.plan-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 720;
}

.plan-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.42;
}

.plan-list li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(135deg, transparent 40%, #ffffff 41% 53%, transparent 54%),
    var(--green);
}

.plan-button {
  margin-top: auto;
  width: fit-content;
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 700;
}

.comparison-card {
  margin-top: 34px;
  padding: clamp(20px, 4vw, 34px);
}

.comparison-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-rounded);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 900;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(96px, 0.32fr) minmax(96px, 0.32fr);
  gap: 16px;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span:first-child {
  color: var(--ink);
  font-weight: 820;
}

.comparison-header {
  background: rgba(234, 246, 239, 0.66);
  color: var(--green-deep);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.comparison-header span:first-child {
  color: var(--green-deep);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  margin-top: 26px;
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(91, 181, 139, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(234, 246, 239, 0.92), rgba(255, 255, 255, 0.78) 45%, rgba(240, 235, 247, 0.58)),
    var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.privacy-intro a {
  color: var(--green-deep);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.privacy-grid article {
  min-height: 170px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.7);
}

.plus-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.plus-copy p {
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 750;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(135deg, transparent 40%, #fffdf8 41% 53%, transparent 54%),
    var(--green);
}

.fine-print {
  max-width: 460px;
  font-size: 0.92rem;
}

.plus-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 34px 42px 0;
  border: 1px solid rgba(244, 198, 99, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(255, 244, 217, 0.86), rgba(255, 255, 255, 0.7) 42%, rgba(255, 240, 235, 0.72)),
    var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.plus-phone {
  align-self: end;
  width: min(260px, 100%);
  transform: translateY(34px);
}

.plus-note h3 {
  font-family: var(--font-rounded);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.06;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.faq-item {
  padding: 0;
  box-shadow: none;
}

.faq-item summary {
  cursor: pointer;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: var(--ink);
  font-weight: 820;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--green-deep);
  font-size: 1.35rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: -2px 22px 22px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 38px;
  align-items: end;
  padding: 44px 0 54px;
  border-top: 1px solid var(--line);
}

.footer-brand p,
.copyright {
  margin: 12px 0 0;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 760;
}

.launch-dialog {
  width: min(520px, calc(100vw - 34px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: transparent;
}

.launch-dialog::backdrop {
  background: rgba(23, 32, 36, 0.28);
  backdrop-filter: blur(7px);
}

.dialog-card {
  position: relative;
  padding: clamp(26px, 5vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(234, 246, 239, 0.92), rgba(255, 255, 255, 0.9) 48%, rgba(255, 244, 217, 0.76)),
    var(--surface-solid);
  box-shadow: 0 26px 80px rgba(23, 32, 36, 0.22);
}

.dialog-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(234, 246, 239, 0.86);
}

.dialog-icon img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.dialog-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 6vw, 3.1rem);
}

.dialog-note {
  margin-bottom: 0;
  color: var(--green-deep);
  font-weight: 760;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dialog-close {
  appearance: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background:
    linear-gradient(45deg, transparent 45%, var(--ink) 46% 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--ink) 46% 54%, transparent 55%),
    rgba(255, 255, 255, 0.76);
}

.dialog-close:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(90, 181, 138, 0.38);
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
  padding: 0 0 64px;
}

.page-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 82px) 0;
}

.content-card {
  padding: clamp(28px, 6vw, 58px);
}

.content-card h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.content-card h2 {
  margin-top: 34px;
  font-family: var(--font-system);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 820;
}

.content-card ul {
  color: var(--muted);
  line-height: 1.65;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.reveal {
  animation: none;
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .hero-media {
    min-height: 590px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-front {
    left: 34%;
    width: min(310px, 42vw);
  }

  .phone-back,
  .phone-side {
    width: min(245px, 34vw);
  }

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

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

  .privacy-panel,
  .plus-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav,
  .section-shell,
  .footer,
  .page-main {
    width: min(1240px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
  }

  .nav {
    min-height: 68px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    font-size: 1.42rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow-soft);
  }

  .links.is-open {
    display: flex;
  }

  .links a {
    padding: 14px;
  }

  .legal-nav {
    min-height: 84px;
    grid-template-columns: 1fr;
    justify-content: start;
    align-content: center;
    gap: 8px;
    padding: 12px 0;
  }

  .legal-nav .legal-links {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-nav .legal-links a {
    padding: 0;
  }

  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.7);
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: var(--ink);
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 46px;
    overflow: hidden;
  }

  .hero-copy,
  .lead,
  .availability {
    width: min(100%, 326px);
    max-width: 326px;
  }

  .actions,
  .trust-row {
    width: min(100%, 326px);
    max-width: 326px;
  }

  h1 {
    font-size: clamp(2.1rem, 8.9vw, 3.05rem);
    line-height: 1.02;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .dialog-actions {
    display: grid;
  }

  .hero-media {
    min-height: 505px;
    max-width: calc(100vw - 44px);
    overflow: hidden;
  }

  .section-heading p {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .step-card p,
  .feature-card p,
  .privacy-panel p,
  .plus-section p,
  .faq-item p,
  .content-card p {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .step-card p,
  .feature-card p {
    max-width: 282px;
  }

  .phone-front {
    left: 50%;
    width: min(276px, 70vw);
    transform: translateX(-50%);
  }

  .phone-back,
  .phone-side {
    width: min(190px, 48vw);
    opacity: 0.52;
    filter: saturate(0.88);
  }

  .phone-back {
    left: 0;
    top: 120px;
  }

  .phone-side {
    right: 0;
    top: 145px;
  }

  .step-grid,
  .feature-grid,
  .plan-grid,
  .privacy-grid,
  .faq-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 24px;
  }

  .plan-head {
    min-height: auto;
  }

  .plan-button {
    width: 100%;
  }

  .pricing-note {
    text-align: left;
  }

  .comparison-card {
    padding: 20px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px;
  }

  .comparison-header {
    display: none;
  }

  .comparison-row span:nth-child(2)::before {
    content: "Free: ";
    color: var(--muted);
    font-weight: 760;
  }

  .comparison-row span:nth-child(3)::before {
    content: "Plus: ";
    color: var(--muted);
    font-weight: 760;
  }

  .privacy-panel {
    padding: 30px 20px;
  }

  .plus-card {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .plus-phone {
    width: min(230px, 72vw);
    justify-self: center;
    transform: none;
  }

  .footer {
    align-items: start;
    gap: 24px;
  }
}

@media (max-width: 460px) {
  .hero-media {
    min-height: 478px;
  }

  .phone-front {
    width: min(258px, 70vw);
  }

  .phone-back,
  .phone-side {
    width: 166px;
  }

  .phone-back {
    left: -12px;
  }

  .phone-side {
    right: -12px;
  }

  .step-card,
  .feature-card,
  .content-card {
    padding: 22px;
  }
}
