:root {
  --green-900: #063d2d;
  --green-800: #07573f;
  --green-700: #087b57;
  --green-600: #05a86b;
  --green-500: #10c97c;
  --green-300: #77edaa;
  --mint-100: #eafff2;
  --mint-200: #d6f8e4;
  --gold: #f8b82e;
  --orange: #f68b1f;
  --blue: #4d8dff;
  --violet: #7657ff;
  --text: #0f1f1a;
  --muted: #65756f;
  --line: rgba(8, 123, 87, 0.14);
  --surface: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(9, 75, 53, 0.12);
  --card-shadow: 0 16px 45px rgba(9, 75, 53, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 8%, rgba(119, 237, 170, 0.24), transparent 34rem),
    linear-gradient(180deg, #f8fffb 0%, #ffffff 36%, #f6fffa 100%);
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(8, 123, 87, 0.08);
  background: rgba(248, 255, 251, 0.74);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(6, 36, 28, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #31423c;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--green-700);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  box-shadow: 0 13px 28px rgba(5, 168, 107, 0.25);
}

.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  background:
    radial-gradient(circle at 83% 58%, rgba(252, 206, 91, 0.16), transparent 16rem),
    radial-gradient(circle at 74% 19%, rgba(111, 229, 161, 0.4), transparent 28rem),
    linear-gradient(126deg, #ffffff 0%, #f5fffa 42%, #dffbed 100%);
}

.hero::before {
  position: absolute;
  inset: auto -12% -38% 38%;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 7px rgba(16, 201, 124, 0.12);
  content: "";
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 570px;
  margin-bottom: 26px;
  color: #40534c;
  font-size: 20px;
  line-height: 1.62;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.tag-row span {
  padding: 10px 14px;
  border: 1px solid rgba(5, 168, 107, 0.18);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(9, 75, 53, 0.08);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: #07130f;
  box-shadow: 0 16px 35px rgba(5, 20, 15, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-button:hover {
  background: #0f251d;
  box-shadow: 0 20px 42px rgba(5, 20, 15, 0.26);
  transform: translateY(-2px);
}

.store-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.store-button span {
  display: grid;
  gap: 1px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
}

.store-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.social-proof p {
  margin: 0;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #20382f, #10c97c);
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #ffcd67, #08a76a);
}

.avatar-stack span:last-child {
  background: linear-gradient(135deg, #4d8dff, #05b36a);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
}

.hero-visual img {
  width: auto;
  max-width: min(100%, 620px);
  max-height: 680px;
  margin-right: -34px;
  filter: drop-shadow(0 34px 68px rgba(8, 71, 51, 0.18));
  transform: translateY(8px);
}

.hero-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.coin {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff2a6, #f8b82e 42%, #d98411 100%);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.25), 0 14px 28px rgba(216, 132, 17, 0.18);
}

.coin-one {
  top: 122px;
  right: 8%;
  transform: rotate(18deg);
}

.coin-two {
  right: 39%;
  bottom: 126px;
  width: 34px;
  height: 34px;
}

.gift-cube {
  right: 17%;
  bottom: 84px;
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ebfff1, #5be48f 50%, #069463);
  box-shadow: 0 28px 42px rgba(9, 75, 53, 0.18);
  transform: rotate(-10deg);
}

.gift-cube::before,
.gift-cube::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.58);
}

.gift-cube::before {
  top: 0;
  bottom: 0;
  left: 42%;
  width: 16%;
}

.gift-cube::after {
  top: 42%;
  right: 0;
  left: 0;
  height: 16%;
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.quick-grid h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.quick-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.mini-icon,
.card-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(234, 255, 242, 0.9), rgba(16, 201, 124, 0.18));
}

.mini-icon {
  width: 54px;
  height: 54px;
}

.mini-icon::before,
.card-icon::before {
  display: block;
  border-radius: inherit;
  background: currentColor;
  content: "";
  color: var(--green-600);
}

.users::before {
  width: 27px;
  height: 21px;
  clip-path: polygon(7% 100%, 7% 68%, 22% 48%, 16% 25%, 28% 8%, 41% 25%, 36% 48%, 50% 68%, 50% 100%, 57% 100%, 57% 64%, 72% 46%, 67% 23%, 80% 5%, 94% 23%, 88% 46%, 100% 64%, 100% 100%);
}

.heart::before {
  width: 25px;
  height: 22px;
  clip-path: path("M12.5 21 C4 14 0 10 0 5 C0 2 2 0 5 0 C8 0 10 2 12.5 5 C15 2 17 0 20 0 C23 0 25 2 25 5 C25 10 21 14 12.5 21 Z");
}

.crown::before {
  width: 30px;
  height: 24px;
  clip-path: polygon(6% 88%, 94% 88%, 86% 34%, 66% 55%, 50% 12%, 34% 55%, 14% 34%);
}

.gift::before {
  width: 26px;
  height: 26px;
  clip-path: polygon(0 28%, 39% 28%, 39% 0, 61% 0, 61% 28%, 100% 28%, 100% 48%, 0 48%, 0 28%, 8% 55%, 39% 55%, 39% 100%, 8% 100%, 8% 55%, 61% 55%, 92% 55%, 92% 100%, 61% 100%, 61% 55%);
}

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

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.download-card h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.download-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.info-card,
.reward-card,
.steps article,
.trust-stats article,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover,
.reward-card:hover,
.steps article:hover,
.faq-item:hover {
  border-color: rgba(5, 168, 107, 0.28);
  box-shadow: 0 22px 56px rgba(9, 75, 53, 0.13);
  transform: translateY(-4px);
}

.info-card {
  min-height: 230px;
  padding: 28px;
}

.card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

.card-icon::before {
  width: 30px;
  height: 30px;
}

.rate::before {
  clip-path: polygon(0 80%, 23% 54%, 42% 66%, 76% 20%, 65% 19%, 65% 0, 100% 0, 100% 35%, 81% 35%, 80% 25%, 47% 78%, 27% 66%, 10% 91%);
}

.payout::before {
  clip-path: polygon(0 20%, 100% 20%, 100% 78%, 0 78%, 0 20%, 12% 33%, 35% 33%, 35% 45%, 13% 45%, 13% 62%, 55% 62%, 55% 45%, 100% 45%, 100% 0, 0 0);
}

.shield::before {
  clip-path: polygon(50% 0, 95% 18%, 88% 72%, 50% 100%, 12% 72%, 5% 18%);
}

.service::before {
  clip-path: polygon(18% 0, 82% 0, 100% 22%, 100% 72%, 82% 100%, 18% 100%, 0 72%, 0 22%);
}

.process::before {
  clip-path: polygon(0 15%, 70% 15%, 70% 0, 100% 30%, 70% 60%, 70% 45%, 0 45%, 0 15%, 0 62%, 30% 62%, 30% 100%, 0 100%);
}

.cards::before {
  clip-path: polygon(0 18%, 72% 18%, 72% 78%, 0 78%, 0 18%, 20% 0, 92% 0, 92% 60%, 78% 60%, 78% 12%, 20% 12%);
}

.info-card h3,
.reward-card h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.info-card p,
.reward-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rewards-section {
  background:
    radial-gradient(circle at 14% 24%, rgba(248, 184, 46, 0.11), transparent 19rem),
    linear-gradient(180deg, #ffffff, #f7fffb);
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  text-align: left;
}

.split-heading > p {
  max-width: 410px;
  margin-bottom: 8px;
}

.reward-card {
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(16, 201, 124, 0.12), rgba(255, 255, 255, 0));
}

.reward-card a {
  display: inline-flex;
  margin-top: 24px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  font-size: 13px;
  font-weight: 800;
}

.reward-card.amber a,
.reward-card.gold a {
  background: linear-gradient(135deg, #ffc247, var(--orange));
}

.reward-card.blue .card-icon {
  background: rgba(77, 141, 255, 0.12);
}

.reward-card.blue .card-icon::before {
  color: var(--blue);
}

.reward-card.amber .card-icon,
.reward-card.gold .card-icon {
  background: rgba(248, 184, 46, 0.14);
}

.reward-card.amber .card-icon::before,
.reward-card.gold .card-icon::before {
  color: var(--orange);
}

.reward-card.violet .card-icon {
  background: rgba(118, 87, 255, 0.12);
}

.reward-card.violet .card-icon::before {
  color: var(--violet);
}

.invite::before {
  clip-path: polygon(3% 93%, 3% 65%, 20% 50%, 15% 28%, 28% 9%, 42% 28%, 37% 50%, 54% 65%, 54% 93%, 3% 93%, 60% 93%, 60% 64%, 75% 49%, 70% 29%, 83% 12%, 97% 29%, 92% 49%, 100% 64%, 100% 93%);
}

.level::before {
  clip-path: polygon(5% 85%, 95% 85%, 87% 31%, 69% 52%, 50% 7%, 31% 52%, 13% 31%);
}

.coupon::before {
  clip-path: polygon(0 18%, 100% 18%, 100% 39%, 86% 50%, 100% 61%, 100% 82%, 0 82%, 0 61%, 14% 50%, 0 39%);
}

.draw::before {
  clip-path: polygon(45% 0, 55% 0, 55% 34%, 86% 16%, 92% 26%, 62% 43%, 92% 60%, 86% 70%, 55% 52%, 55% 100%, 45% 100%, 45% 52%, 14% 70%, 8% 60%, 38% 43%, 8% 26%, 14% 16%, 45% 34%);
}

.check::before {
  clip-path: polygon(40% 73%, 87% 15%, 100% 26%, 43% 96%, 0 55%, 12% 42%);
}

.activity::before {
  clip-path: polygon(0 28%, 39% 28%, 39% 0, 61% 0, 61% 28%, 100% 28%, 100% 48%, 0 48%, 0 28%, 8% 55%, 39% 55%, 39% 100%, 8% 100%, 8% 55%, 61% 55%, 92% 55%, 92% 100%, 61% 100%, 61% 55%);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 28px;
}

.steps span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(5, 168, 107, 0.24);
}

.steps article::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(16, 201, 124, 0.08);
  content: "";
}

.trust-section {
  background: linear-gradient(180deg, #f7fffb 0%, #ffffff 100%);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trust-stats article {
  padding: 34px;
  text-align: center;
}

.trust-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.trust-stats span {
  color: var(--muted);
  font-weight: 700;
}

.trust-art {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
}

.trust-art::before {
  position: absolute;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 248, 228, 0.8), rgba(214, 248, 228, 0));
  content: "";
}

.trust-art img {
  position: relative;
  width: min(100%, 470px);
  filter: drop-shadow(0 22px 38px rgba(9, 75, 53, 0.14));
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 42px;
}

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

.faq-item {
  position: relative;
  width: 100%;
  padding: 22px 58px 22px 22px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item:focus-visible {
  outline: 3px solid rgba(16, 201, 124, 0.28);
  outline-offset: 3px;
}

.faq-item::after {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--green-700);
  content: "+";
  font-size: 24px;
  font-weight: 700;
}

.faq-item[aria-expanded="true"]::after {
  content: "-";
}

.faq-item span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.65;
  transition: max-height 0.24s ease, margin-top 0.24s ease;
}

.faq-item[aria-expanded="true"] p {
  max-height: 120px;
  margin-top: 12px;
}

.download-section {
  padding-top: 42px;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 26px;
  overflow: hidden;
  align-items: center;
  padding: 46px 56px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 13%, rgba(248, 184, 46, 0.16), transparent 17rem),
    linear-gradient(118deg, #eafff2 0%, #fafffc 46%, #d7fae6 100%);
  box-shadow: var(--shadow);
}

.download-card > div {
  position: relative;
  z-index: 1;
}

.download-card img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(9, 75, 53, 0.15));
}

.site-footer {
  padding: 58px 0 42px;
  color: #50625b;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.site-footer p {
  margin: 20px 0 0;
  color: var(--muted);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 11px;
  color: #50625b;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-note {
  grid-column: 1 / -1;
  max-width: 980px;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    min-height: 0;
    justify-content: center;
  }

  .hero-visual img {
    width: auto;
    max-width: min(100%, 620px);
    max-height: 640px;
    margin-right: 0;
  }

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

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

  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .download-card img {
    max-width: 420px;
    justify-self: end;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 54px;
  }

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

  .split-heading {
    display: block;
  }

  .split-heading > p {
    max-width: none;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  .brand {
    font-size: 18px;
  }

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

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .tag-row {
    gap: 9px;
  }

  .tag-row span {
    padding: 9px 12px;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .hero-visual img {
    width: auto;
    max-height: 520px;
    max-width: none;
  }

  .quick-grid,
  .card-grid,
  .steps,
  .trust-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    padding: 18px;
  }

  .info-card {
    min-height: 0;
  }

  .download-card {
    padding: 34px 22px;
  }

  .download-card img {
    justify-self: center;
  }
}
