:root {
  --bg: #f5f7f1;
  --surface: #ffffff;
  --ink: #121917;
  --muted: #61706b;
  --soft: #eef4ea;
  --line: #dbe4d8;
  --green: #137a4b;
  --green-dark: #0c4f36;
  --green-soft: #e5f5e9;
  --lime: #d8ff62;
  --gold: #f0bf45;
  --blue: #2868d8;
  --panel: #101820;
  --panel-soft: #17231f;
  --shadow: 0 22px 70px rgba(18, 25, 23, 0.12);
  --shadow-soft: 0 14px 44px rgba(18, 25, 23, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f8faf4 0, var(--bg) 430px, #fff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(19, 122, 75, 0.3);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 84px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 250, 244, 0.9);
  border-bottom: 1px solid rgba(18, 25, 23, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 40px), var(--container));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #26312e;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 160ms ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green-dark);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(18, 25, 23, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #edf4e9;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 244, 0.98) 0%, rgba(248, 250, 244, 0.86) 48%, rgba(16, 24, 32, 0.48) 100%),
    url("img/me-invite-bg.png?v=20260805.2") center right / cover no-repeat;
}

.hero-grid {
  position: relative;
  min-height: min(780px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 60px;
  padding: 70px 0 58px;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7.2vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #26312e;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(28, 143, 90, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(28, 143, 90, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-color: var(--line);
}

.button-dark {
  background: var(--panel);
  color: #fff;
  box-shadow: 0 12px 30px rgba(18, 25, 23, 0.16);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(18, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #24322e;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(18, 25, 23, 0.04);
}

.fine-print {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  min-width: 0;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: min(88%, 430px);
  height: 78%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
  transform: rotate(-4deg);
  box-shadow: 0 32px 90px rgba(16, 24, 32, 0.18);
}

.phone {
  position: relative;
  width: min(320px, 80vw);
  aspect-ratio: 0.5;
  padding: 12px;
  border: 7px solid #111614;
  border-radius: 44px;
  background: #101514;
  box-shadow: 0 28px 86px rgba(16, 24, 32, 0.28);
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 82px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #2f3835;
  z-index: 2;
}

.app-screen {
  height: 100%;
  padding: 42px 18px 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #f8fbf0 0%, #e7f1e7 100%);
  overflow: hidden;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.app-top img {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.balance-panel {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(28, 143, 90, 0.18), rgba(28, 143, 90, 0) 42%),
    var(--panel);
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.18);
}

.balance-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.balance-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1.75rem;
  line-height: 1;
}

.phone-reward-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.phone-reward-grid div {
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(18, 25, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(18, 25, 23, 0.05);
}

.phone-reward-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.phone-reward-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 0.98rem;
  line-height: 1.15;
}

.cashout-strip {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1c965f, #0d6c48);
  color: #fff;
  box-shadow: 0 16px 34px rgba(28, 143, 90, 0.22);
}

.cashout-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
}

.cashout-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.cashout-strip small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.steps-section,
.rewards-section,
.invite-section,
.why-section,
.download-section,
.faq-section,
.value-section {
  padding: 80px 0;
}

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

.section-heading.narrow {
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
  gap: 32px;
  align-items: end;
}

.section-heading p,
.invite-grid p,
.why-copy p,
.download-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
}

.steps article,
.feature,
.invite-flow article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.steps article {
  position: relative;
  z-index: 1;
  min-height: 218px;
  padding: 26px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.steps p,
.feature p,
.invite-flow strong,
.faq-list p,
.footer p {
  color: var(--muted);
}

.rewards-section {
  background: linear-gradient(180deg, #fff 0%, #f7faf4 100%);
}

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

.feature {
  min-height: 208px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.feature.highlight {
  background: var(--panel);
  color: #fff;
  border-color: transparent;
}

.feature.highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  width: auto;
  height: 40px;
  padding: 0 11px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.highlight .feature-icon {
  background: var(--lime);
  color: var(--ink);
}

.invite-section {
  background: #eef4ea;
}

.value-section {
  background: #f7faef;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: 40px;
  align-items: center;
}

.value-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.value-card {
  padding: 0;
}

.price-line {
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 255, 98, 0.12), rgba(216, 255, 98, 0) 48%),
    var(--panel);
  color: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.16);
}

.price-line span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.price-line strong {
  display: block;
  margin-top: 8px;
  color: var(--lime);
  font-size: 2.4rem;
  line-height: 1;
}

.value-card ul {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.value-card li {
  position: relative;
  min-height: 46px;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  color: #2b3934;
  font-weight: 800;
}

.value-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.value-card li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.invite-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.invite-grid .button {
  margin-top: 18px;
}

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

.invite-flow article {
  min-height: 142px;
  padding: 20px;
  position: relative;
}

.invite-flow article::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.invite-flow span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #e7f6de;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.invite-flow strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.why-section {
  background: var(--panel);
  color: #fff;
}

.why-section .eyebrow {
  color: var(--lime);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.why-copy p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.76);
}

.why-copy ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.why-copy li {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.download-section {
  background: linear-gradient(135deg, #dff1d5, #eef7ea);
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  border: 1px solid rgba(12, 79, 54, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.download-panel h2 {
  max-width: 720px;
}

.download-panel p {
  max-width: 680px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green-dark);
}

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

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

.footer {
  padding: 52px 0;
  background: #f8faf4;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.45fr) minmax(220px, 0.75fr);
  gap: 34px;
}

.footer img {
  width: 210px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer h2,
.footer h3 {
  margin: 18px 0 10px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 10px 0;
}

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

@media (hover: hover) and (pointer: fine) {
  .steps article,
  .feature,
  .invite-flow article {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  }

  .steps article:hover,
  .feature:hover,
  .invite-flow article:hover {
    transform: translateY(-3px);
    border-color: rgba(19, 122, 75, 0.28);
    box-shadow: 0 18px 48px rgba(18, 25, 23, 0.1);
  }

  .feature.highlight:hover {
    border-color: rgba(216, 255, 98, 0.38);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero-grid,
  .section-heading.split,
  .invite-grid,
  .why-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    gap: 20px;
  }

  .phone-stage {
    min-height: 540px;
    overflow: hidden;
  }

  .phone-stage::before {
    height: 74%;
  }

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

  .download-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: calc(100vw - 28px);
    max-width: var(--container);
  }

  .hero-grid,
  .hero-copy,
  .section-heading,
  .section-heading.narrow,
  .download-panel {
    max-width: min(340px, calc(100vw - 28px));
  }

  .hero-copy {
    width: 100%;
    max-width: 340px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 142px;
  }

  .hero-grid {
    padding: 44px 0 42px;
  }

  h1 {
    max-width: 10ch;
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 340px;
  }

  .trust-list li {
    justify-content: center;
    padding: 0 8px;
    white-space: normal;
    text-align: center;
    min-width: 0;
  }

  .phone-stage {
    width: 100%;
    max-width: 340px;
    min-height: 500px;
    margin-inline: auto;
  }

  .phone {
    width: min(240px, calc(100vw - 104px));
  }

  .app-top img {
    width: 104px;
  }

  .balance-panel strong {
    font-size: 1.55rem;
  }

  .phone-reward-grid div {
    min-height: 82px;
    padding: 10px;
  }

  .phone-reward-grid strong {
    font-size: 0.9rem;
  }

  .steps-section,
  .rewards-section,
  .invite-section,
  .why-section,
  .download-section,
  .faq-section,
  .value-section {
    padding: 68px 0;
  }

  .invite-flow {
    grid-template-columns: 1fr;
  }
}

.mobile-download-bar {
  display: none;
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 64px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    background: #f7f9f4;
    font-size: 15px;
    line-height: 1.5;
  }

  .container,
  .nav {
    width: calc(100vw - 24px);
  }

  .site-header {
    background: #f8faf4;
    backdrop-filter: none;
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    left: 12px;
    right: 12px;
    top: 64px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-grid,
  .hero-copy,
  .section-heading,
  .section-heading.narrow,
  .download-panel {
    max-width: 100%;
  }

  .brand img {
    width: 138px;
  }

  .hero-grid {
    gap: 26px;
    padding: 30px 0 38px;
  }

  .hero-bg {
    background: linear-gradient(145deg, #f8fbf3 0%, #e5eee4 62%, #d7e1de 100%);
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 3rem);
    line-height: 0.96;
  }

  h2 {
    font-size: 1.85rem;
    line-height: 1.08;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-actions {
    width: 100%;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .trust-list {
    gap: 8px;
    margin-top: 20px;
    max-width: 100%;
  }

  .trust-list li {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.82rem;
    box-shadow: none;
  }

  .fine-print {
    margin-top: 14px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .phone-stage {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-inline: auto;
    overflow: visible;
  }

  .phone-stage::before,
  .phone-speaker {
    display: none;
  }

  .phone {
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: 0 16px 42px rgba(18, 25, 23, 0.12);
  }

  .app-screen {
    height: auto;
    padding: 18px;
    border: 1px solid rgba(18, 25, 23, 0.1);
    border-radius: var(--radius);
    overflow: visible;
  }

  .app-top img {
    width: 112px;
  }

  .balance-panel {
    margin-top: 16px;
    padding: 15px 16px;
    box-shadow: none;
  }

  .balance-panel strong {
    font-size: 1.45rem;
  }

  .phone-reward-grid {
    gap: 8px;
    margin-top: 10px;
  }

  .phone-reward-grid div {
    min-height: 76px;
    padding: 10px;
    box-shadow: none;
  }

  .phone-reward-grid strong {
    margin-top: 5px;
    font-size: 0.88rem;
  }

  .cashout-strip {
    margin-top: 10px;
    padding: 13px 14px;
    box-shadow: none;
  }

  .cashout-strip strong {
    font-size: 1.06rem;
  }

  .steps-section,
  .rewards-section,
  .invite-section,
  .why-section,
  .download-section,
  .faq-section,
  .value-section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading p,
  .invite-grid p,
  .why-copy p,
  .download-panel p,
  .value-grid p {
    font-size: 0.98rem;
  }

  .steps {
    gap: 10px;
  }

  .steps::before {
    display: none;
  }

  .steps article {
    min-height: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    box-shadow: none;
  }

  .steps span {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .steps p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .reward-grid {
    gap: 10px;
  }

  .feature {
    min-height: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    box-shadow: none;
  }

  .feature::before {
    inset: 0 auto 0 0;
    width: 3px;
    height: auto;
  }

  .feature-icon {
    grid-row: 1 / span 2;
    width: 62px;
    height: 44px;
    margin: 0;
    border-radius: var(--radius);
    font-size: 0.78rem;
  }

  .feature h3 {
    font-size: 1rem;
  }

  .feature p {
    margin: 4px 0 0;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .value-grid,
  .invite-grid,
  .why-grid {
    gap: 28px;
  }

  .value-card {
    padding: 0;
    box-shadow: none;
  }

  .price-line {
    padding: 18px;
  }

  .price-line strong {
    font-size: 2rem;
  }

  .value-card ul {
    gap: 8px;
    margin-top: 12px;
  }

  .value-card li {
    min-height: 0;
    padding: 11px 0 11px 30px;
    font-size: 0.86rem;
  }

  .value-card li::before {
    top: 13px;
  }

  .value-card li::after {
    top: 18px;
  }

  .invite-flow {
    gap: 8px;
  }

  .invite-flow article {
    min-height: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    box-shadow: none;
  }

  .invite-flow span {
    justify-content: center;
    margin: 0;
  }

  .invite-flow strong {
    font-size: 0.92rem;
  }

  .why-copy li {
    min-height: 0;
    font-size: 0.9rem;
  }

  .download-panel {
    gap: 18px;
    padding: 20px;
    box-shadow: none;
  }

  .download-panel .button {
    width: 100%;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-list details {
    box-shadow: none;
  }

  .faq-list summary {
    padding: 16px;
    font-size: 0.94rem;
  }

  .faq-list p {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }

  .footer {
    padding: 40px 0 34px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer img {
    width: 174px;
  }

  .footer h2,
  .footer h3 {
    margin-top: 12px;
  }

  .footer p,
  .footer a {
    font-size: 0.88rem;
  }

  .mobile-download-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(18, 25, 23, 0.12);
    background: #fff;
    box-shadow: 0 -8px 24px rgba(18, 25, 23, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .mobile-download-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-download-bar div {
    min-width: 0;
  }

  .mobile-download-bar strong,
  .mobile-download-bar span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-download-bar strong {
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .mobile-download-bar span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.72rem;
  }

  .mobile-download-bar a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: var(--radius);
    background: var(--green);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
  }

}

@media (max-width: 360px) {
  .container,
  .nav {
    width: calc(100vw - 20px);
  }

  .brand img {
    width: 124px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .app-screen {
    padding: 14px;
  }

  .phone-reward-grid strong {
    font-size: 0.82rem;
  }

  .mobile-download-bar strong {
    max-width: 160px;
  }
}

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

  .button,
  .nav-links a::after,
  .mobile-download-bar {
    transition: none;
  }
}
