:root {
  --green: #39cd18;
  --green-hot: #54f60e;
  --green-deep: #047a2a;
  --green-ink: #142f23;
  --green-soft: #dcefd8;
  --green-pale: #f3f8f1;
  --cream: #fafbf7;
  --white: #ffffff;
  --text: #21352c;
  --muted: #66756d;
  --line: rgba(20, 47, 35, 0.12);
  --shadow: 0 18px 44px rgba(20, 47, 35, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-shell {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1080px, calc(100% - 40px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px 10px 22px;
  color: var(--green-ink);
  background: var(--white);
  border: 1px solid rgba(20, 47, 35, 0.08);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20, 47, 35, 0.1);
  transform: translateX(-50%);
}

.brand,
.desktop-nav,
.nav-cta,
.hero-actions,
.hero-metrics,
.path-grid,
.feature-grid,
.security-grid,
.accepted-grid,
.proof-board {
  display: flex;
}

.brand {
  position: relative;
  width: 154px;
  align-items: center;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 47, 35, 0.08);
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.desktop-nav {
  align-items: center;
  gap: 28px;
  color: rgba(33, 53, 44, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--green-deep);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-cta {
  padding: 0 22px;
  color: var(--white);
  background: var(--green-ink);
}

.section-dark {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 10%, rgba(84, 246, 14, 0.16), transparent 34%),
    linear-gradient(135deg, #173526 0%, #092116 100%);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 86%);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 132px 24px 78px;
  color: var(--green-ink);
  background:
    radial-gradient(circle at 12% 28%, rgba(57, 205, 24, 0.08), transparent 25%),
    radial-gradient(circle at 74% 40%, rgba(20, 47, 35, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfcf8 0%, #eef6eb 100%);
}

.hero::before {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1080px, 100%);
  min-height: 610px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 28px;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.35vw, 4.55rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.028em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  font-size: 0.96rem;
}

.hero-copy p {
  max-width: 500px;
  margin-bottom: 18px;
  color: rgba(33, 53, 44, 0.72);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.primary-btn {
  gap: 10px;
  padding: 0 24px;
  color: var(--white);
  background: #5f756b;
  box-shadow: 0 14px 24px rgba(20, 47, 35, 0.18);
}

.primary-btn::after {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #5f756b;
  background: var(--white);
  border-radius: 50%;
  content: ">";
  font-size: 0.75rem;
}

.secondary-btn {
  padding: 0 20px;
  color: #5f756b;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(95, 117, 107, 0.2);
}

.hero-metrics {
  width: min(600px, 100%);
  margin-top: 34px;
  align-items: center;
  color: var(--white);
  background: var(--green-ink);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(20, 47, 35, 0.18);
}

.hero-metrics div {
  display: flex;
  flex: 1;
  min-height: 88px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  text-align: center;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics strong,
.proof-board strong,
.earning-number strong {
  display: block;
  color: var(--green-hot);
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
}

.hero-metrics span,
.proof-board span,
.scanner-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.25;
  max-width: 112px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-stage::before {
  position: absolute;
  inset: 8% -8% 12% 2%;
  background:
    radial-gradient(ellipse at 54% 60%, rgba(255, 255, 255, 0.86), transparent 34%),
    radial-gradient(ellipse at 54% 72%, rgba(57, 205, 24, 0.22), transparent 48%),
    radial-gradient(ellipse at 54% 82%, rgba(20, 47, 35, 0.18), transparent 54%);
  filter: blur(28px);
  content: "";
}

.hero-stage::after {
  position: absolute;
  right: 4%;
  bottom: 18%;
  z-index: 1;
  width: 78%;
  height: 18%;
  background: rgba(20, 47, 35, 0.2);
  border-radius: 50%;
  filter: blur(30px);
  content: "";
  transform: rotate(-6deg);
}

.hero-bike {
  position: absolute;
  right: -52px;
  bottom: 70px;
  z-index: 2;
  width: min(690px, 120%);
  max-width: none;
  filter: drop-shadow(0 22px 30px rgba(20, 47, 35, 0.2));
  animation: floatBike 7s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 12px solid rgba(95, 117, 107, 0.26);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  right: 5%;
  top: 18%;
  width: 390px;
  height: 220px;
}

.orbit-two {
  display: none;
}

.scanner-card,
.floating-panel {
  position: absolute;
  z-index: 3;
  padding: 8px 14px;
  color: var(--green-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 47, 35, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 47, 35, 0.12);
  backdrop-filter: blur(12px);
}

.scanner-card strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green-ink);
  font-size: 0.78rem;
}

.scanner-card strong i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green-hot);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(84, 246, 14, 0.18), 0 0 12px rgba(57, 205, 24, 0.8);
}

.scanner-card span {
  color: rgba(33, 53, 44, 0.62);
}

.scanner-top {
  top: 250px;
  right: 10px;
}

.scanner-bottom {
  bottom: 72px;
  left: 72px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.entry-paths,
.operation,
.earnings,
.accepted,
.faq {
  padding: 88px 24px;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.section-heading p,
.operation-copy p,
.earnings-card p,
.accepted-note,
.faq p {
  color: var(--muted);
}

.entry-paths {
  position: relative;
  background: var(--white);
  margin-top: 0;
}

.path-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.path-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 275px;
  padding: 30px;
  background: var(--green-pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 47, 35, 0.06);
}

.path-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(57, 205, 24, 0.16), transparent 66%);
  content: "";
}

.path-illustration {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 150px;
  height: 96px;
  opacity: 0.95;
}

.bike-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 72% 28%, rgba(84, 246, 14, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 47, 35, 0.08);
  border-radius: 28px;
}

.bike-illustration .wheel,
.bike-line {
  display: none;
}

.bike-illustration::before {
  width: 76px;
  height: 38px;
  background:
    linear-gradient(135deg, transparent 0 42%, var(--green) 43% 53%, transparent 54%),
    linear-gradient(25deg, transparent 0 42%, #5f756b 43% 53%, transparent 54%),
    radial-gradient(circle at 20% 78%, rgba(20, 47, 35, 0.18) 0 9px, transparent 10px),
    radial-gradient(circle at 80% 78%, rgba(20, 47, 35, 0.18) 0 9px, transparent 10px);
  content: "";
}

.capital-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px 18px;
  background:
    radial-gradient(circle at 72% 22%, rgba(84, 246, 14, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 47, 35, 0.08);
  border-radius: 26px;
}

.capital-illustration span {
  display: block;
  width: 22px;
  background: linear-gradient(180deg, var(--green-hot), #5f756b);
  border-radius: 999px 999px 6px 6px;
}

.capital-illustration span:nth-child(1) {
  height: 38px;
}

.capital-illustration span:nth-child(2) {
  height: 62px;
}

.capital-illustration span:nth-child(3) {
  height: 82px;
}

.path-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
  place-items: center;
  color: var(--white);
  background: #5f756b;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
}

.path-card p,
.security-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.flow,
.security,
.credibility,
.final-cta {
  padding: 92px 24px;
}

.flow > *,
.security > *,
.credibility > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.flow .section-heading,
.security .section-heading,
.final-cta .section-heading {
  color: var(--white);
}

.flow-line {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow-line::before {
  display: none;
}

.flow-step {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.flow-step::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(84, 246, 14, 0.14), transparent 66%);
  content: "";
}

.flow-art {
  position: absolute;
  top: 22px;
  right: 20px;
  display: flex;
  width: 104px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(84, 246, 14, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.flow-art b {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--green-hot);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(84, 246, 14, 0.6);
}

.flow-art b:nth-child(2) {
  width: 34px;
  height: 3px;
  opacity: 0.78;
}

.flow-art b:nth-child(3) {
  width: 7px;
  height: 7px;
  opacity: 0.6;
}

.flow-step span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--green-hot);
  font-size: 0.8rem;
  font-weight: 700;
}

.flow-step p,
.security-card p,
.flow .section-heading p,
.security .section-heading p,
.final-content p {
  color: rgba(255, 255, 255, 0.72);
}

.operation {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 54px;
}

.operation-visual {
  position: relative;
  min-height: 390px;
}

.operation-visual::before {
  position: absolute;
  inset: 12% 0 4%;
  background:
    radial-gradient(ellipse at 50% 54%, rgba(255, 255, 255, 0.82), transparent 32%),
    radial-gradient(ellipse at 50% 70%, rgba(57, 205, 24, 0.18), transparent 50%),
    var(--green-pale);
  border-radius: 36px;
  content: "";
}

.operation-visual::after {
  position: absolute;
  right: 10%;
  bottom: 10%;
  left: 10%;
  height: 18%;
  background: rgba(20, 47, 35, 0.16);
  border-radius: 50%;
  filter: blur(24px);
  content: "";
}

.operation-visual img {
  position: absolute;
  top: 56px;
  left: 50%;
  z-index: 2;
  width: min(520px, 110%);
  max-width: none;
  filter: drop-shadow(0 22px 28px rgba(20, 47, 35, 0.18));
  transform: translateX(-52%) rotate(-1.5deg);
}

.floating-panel {
  right: 22px;
  bottom: 44px;
}

.floating-panel strong,
.floating-panel span {
  display: block;
}

.floating-panel span {
  color: rgba(33, 53, 44, 0.6);
  font-size: 0.72rem;
}

.feature-grid {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-grid span,
.accepted-grid span {
  padding: 10px 14px;
  color: var(--green-ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(20, 47, 35, 0.05);
}

.security-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.security-card {
  flex: 1 1 240px;
  min-height: 185px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.security-card h3 {
  color: var(--white);
}

.earnings {
  background: linear-gradient(180deg, var(--white), var(--green-pale));
}

.earnings-card {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.earning-number {
  min-width: 250px;
  padding: 30px;
  color: var(--white);
  background: var(--green-ink);
  border-radius: var(--radius);
  text-align: center;
}

.earning-number span,
.earning-number small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.earning-number strong {
  margin: 8px 0;
  font-size: clamp(2.5rem, 4.4vw, 4.1rem);
}

.accepted {
  background: var(--green-pale);
}

.accepted-grid {
  width: min(820px, 100%);
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.accepted-note {
  width: min(620px, 100%);
  margin: 22px auto 0;
  text-align: center;
}

.credibility-grid {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 34px;
}

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

.credibility .section-heading .eyebrow {
  margin-left: 0;
}

.proof-board {
  flex-wrap: wrap;
  gap: 12px;
}

.proof-board div {
  flex: 1 1 230px;
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.proof-board strong {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.faq {
  background: var(--white);
}

.faq-list {
  width: min(780px, 100%);
  margin: 0 auto;
}

details {
  background: var(--green-pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

details + details {
  margin-top: 10px;
}

summary {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--green-deep);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

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

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  min-height: 440px;
  display: grid;
  place-items: center;
  text-align: center;
}

.final-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.final-content .eyebrow {
  margin-right: auto;
  margin-left: auto;
  color: var(--green-hot);
}

.footer {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #092116;
  font-size: 0.85rem;
}

.footer a {
  color: var(--green-hot);
  font-weight: 700;
}

.footer-logo {
  width: 136px;
  height: auto;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 999px;
}

.mobile-whatsapp {
  display: none;
}

.hero-ready {
  opacity: 1;
  transform: none;
}

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

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

@keyframes floatBike {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.5deg);
  }
  50% {
    transform: translate3d(-5px, -12px, 0) rotate(-1deg);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid,
  .operation,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 430px;
    order: -1;
  }

  .hero-bike {
    right: 50%;
    bottom: 42px;
    width: min(640px, 122vw);
    transform: translateX(50%) rotate(-1.5deg);
  }

  .orbit-one {
    right: 50%;
    top: 20%;
    transform: translateX(50%) rotate(-18deg);
  }

  .path-grid {
    flex-direction: column;
  }

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

  h1 {
    max-width: 560px;
    font-size: clamp(2.35rem, 6.8vw, 4.1rem);
  }

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

@media (max-width: 680px) {
  .topbar {
    top: 10px;
    left: 10px;
    right: auto;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    min-height: 58px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    transform: none;
  }

  .topbar::after {
    display: none;
    content: none;
  }

  .brand {
    width: 112px;
    margin: 0;
    padding: 5px 10px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .entry-paths,
  .operation,
  .earnings,
  .accepted,
  .faq,
  .flow,
  .security,
  .credibility,
  .final-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 22px;
  }

  .hero-copy {
    display: contents;
  }

  h1 {
    order: 1;
    max-width: 354px;
    font-size: clamp(1.78rem, 7.8vw, 2.18rem);
    line-height: 1.08;
  }

  h1 span {
    white-space: normal;
  }

  h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    line-height: 1.08;
  }

  .hero-copy p {
    order: 2;
    font-size: 0.9rem;
  }

  .hero-stage {
    width: 100%;
    min-height: 315px;
    order: 3;
  }

  .hero-stage::before {
    inset: 4% -16% 8%;
  }

  .hero-bike {
    right: auto;
    bottom: 38px;
    left: 50%;
    width: 112vw;
    animation: none;
    transform: translateX(-50%) rotate(-1.5deg);
  }

  .orbit-one {
    top: 16%;
    width: 310px;
    height: 175px;
    border-width: 8px;
  }

  .scanner-top {
    top: auto;
    right: auto;
    left: 18px;
    bottom: 92px;
    display: block;
    padding: 7px 11px;
  }

  .scanner-bottom {
    bottom: 10px;
    left: 0;
  }

  .hero-actions {
    order: 4;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .hero-copy p {
    max-width: min(100%, 354px);
    overflow-wrap: break-word;
  }

  .hero-metrics {
    order: 5;
    flex-direction: column;
    border-radius: 24px;
  }

  .hero-metrics div {
    padding: 16px 20px;
  }

  .hero-metrics div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

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

  .flow-step {
    min-height: 190px;
  }

  .flow-art {
    width: 90px;
    height: 38px;
  }

  .operation-visual {
    min-height: 315px;
  }

  .operation-visual img {
    width: 108vw;
  }

  .floating-panel {
    right: 0;
    bottom: 22px;
  }

  .path-card,
  .earnings-card {
    padding: 24px;
  }

  .path-card {
    min-height: 260px;
  }

  .path-illustration {
    top: 22px;
    right: 18px;
    width: 118px;
    height: 82px;
  }

  .path-icon {
    margin-bottom: 66px;
  }

  .earning-number {
    min-width: 0;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-whatsapp {
    display: none;
  }
}
