:root {
  --ink: #141832;
  --muted: #6f758d;
  --paper: #fffdf4;
  --soft: #f4f1eb;
  --line: rgba(20, 24, 50, 0.12);
  --accent: #ff6f61;
  --accent-soft: #ffe7e1;
  --app-blue: #3153f4;
  --sky: #eaf7ff;
  --cream: #fffdf3;
  --blush: #f8e2df;
  --lavender: #ececff;
  --gold: #ffd45d;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(20, 24, 50, 0.14);
  --radius: 28px;
  --font-sans: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --type-hero: clamp(3.5rem, 5.8vw, 4.5rem);
  --type-section: clamp(2.6rem, 4.4vw, 3.5rem);
  --type-feature: clamp(2.15rem, 3.25vw, 2.75rem);
  --type-card-title: clamp(1.25rem, 1.8vw, 1.45rem);
  --type-body-lg: clamp(1.1rem, 1.45vw, 1.25rem);
  --type-body: 1.06rem;
  --type-label: 0.86rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    linear-gradient(180deg, rgba(234, 247, 255, 0.88), rgba(255, 253, 244, 0.96) 35%, rgba(248, 226, 223, 0.72)),
    radial-gradient(circle at 20% 8%, rgba(49, 83, 244, 0.13), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(255, 111, 97, 0.22), transparent 30%);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 14px 40px rgba(20, 24, 50, 0.11);
  backdrop-filter: blur(22px);
  transition: background 0.2s ease, box-shadow 0.2s ease, top 0.2s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(20, 24, 50, 0.17);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(20, 24, 50, 0.15);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(20, 24, 50, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.site-nav a {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #333853;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: var(--ink);
  color: var(--white);
}

.header-cta {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(20, 24, 50, 0.2);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 44px;
  padding-top: 140px;
}

.hero-copy,
.hero-visual,
.section-heading,
.feature-copy {
  min-width: 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--app-blue);
  font-size: var(--type-label);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.15;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 111, 97, 0.14);
}

.hero h1 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: var(--type-hero);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 700;
}

.hero p {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: #434965;
  font-size: var(--type-body-lg);
  line-height: 1.55;
  font-weight: 450;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.cta-row.center {
  justify-content: center;
}

.app-store-link {
  height: 58px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.app-store-link img {
  width: auto;
  height: 100%;
}

.app-store-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 22px rgba(16, 21, 18, 0.2));
}

.store-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 10px;
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 780;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.store-button:hover {
  transform: translateY(-2px);
}

.store-button.apple {
  background: #101512;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(16, 21, 18, 0.22);
}

.store-button.ghost {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: not-allowed;
  opacity: 0.82;
}

.store-button.light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.store-button small {
  display: block;
  color: currentColor;
  font-size: 0.71rem;
  font-weight: 650;
  opacity: 0.72;
}

.store-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0;
}

.store-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  clip-path: polygon(50% 0, 58% 30%, 90% 20%, 70% 48%, 100% 64%, 65% 64%, 50% 100%, 35% 64%, 0 64%, 30% 48%, 10% 20%, 42% 30%);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(20, 24, 50, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: #333853;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.mockup-stage {
  position: relative;
  width: min(610px, 100%);
  height: 690px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.mockup-stage::before {
  content: "";
  position: absolute;
  inset: 70px 26px 58px;
  z-index: -1;
  border-radius: 42% 58% 52% 48%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 111, 97, 0.24), transparent 28%),
    radial-gradient(circle at 74% 30%, rgba(49, 83, 244, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(234, 247, 255, 0.7), rgba(248, 226, 223, 0.42));
  filter: blur(4px);
}

.mockup {
  position: absolute;
  width: min(340px, 63vw);
  height: auto;
  filter: drop-shadow(0 34px 52px rgba(16, 21, 18, 0.2));
  user-select: none;
}

.mockup-front {
  right: 34px;
  top: 4px;
  z-index: 2;
  transform: rotate(3deg);
}

.mockup-back {
  left: 24px;
  bottom: 18px;
  z-index: 1;
  transform: rotate(-9deg) scale(0.9);
  opacity: 0.92;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 148px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(20, 24, 50, 0.13);
  backdrop-filter: blur(16px);
  color: var(--ink);
  font-weight: 760;
}

.floating-note span {
  color: var(--app-blue);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.note-one {
  top: 155px;
  left: 22px;
}

.note-two {
  right: 0;
  bottom: 132px;
}

.trust-strip {
  width: min(1180px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -30px auto 20px;
  padding: 20px;
  border: 1px solid rgba(20, 24, 50, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 44px rgba(20, 24, 50, 0.08);
}

.trust-strip > span {
  color: var(--muted);
  font-weight: 750;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.trust-items strong {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.9rem;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--type-body-lg);
  line-height: 1.55;
  font-weight: 430;
}

.section-heading.compact {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.solution-panel h2,
.final-card h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: var(--type-section);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}

.problem-grid,
.testimonial-grid,
.benefit-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem {
  position: relative;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 36px;
}

.lost-highlight {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 34px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.78)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(20, 24, 50, 0.05) 32px);
  box-shadow: 0 22px 64px rgba(20, 24, 50, 0.1);
  transform: rotate(1.5deg);
}

.lost-highlight::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 228, 0.98));
}

.paper-line {
  display: block;
  width: 78%;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(20, 24, 50, 0.13);
}

.paper-line.long {
  width: 92%;
}

.paper-line.short {
  width: 54%;
}

.lost-highlight mark {
  display: inline;
  padding: 5px 7px;
  border-radius: 10px;
  background: rgba(247, 198, 107, 0.55);
  color: #4c3916;
  font-family: var(--font-serif);
  font-size: 1.42rem;
  line-height: 1.35;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.fade-chip {
  position: absolute;
  right: 20px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 650;
  box-shadow: 0 14px 30px rgba(20, 24, 50, 0.2);
}

.problem-grid article,
.testimonial-grid article,
.benefit-grid div,
.steps article,
.faq-list details {
  border: 1px solid rgba(20, 24, 50, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(20, 24, 50, 0.07);
}

.problem-grid article,
.benefit-grid div,
.steps article {
  padding: 28px;
}

.problem-card {
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(255, 111, 97, 0.12);
}

.problem-card.featured {
  background:
    linear-gradient(145deg, rgba(20, 24, 50, 0.98), rgba(49, 83, 244, 0.9)),
    var(--ink);
  color: var(--white);
  transform: translateY(-18px);
}

.problem-card.featured p,
.problem-card.featured span {
  color: rgba(255, 255, 255, 0.72);
}

.problem-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 22px;
  background: var(--lavender);
  color: var(--app-blue);
  font-size: 0;
}

.problem-icon::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.problem-card:nth-child(2) .problem-icon::before {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border-top-color: transparent;
}

.problem-card:nth-child(3) .problem-icon::before {
  width: 28px;
  height: 16px;
  border-radius: 999px;
  border-left-color: transparent;
  transform: rotate(-18deg);
}

.problem-card.featured .problem-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--accent);
}

.problem-grid .problem-card > span,
.steps span,
.feature-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--app-blue);
  font-size: var(--type-label);
  line-height: 1.15;
  font-weight: 650;
}

.problem-grid h3,
.benefit-grid h3,
.steps h3 {
  margin: 0;
  font-size: var(--type-card-title);
  line-height: 1.2;
  font-weight: 650;
}

.problem-grid p,
.solution-panel p,
.feature-copy p,
.benefit-grid p,
.steps p,
.faq-list p,
.final-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.58;
  font-weight: 430;
}

.solution {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.solution-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 42px;
  padding: 56px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(20, 24, 50, 0.98), rgba(49, 83, 244, 0.92)),
    linear-gradient(90deg, rgba(255, 111, 97, 0.2), transparent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.solution-panel h2,
.solution-panel p,
.solution-panel .kicker {
  color: var(--white);
}

.solution-panel p {
  color: rgba(255, 255, 255, 0.77);
  font-size: var(--type-body-lg);
  line-height: 1.55;
}

.solution-flow {
  display: grid;
  gap: 12px;
}

.solution-flow div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 650;
}

.solution-flow span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
}

.testimonial-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.testimonial-grid article::before {
  content: "";
  position: absolute;
  top: -44px;
  right: -38px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(247, 198, 107, 0.24);
}

.testimonial-grid article:nth-child(2)::before {
  background: rgba(71, 118, 201, 0.18);
}

.testimonial-grid article:nth-child(3)::before {
  background: rgba(239, 125, 96, 0.18);
}

.stars {
  position: absolute;
  top: 26px;
  right: 24px;
  color: #e1a62b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.testimonial-grid p {
  min-height: 166px;
  margin: 22px 0;
  color: #343a55;
  font-size: var(--type-body);
  line-height: 1.56;
  font-weight: 430;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 700;
}

.avatar.accent {
  background: #d7e2ff;
  color: var(--app-blue);
}

.avatar.warm {
  background: #ffe0b9;
  color: #895019;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 64px;
  padding: 54px 0;
}

.feature-row.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

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

.feature-copy h3 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--type-feature);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 650;
}

.feature-copy p {
  max-width: 560px;
  margin-top: 18px;
  font-size: var(--type-body-lg);
  line-height: 1.55;
  font-weight: 430;
}

.feature-phone {
  width: min(430px, 100%);
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 22%, rgba(247, 198, 107, 0.25), transparent 32%),
    radial-gradient(circle at 78% 68%, rgba(191, 231, 199, 0.34), transparent 34%),
    rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.feature-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(16, 21, 18, 0.18));
}

.benefit-grid {
  margin-top: 28px;
}

.how {
  padding-top: 44px;
}

.steps article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.steps article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(49, 83, 244, 0.08);
  border-radius: 999px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--app-blue);
  font-size: 1.35rem;
}

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

.faq-list p {
  margin: -6px 0 22px;
  max-width: 760px;
}

.final-cta {
  width: min(1180px, calc(100% - 40px));
  padding-top: 44px;
}

.final-card {
  padding: 70px 34px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(20, 24, 50, 0.97), rgba(49, 83, 244, 0.9)),
    linear-gradient(90deg, rgba(255, 111, 97, 0.22), rgba(255, 212, 93, 0.16));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-card img {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 18px;
}

.final-card h2,
.final-card p {
  color: var(--white);
}

.final-card h2 {
  width: min(820px, 100%);
  margin-inline: auto;
}

.final-card p {
  width: min(620px, 100%);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 36px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-brand div {
  display: grid;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  color: var(--muted);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--app-blue);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --type-hero: clamp(3rem, 10vw, 4.5rem);
    --type-section: clamp(2.4rem, 7vw, 3.25rem);
    --type-feature: clamp(2rem, 5.8vw, 2.6rem);
    --type-body-lg: 1.12rem;
    --type-body: 1.02rem;
  }

  .section-pad {
    padding: 76px 0;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    min-width: 92px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ink), #222a58);
    color: var(--white);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(20, 24, 50, 0.22);
  }

  .nav-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 111, 97, 0.18);
  }

  .nav-toggle-icon span {
    width: 18px;
    height: 2px;
    position: absolute;
    left: 3px;
    border-radius: 99px;
    background: var(--white);
    transition: transform 0.22s ease, width 0.22s ease;
  }

  .nav-toggle-icon span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle-icon span:last-child {
    width: 13px;
    transform: translateY(4px);
  }

  .nav-toggle-text {
    line-height: 1;
  }

  .menu-open .nav-toggle-icon span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .menu-open .nav-toggle-icon span:last-child {
    width: 18px;
    transform: translateY(0) rotate(-45deg);
  }

  .menu-open .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(20, 24, 50, 0.16);
  }

  .menu-open .site-nav a {
    justify-content: start;
    min-height: 48px;
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 126px;
  }

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

  .trust-strip,
  .site-footer,
  .solution-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip {
    display: grid;
  }

  .trust-items {
    justify-content: flex-start;
  }

  .problem-grid,
  .testimonial-grid,
  .benefit-grid,
  .steps,
  .problem-layout,
  .solution-panel,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .lost-highlight {
    max-width: 540px;
  }

  .problem-card.featured {
    transform: none;
  }

  .feature-row.reverse .feature-copy {
    order: 0;
  }

  .feature-row {
    gap: 28px;
    padding: 26px 0;
  }

  .testimonial-grid p {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --type-hero: clamp(3.05rem, 13vw, 3.65rem);
    --type-section: clamp(2.25rem, 10vw, 2.9rem);
    --type-feature: clamp(1.95rem, 8.4vw, 2.3rem);
    --type-card-title: 1.22rem;
    --type-body-lg: 1.125rem;
    --type-body: 1.05rem;
    --type-label: 0.78rem;
  }

  .section-pad,
  .trust-strip,
  .final-cta,
  .site-footer,
  .site-header {
    width: calc(100% - 28px);
  }

  .site-header {
    height: 62px;
    top: 10px;
  }

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

  .brand span {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 106px;
  }

  .hero p {
    font-size: var(--type-body-lg);
  }

  .eyebrow {
    max-width: 100%;
    align-items: flex-start;
  }

  .cta-row,
  .app-store-link,
  .store-button {
    width: 100%;
  }

  .app-store-link {
    justify-content: center;
  }

  .app-store-link img {
    height: 54px;
  }

  .store-button {
    justify-content: center;
  }

  .hero-proof span {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    text-align: center;
  }

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

  .mockup-stage {
    width: min(360px, 100%);
    height: 520px;
  }

  .mockup {
    width: min(245px, 69vw);
  }

  .mockup-front {
    right: -8px;
    top: 10px;
  }

  .mockup-back {
    left: -20px;
    bottom: 14px;
  }

  .floating-note {
    display: none;
  }

  .lost-highlight {
    min-height: 230px;
    padding: 24px;
    border-radius: 30px;
  }

  .lost-highlight mark {
    font-size: 1.2rem;
  }

  .problem-grid article,
  .benefit-grid div,
  .steps article,
  .testimonial-grid article {
    padding: 22px;
  }

  .solution-panel,
  .final-card {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .feature-phone {
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
