:root {
  --ink: #081b12;
  --green-deep: #073b25;
  --green-mid: #0d693f;
  --green: #21c96b;
  --lime: #b9ff34;
  --lime-soft: #e9ffb7;
  --cream: #f5f1e7;
  --paper: #fffdf8;
  --yellow: #ffd33d;
  --coral: #ff6b52;
  --line: #0a2618;
  --muted: #526158;
  --display: "Anton", Impact, sans-serif;
  --body: "Nunito Sans", "Trebuchet MS", sans-serif;
  --shadow-hard: 7px 7px 0 var(--ink);
  --radius-lg: 30px;
  --radius-md: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(8, 27, 18, 0.12);
  background: rgba(245, 241, 231, 0.92);
  box-shadow: 0 8px 30px rgba(8, 27, 18, 0.08);
  backdrop-filter: blur(16px);
}

.site-header:not(.is-scrolled) .brand-copy strong,
.site-header:not(.is-scrolled) .desktop-nav a {
  color: white;
}

.site-header:not(.is-scrolled) .brand-copy small {
  color: #bcd4c5;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: var(--green-deep);
  place-items: center;
  box-shadow: 0 5px 12px rgba(8, 27, 18, 0.18);
}

.brand-mark img {
  width: 105%;
  max-width: none;
  aspect-ratio: 1;
  object-fit: cover;
  transform: scale(1.02);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button svg,
.mobile-sticky-cta svg {
  width: 21px;
  fill: currentColor;
}

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

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--lime);
}

.button-dark:hover {
  box-shadow: 6px 6px 0 var(--lime);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow-hard);
}

.button-primary:hover {
  background: #c8ff58;
  box-shadow: 10px 10px 0 var(--ink);
}

.button-bot {
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 5px 5px 0 var(--green);
  backdrop-filter: blur(8px);
}

.button-bot:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 7px 7px 0 var(--green);
}

.button-hero {
  min-height: 66px;
  padding: 0 25px;
  font-size: 1rem;
  text-transform: uppercase;
}

.button-hero > span {
  font-size: 1.35rem;
}

.hero {
  position: relative;
  min-height: 860px;
  padding-top: 128px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 22%, rgba(185, 255, 52, 0.11), transparent 31%),
    radial-gradient(circle at 82% 75%, rgba(33, 201, 107, 0.16), transparent 28%),
    var(--green-deep);
}

.hero::before {
  position: absolute;
  top: 125px;
  left: -100px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(185, 255, 52, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 46px rgba(185, 255, 52, 0.035),
    0 0 0 92px rgba(185, 255, 52, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: 30px;
}

.hero-copy {
  max-width: 690px;
  padding-block: 50px 100px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
  background: rgba(255, 255, 255, 0.05);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(185, 255, 52, 0.13);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero h1,
.section-heading h2,
.showcase-top h2,
.trust-copy h2,
.final-cta h2,
.legal-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(4.5rem, 7.4vw, 7.1rem);
}

.hero h1 span {
  display: block;
  color: var(--lime);
  -webkit-text-stroke: 1px var(--lime);
  text-shadow: 6px 6px 0 #021a0f;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: #dbe8df;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-lead strong {
  color: white;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .button {
  padding-inline: 20px;
}

.button-search {
  display: grid;
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--body);
  font-size: 1.1rem !important;
  line-height: 1;
  place-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-weight: 900;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--lime);
}

.hero-paths {
  max-width: 635px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-paths > span {
  padding: 10px 13px;
  border-left: 3px solid var(--lime);
  color: #cce0d2;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-paths strong {
  display: block;
  margin-bottom: 3px;
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: #cce0d2;
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.7rem;
  place-items: center;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 710px;
}

.phone-stage {
  position: absolute;
  z-index: 2;
  right: -35px;
  bottom: -175px;
  width: min(540px, 50vw);
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.3));
  transform: rotate(2.5deg);
}

.phone-stage::before {
  position: absolute;
  z-index: -1;
  top: 25%;
  left: 12%;
  width: 72%;
  height: 50%;
  border-radius: 50%;
  content: "";
  background: rgba(185, 255, 52, 0.24);
  filter: blur(60px);
}

.phone-mockup {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.phone-product-photo {
  position: absolute;
  z-index: 2;
  top: 45.55%;
  left: 26%;
  width: 39.7%;
  height: 8.9%;
  display: block;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #eaf4f0;
}

.phone-product-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 76%;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: grid;
  padding: 12px 17px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  line-height: 1.05;
  transform: rotate(-4deg);
}

.floating-note span {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-note strong {
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 900;
}

.note-top {
  top: 140px;
  right: 7px;
}

.note-bottom {
  right: 35%;
  bottom: 65px;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(4deg);
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(185, 255, 52, 0.35);
  border-radius: 50%;
}

.orbit-one {
  top: 70px;
  right: -150px;
  width: 500px;
  height: 500px;
  animation: rotate 28s linear infinite;
}

.orbit-two {
  right: -35px;
  bottom: 20px;
  width: 270px;
  height: 270px;
  animation: rotate 18s linear infinite reverse;
}

.hero-marquee {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-block: 3px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-1deg) scale(1.02);
}

.hero-marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 13px 0;
  font-family: var(--display);
  font-size: 1.22rem;
  letter-spacing: 0.06em;
  animation: marquee 24s linear infinite;
}

.hero-marquee b {
  font-size: 1rem;
}

.section {
  padding: 120px 0;
}

.benefits {
  position: relative;
  background:
    linear-gradient(rgba(8, 27, 18, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 27, 18, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 45px 45px;
}

.section-heading {
  max-width: 770px;
}

.section-kicker {
  border-color: rgba(8, 27, 18, 0.2);
  color: var(--green-mid);
  background: var(--lime-soft);
}

.section-kicker-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.06);
}

.section-heading h2,
.showcase-top h2,
.trust-copy h2,
.final-cta h2,
.legal-card h2 {
  margin-top: 22px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.section-heading h2 em,
.showcase-top h2 em,
.trust-copy h2 em,
.final-cta h2 em,
.legal-card h2 em {
  position: relative;
  z-index: 1;
  color: var(--green-mid);
  font-style: normal;
}

.section-heading h2 em::after,
.legal-card h2 em::after {
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 5px;
  left: -3px;
  height: 15px;
  content: "";
  background: var(--lime);
  transform: rotate(-1deg);
}

.section-heading > p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.benefit-card {
  position: relative;
  min-height: 350px;
  grid-column: span 4;
  padding: 34px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(8, 27, 18, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  box-shadow: 9px 9px 0 rgba(8, 27, 18, 0.16);
  transform: translateY(-5px);
}

.benefit-card-featured {
  grid-column: span 8;
  background:
    radial-gradient(circle at 87% 23%, rgba(255, 255, 255, 0.42), transparent 25%),
    var(--lime);
}

.benefit-card-dark {
  grid-column: span 8;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(185, 255, 52, 0.12), transparent 25%),
    var(--green-deep);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(8, 27, 18, 0.32);
  font-family: var(--display);
  font-size: 2rem;
}

.benefit-card-dark .card-number {
  color: rgba(255, 255, 255, 0.28);
}

.card-icon {
  display: grid;
  width: 64px;
  height: 64px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  color: white;
  background: var(--green-mid);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  place-items: center;
  transform: rotate(-3deg);
}

.benefit-card-featured .card-icon {
  color: var(--ink);
  background: var(--yellow);
}

.benefit-card-dark .card-icon {
  color: var(--ink);
  background: var(--lime);
}

.benefit-card h3 {
  max-width: 540px;
  margin: 70px 0 0;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.benefit-card p {
  max-width: 590px;
  margin: 15px 0 0;
  color: var(--muted);
}

.benefit-card-dark p {
  color: #c9ddd1;
}

.quiet-badge {
  position: absolute;
  right: 30px;
  bottom: 28px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-showcase {
  padding: 115px 0 100px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(33, 201, 107, 0.2), transparent 30%),
    #071811;
}

.showcase-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.showcase-top h2 em,
.trust-copy h2 em,
.final-cta h2 em {
  color: var(--lime);
}

.final-cta h2 em {
  color: var(--green-mid);
}

.showcase-top > p {
  margin: 0 0 10px;
  color: #c3d4c9;
  font-size: 1.08rem;
}

.offer-rail {
  display: grid;
  grid-auto-columns: minmax(320px, 1fr);
  grid-auto-flow: column;
  gap: 20px;
  margin-top: 60px;
  overflow-x: auto;
  padding: 0 0 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.offer-rail::-webkit-scrollbar {
  display: none;
}

.sample-offer {
  position: relative;
  display: flex;
  min-height: 585px;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 25px;
  color: var(--ink);
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.95);
  scroll-snap-align: start;
}

.sample-yellow {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), transparent 38%),
    #ffe600;
}

.sample-green {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.19), transparent 38%),
    #ee4d2d;
}

.sample-coral {
  color: white;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 153, 0, 0.2), transparent 32%),
    #182331;
}

.marketplace-heading {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.marketplace-heading > span {
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.marketplace-logo {
  display: grid;
  width: 146px;
  height: 52px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  background: white;
  box-shadow: 3px 3px 0 var(--ink);
  place-items: center;
}

.marketplace-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marketplace-logo-ml img {
  transform: translateY(-4px);
}

.marketplace-logo-shopee {
  width: 76px;
  padding: 6px 12px;
}

.marketplace-logo-amazon {
  width: 126px;
}

.product-photo {
  position: relative;
  display: grid;
  height: 278px;
  margin-top: 16px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(237, 242, 238, 0.9));
  place-items: center;
}

.product-photo::after {
  position: absolute;
  right: -28px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(8, 27, 18, 0.1);
  border-radius: 50%;
  content: "";
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.sample-offer:hover .product-photo img {
  transform: scale(1.045);
}

.product-photo-iphone img {
  object-fit: cover;
  object-position: 50% 45%;
}

.product-photo-echo img {
  padding: 10px;
}

.product-category {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  padding: 6px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.59rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.product-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding: 21px 3px 0;
}

.product-details small {
  display: block;
  font-size: 0.65rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
  opacity: 0.63;
}

.product-details h3 {
  max-width: 230px;
  margin: 7px 0 0;
  font-size: 1.38rem;
  font-weight: 1000;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.possible-discount {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  min-width: 104px;
  padding: 8px 10px 7px;
  border-radius: 12px;
  color: var(--lime);
  background: var(--ink);
  box-shadow: 3px 3px 0 rgba(8, 27, 18, 0.2);
}

.possible-discount small {
  grid-column: 1 / -1;
  color: white;
  font-size: 0.51rem;
  letter-spacing: 0.15em;
  opacity: 0.72;
}

.possible-discount strong {
  font-family: "Anton", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.possible-discount span {
  align-self: end;
  margin: 0 0 3px 4px;
  font-size: 0.63rem;
  font-weight: 1000;
}

.sample-coral .possible-discount {
  color: var(--ink);
  background: var(--lime);
}

.sample-coral .possible-discount small {
  color: var(--ink);
}

.deal-note {
  margin: auto 3px 0;
  padding-top: 15px;
  border-top: 1px solid rgba(8, 27, 18, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
}

.sample-coral .deal-note {
  border-top-color: rgba(255, 255, 255, 0.23);
  color: #d7e2dc;
}

.rail-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.rail-controls button {
  width: 48px;
  height: 48px;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.rail-controls button:hover {
  color: var(--ink);
  background: var(--lime);
}

.rail-controls span {
  color: #9eb5a7;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.marketplace-trust {
  display: grid;
  margin-top: 42px;
  padding: 25px 28px;
  border: 1px dashed rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  place-items: center;
  text-align: center;
}

.marketplace-trust p {
  margin: 0;
  color: white;
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marketplace-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.marketplace-chip {
  display: grid;
  width: 90px;
  height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  background: white;
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.14);
  place-items: center;
}

.marketplace-chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marketplace-chip-shopee {
  width: 58px;
  padding: 7px 14px;
}

.marketplace-trust > small {
  max-width: 690px;
  margin-top: 17px;
  color: #afc0b5;
  font-size: 0.72rem;
  line-height: 1.5;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.process {
  background: var(--paper);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 65px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 114px;
  right: 15%;
  left: 15%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--green) 0 10px, transparent 10px 18px);
}

.process-list li {
  position: relative;
  z-index: 1;
  padding: 23px 27px 34px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.process-list li:nth-child(2) {
  transform: translateY(30px);
}

.process-number {
  position: absolute;
  top: -18px;
  left: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
  place-items: center;
}

.process-visual {
  position: relative;
  height: 170px;
  display: grid;
  overflow: hidden;
  border-radius: 14px;
  background: var(--green-deep);
  place-items: center;
}

.process-visual b {
  position: relative;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 #021a0f;
  font-size: 2.1rem;
  place-items: center;
}

.radar {
  position: absolute;
  border: 1px solid rgba(185, 255, 52, 0.35);
  border-radius: 50%;
}

.radar-one {
  width: 130px;
  height: 130px;
}

.radar-two {
  width: 220px;
  height: 220px;
}

.process-list small {
  display: block;
  margin-top: 24px;
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.process-list h3 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.process-list p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-section {
  padding: 115px 0;
  color: white;
  background:
    linear-gradient(135deg, rgba(185, 255, 52, 0.06) 25%, transparent 25%) 0 0 / 36px 36px,
    var(--green-mid);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 90px;
}

.trust-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #d4e7da;
  font-size: 1.08rem;
}

.trust-copy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trust-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.trust-copy li span {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  place-items: center;
}

.trust-panel {
  position: relative;
  padding: 48px 40px 40px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(1.5deg);
}

.trust-seal {
  position: absolute;
  top: -40px;
  right: 35px;
  display: grid;
  width: 82px;
  height: 82px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  place-items: center;
}

.trust-seal span {
  font-size: 2.2rem;
  font-weight: 900;
}

.trust-panel small {
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.trust-panel h3 {
  max-width: 370px;
  margin: 12px 0 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.trust-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.trust-panel a {
  display: inline-block;
  margin-top: 25px;
  color: var(--green-mid);
  font-weight: 900;
  text-underline-offset: 5px;
}

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 20% 50%, rgba(33, 201, 107, 0.16), transparent 25%),
    radial-gradient(circle at 80% 50%, rgba(255, 211, 61, 0.22), transparent 24%),
    var(--lime-soft);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 2px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.final-cta::before {
  top: -170px;
  left: -80px;
}

.final-cta::after {
  right: -90px;
  bottom: -180px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-logo {
  width: 118px;
  height: 118px;
  margin-bottom: 25px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 7px 7px 0 var(--ink);
}

.final-cta p {
  max-width: 560px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.final-cta .button {
  min-width: min(100%, 430px);
}

.final-bot-link {
  min-width: min(100%, 430px);
  display: grid;
  margin-top: 20px;
  padding: 13px 18px;
  border: 2px solid rgba(8, 27, 18, 0.2);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.68);
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.final-bot-link:hover {
  border-color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.final-bot-link span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.final-bot-link strong {
  margin-top: 3px;
  color: var(--green-mid);
  font-size: 0.98rem;
  font-weight: 900;
}

.final-cta-inner > small {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-section {
  padding: 100px 0;
  background: var(--cream);
}

.legal-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 58px;
  border: 2px solid rgba(8, 27, 18, 0.18);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.legal-card h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
}

.legal-copy {
  color: var(--muted);
}

.legal-copy p:first-child {
  margin-top: 0;
}

.legal-copy details {
  border-top: 1px solid rgba(8, 27, 18, 0.16);
}

.legal-copy details:last-child {
  border-bottom: 1px solid rgba(8, 27, 18, 0.16);
}

.legal-copy summary {
  padding: 15px 0;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.legal-copy details p {
  margin: 0 0 18px;
}

.site-footer {
  padding: 35px 0;
  color: white;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 35px;
}

.footer-brand .brand-copy small {
  color: #a9bcb1;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: #c7d7ce;
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.site-footer p {
  margin: 0;
  color: #a9bcb1;
  font-size: 0.78rem;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes pulse {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

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

  .hero {
    min-height: 1140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 1040px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 12vw, 7rem);
  }

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

  .phone-stage {
    right: 50%;
    bottom: -315px;
    width: 530px;
    transform: translateX(50%) rotate(2deg);
  }

  .note-top {
    top: 15px;
    right: 12%;
  }

  .note-bottom {
    right: auto;
    bottom: 60px;
    left: 10%;
  }

  .benefit-card,
  .benefit-card-featured,
  .benefit-card-dark {
    grid-column: span 6;
  }

  .showcase-top,
  .trust-grid,
  .legal-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-rail {
    grid-auto-columns: minmax(330px, 56vw);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list::before {
    display: none;
  }

  .process-list li:nth-child(2) {
    transform: none;
  }

  .trust-panel {
    max-width: 650px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(100% - 26px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 46px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    min-height: 1100px;
    padding-top: 88px;
  }

  .hero::before {
    width: 240px;
    height: 240px;
  }

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

  .hero-copy {
    padding-top: 34px;
  }

  .eyebrow {
    padding: 7px 10px;
    font-size: 0.58rem;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3.55rem, 18vw, 5.1rem);
    line-height: 0.94;
  }

  .hero h1 span {
    text-shadow: 4px 4px 0 #021a0f;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 27px;
  }

  .button-hero {
    width: 100%;
    min-height: 62px;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .text-link {
    justify-content: center;
  }

  .hero-paths {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-paths > span {
    padding-block: 8px;
  }

  .trust-list {
    display: grid;
    gap: 8px;
    margin-top: 27px;
  }

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

  .phone-stage {
    bottom: -255px;
    width: 420px;
  }

  .floating-note {
    padding: 10px 12px;
  }

  .floating-note strong {
    font-size: 0.87rem;
  }

  .note-top {
    top: 30px;
    right: 2%;
  }

  .note-bottom {
    bottom: 18px;
    left: 1%;
  }

  .hero-marquee div {
    padding: 10px 0;
    font-size: 1rem;
  }

  .section,
  .offer-showcase,
  .trust-section,
  .final-cta,
  .legal-section {
    padding-block: 82px;
  }

  .section-heading h2,
  .showcase-top h2,
  .trust-copy h2,
  .final-cta h2,
  .legal-card h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .section-heading > p,
  .showcase-top > p,
  .trust-copy > p {
    font-size: 1rem;
  }

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

  .benefit-card,
  .benefit-card-featured,
  .benefit-card-dark {
    min-height: 320px;
    grid-column: 1 / -1;
    padding: 27px;
  }

  .benefit-card h3 {
    margin-top: 55px;
  }

  .quiet-badge {
    position: static;
    display: inline-block;
    margin-top: 24px;
  }

  .showcase-top {
    gap: 24px;
  }

  .offer-rail {
    grid-auto-columns: 86vw;
    margin-top: 42px;
  }

  .sample-offer {
    min-height: 500px;
  }

  .process-list {
    margin-top: 48px;
  }

  .trust-grid {
    gap: 60px;
  }

  .trust-panel {
    padding: 44px 25px 30px;
    transform: none;
  }

  .trust-seal {
    right: 24px;
    width: 68px;
    height: 68px;
  }

  .cta-logo {
    width: 96px;
    height: 96px;
  }

  .legal-card {
    gap: 30px;
    padding: 30px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease;
  }

  .mobile-sticky-cta.is-hidden {
    pointer-events: none;
    transform: translateY(calc(100% + 30px));
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
