:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-muted: #f2f3f8;
  --ink: #111111;
  --ink-soft: #646672;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --accent: #6c3cff;
  --accent-strong: #5a2df5;
  --accent-soft: #efe9ff;
  --orange: #ff8359;
  --orange-soft: #ffe6dc;
  --blue-soft: #e9f0ff;
  --mint-soft: #e7f7ef;
  --sand-soft: #f7f0dd;
  --card: #ffffff;
  --card-tint: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 60px rgba(18, 22, 33, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id],
[id="top"] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 131, 89, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(108, 60, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fcfcff 52%, #ffffff 100%);
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.page-shell {
  width: min(calc(100% - 72px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 36px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px auto 0;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(18, 22, 33, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-mark,
.mission-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9b57 0%, var(--orange) 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 131, 89, 0.28);
  font-size: 0.85rem;
  font-weight: 800;
}

.brand-text {
  white-space: nowrap;
}

.brand-mark-image {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(108, 60, 255, 0.22);
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 28px rgba(108, 60, 255, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(108, 60, 255, 0.30);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button-store {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.24);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.82rem;
}

.section {
  padding: 88px 0;
}

.hero {
  padding-top: 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(392px, 0.76fr);
  gap: 22px;
  align-items: center;
  padding: 40px 42px 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.10), transparent 24%),
    linear-gradient(135deg, #5926f7 0%, #6b37ff 48%, #814cff 100%);
  box-shadow: 0 34px 80px rgba(80, 45, 214, 0.22);
}

.hero-copy,
.hero-visual,
.problem-grid > *,
.feature-layout > *,
.feature-list > *,
.scenario-grid > *,
.comparison-grid > *,
.mission-card > *,
.footer-cta > *,
.footer-meta > * {
  min-width: 0;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

h1 {
  max-width: 12.8ch;
  color: #ffffff;
  font-size: clamp(2.7rem, 4.2vw, 3.86rem);
  line-height: 0.97;
}

.lead {
  max-width: 29rem;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.52;
  display: none;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}

.hero-metric {
  position: relative;
  min-width: 136px;
  padding: 0 14px;
}

.hero-metric::before,
.hero-metric::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 18px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  opacity: 0.9;
}

.hero-metric::before {
  left: -4px;
  border-right: 0;
  border-radius: 18px 0 0 18px;
}

.hero-metric::after {
  right: -4px;
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.hero-metric strong {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-store-button {
  min-height: 50px;
  border-radius: 16px;
  padding: 0 18px;
  color: #111111;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.12);
}

.hero-store-button:hover {
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.14);
}

.hero-store-button-secondary {
  background: rgba(255, 255, 255, 0.92);
}

.hero-visual {
  position: relative;
  min-height: 448px;
  overflow: visible;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
}

.ambient-one {
  width: 180px;
  height: 180px;
  top: 28px;
  left: 34px;
  background: rgba(255, 143, 110, 0.28);
}

.ambient-two {
  width: 240px;
  height: 240px;
  right: 24px;
  bottom: 40px;
  background: rgba(178, 160, 255, 0.22);
}

.practice-art-card,
.mission-art-card {
  margin: 0;
}

.hero-phone-image,
.practice-art-card img,
.mission-art-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.hero-phone {
  position: absolute;
  top: -18px;
  right: 26px;
  z-index: 2;
  width: min(372px, 80%);
  margin: 0;
  padding: 10px;
  border-radius: 40px;
  background: linear-gradient(160deg, #161720, #323443 58%, #111118);
  box-shadow: 0 34px 72px rgba(17, 17, 17, 0.28);
}

.hero-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 39%;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.96);
}

.hero-phone-image {
  display: block;
  aspect-ratio: 0.58 / 1;
  height: auto;
  object-fit: cover;
  object-position: 74% 50%;
  border-radius: 30px;
}

.hero-bubble {
  position: absolute;
  z-index: 3;
  max-width: 180px;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 20px 36px rgba(17, 17, 17, 0.16);
}

.hero-bubble-green {
  left: 112px;
  top: 238px;
  color: #ffffff;
  background: linear-gradient(135deg, #5f3fff 0%, #42d07b 100%);
}

.hero-bubble-white {
  right: -8px;
  top: 154px;
  color: #111111;
  background: rgba(255, 255, 255, 0.94);
}

.kicker,
.screen-kicker,
.bubble-label,
.stage-card-label,
.problem-index,
.scenario-type,
.comparison-badge,
.trust-label {
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 16px;
}

.proof-item {
  display: grid;
  place-items: center;
  min-height: 52px;
  gap: 5px;
  padding: 0 8px;
  text-align: center;
}

.proof-item strong {
  color: #1b1c23;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-item span {
  color: #7a7d89;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
}

.proof-item-lockup strong {
  font-size: 1.48rem;
}

.proof-item-lockup span {
  font-size: 0.56rem;
}

.section-soft {
  padding: 36px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  border-radius: 36px;
  background: linear-gradient(180deg, #fbfbfe 0%, #f6f7fb 100%);
}

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

.section-heading-compact {
  max-width: 42rem;
}

.section-heading h2,
.feature-intro h2,
.footer-cta h2,
.mission-copy h2 {
  margin-top: 10px;
  font-size: clamp(2.05rem, 3.8vw, 3.55rem);
  line-height: 1;
}

.section-heading p,
.screen-header p,
#stage-copy,
.problem-card p,
.feature-card p,
.scenario-card p,
.comparison-card li,
.mission-copy p,
.faq-list p,
.footer-meta p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.section-heading p {
  max-width: 38rem;
  margin: 16px 0 0;
  font-size: 0.97rem;
}

.problem-grid,
.scenario-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

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

.trust-card,
.problem-card,
.feature-card,
.scenario-card,
.comparison-card,
.mission-card,
.faq-list details,
.footer-cta,
.footer-meta,
.stage-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.problem-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.problem-card h3 {
  margin-top: 18px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.problem-card p {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.feature-intro {
  max-width: 720px;
  margin: 88px auto 0;
  text-align: center;
}

.how-it-works {
  padding-top: 248px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 72px;
  align-items: start;
  margin-top: 0;
}

.phone-stage {
  position: sticky;
  top: 108px;
  order: 2;
}

.feature-list {
  order: 1;
  max-width: 520px;
  padding-top: 460px;
}

.phone {
  position: relative;
  width: min(100%, 390px);
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(160deg, #1c1c23, #363641 55%, #17171d);
  box-shadow:
    0 34px 70px rgba(18, 22, 33, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 34%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.94);
}

.phone-screen {
  min-height: 640px;
  padding: 42px 22px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 130, 100, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f3ff 100%);
  overflow: hidden;
}

.phone-stage-shell .phone-screen {
  min-height: 600px;
}

.screen-header h2,
.phone-stage-shell h3 {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.02;
}

.stage-topline,
.progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.stage-ui {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.stage-card {
  padding: 20px;
  border-radius: 22px;
}

.stage-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}

.stage-card-accent {
  background: linear-gradient(180deg, #f4eeff 0%, #eee6ff 100%);
}

.progress-stack {
  margin-top: 28px;
}

.progress-block span,
.progress-stack span,
.stage-topline span,
.footer-pills span {
  font-size: 0.84rem;
  font-weight: 700;
}

.progress-bar,
.progress-line {
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.progress-bar span,
.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent) 0%, var(--orange) 100%);
}

.progress-labels {
  margin-top: 10px;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-card.active {
  border-color: rgba(108, 60, 255, 0.26);
  box-shadow: 0 18px 42px rgba(108, 60, 255, 0.10);
  transform: translateY(-2px);
}

.feature-number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3efff 0%, #ebe6ff 100%);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.feature-card h3,
.scenario-card h3,
.comparison-card h3,
.footer-cta h2 {
  font-size: clamp(1.32rem, 1.8vw, 1.86rem);
  line-height: 1.1;
}

.feature-card p,
.scenario-card p,
.comparison-card ul {
  margin: 14px 0 0;
}

.practice-showcase {
  padding-top: 48px;
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.practice-layout .section-heading {
  margin-bottom: 0;
}

.practice-art-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
}

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

.scenario-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  min-height: 220px;
}

.scenario-peach {
  background: var(--orange-soft);
}

.scenario-mint {
  background: var(--mint-soft);
}

.scenario-sand {
  background: var(--sand-soft);
}

.scenario-blue {
  background: var(--blue-soft);
}

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

.comparison-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.comparison-card-muted {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.comparison-card-accent {
  background: linear-gradient(180deg, #f3edff 0%, #ffffff 100%);
  border-color: rgba(108, 60, 255, 0.22);
}

.comparison-card ul {
  padding-left: 18px;
}

.comparison-card li + li {
  margin-top: 12px;
}

.comparison-badge {
  color: var(--accent);
}

.mission-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 34px;
  align-items: center;
  padding: 32px;
  border-radius: 32px;
}

.mission-copy-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mission-mark {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  font-size: 1.05rem;
}

.mission-copy h2 {
  max-width: 12ch;
}

.mission-copy p {
  max-width: 42rem;
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.mission-art-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  box-shadow: var(--shadow);
}

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

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

.faq-list summary {
  list-style: none;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
}

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

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

.site-footer {
  padding: 22px 0 0;
}

.legal-page {
  padding: 28px 0 56px;
}

.legal-shell {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.3vw, 3.7rem);
  line-height: 0.98;
}

.legal-meta {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-copy {
  margin-top: 28px;
}

.legal-copy h2 {
  margin-top: 28px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-copy ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.footer-cta,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 30px;
}

.footer-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #131317 0%, #272738 100%);
  border-color: transparent;
}

.footer-cta .kicker {
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta h2 {
  margin-top: 10px;
  max-width: 12ch;
}

.footer-meta {
  margin-top: 16px;
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.05);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 64px 0;
}

.error-card {
  width: min(100%, 760px);
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.error-card h1 {
  color: var(--ink);
  margin-top: 12px;
  max-width: none;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
}

.error-card .lead {
  color: var(--ink-soft);
  max-width: 36rem;
}

.error-card .button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1120px) {
  .hero-panel,
  .feature-layout,
  .practice-layout,
  .comparison-grid,
  .problem-grid,
  .scenario-grid,
  .mission-card,
  .footer-cta,
  .footer-meta {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 34px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-phone {
    position: relative;
    top: 0;
    right: auto;
    margin: 0 auto;
  }

  .hero-bubble {
    display: none;
  }

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

  .phone-stage {
    position: relative;
    top: 0;
    order: initial;
  }

  .feature-list {
    order: initial;
    max-width: none;
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    gap: 12px;
    padding: 10px 12px;
  }

  .site-nav {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .lead {
    display: block;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-panel {
    padding: 24px;
    border-radius: 32px;
  }

  .hero-metrics {
    gap: 18px;
  }

  .section-soft {
    padding: 22px;
  }

  .feature-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .feature-number {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta,
  .footer-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .site-header .button-small {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  h1 {
    max-width: 9.2ch;
    font-size: clamp(2.45rem, 11vw, 3.3rem);
  }

  .hero-metrics {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section-heading h2,
  .feature-intro h2,
  .mission-copy h2,
  .footer-cta h2 {
    font-size: clamp(1.9rem, 9.2vw, 2.7rem);
  }

  .problem-card,
  .feature-card,
  .scenario-card,
  .comparison-card,
  .mission-card,
  .error-card,
  .footer-cta,
  .footer-meta {
    padding: 22px;
  }

  .hero-panel {
    gap: 22px;
  }

  .hero-phone,
  .practice-art-card,
  .mission-art-card {
    padding: 12px;
    border-radius: 24px;
  }

  .hero-phone-image,
  .practice-art-card img,
  .mission-art-card img {
    border-radius: 18px;
  }

  .phone,
  .phone-stage-shell {
    width: 100%;
  }

  .phone-screen {
    min-height: 560px;
    padding: 38px 18px 22px;
  }

  .screen-header h2,
  .phone-stage-shell h3 {
    font-size: 1.68rem;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .proof-item {
    min-height: 50px;
    padding: 0 6px;
  }

  .proof-item strong {
    font-size: 0.9rem;
  }

  .proof-item-lockup strong {
    font-size: 1.12rem;
  }

  .footer-cta h2 {
    max-width: 9ch;
  }

  .how-it-works {
    padding-top: 84px;
  }
}
