/* ============================================================
   AntCo — section-level layout
   ============================================================ */

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
}
/* bottom line: hidden at top of page, grows from center on scroll */
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: var(--border-w); background: var(--ink);
  transform: scaleX(0); transform-origin: center;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.nav.scrolled::after { transform: scaleX(1); }
.nav-inner {
  display: flex; align-items: center; gap: 18px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 24px; letter-spacing: -0.03em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--primary); border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 20px;
}
.brand .mark image-slot { width:100%; height:100%; border:0; box-shadow:none; border-radius:6px; background:transparent; }
.brand .logo { height: 32px; width: auto; display: block; }
.footer .brand .logo { height: 30px; }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a { position: relative; font-size: 15px; font-weight: 600; padding: 6px 0; }
/* hover underline animates from short to the word's width */
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* EN/ID toggle */
.lang {
  display: inline-flex; border: 3px solid var(--ink); border-radius: 999px; overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink); background: #fff;
}
.lang button {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  border: 0; background: #fff; color: var(--ink); padding: 7px 13px; cursor: pointer;
}
.lang button.on { background: var(--ink); color: #fff; }

.nav-burger { display: none; }
.nav-burger .burger-ico { position: relative; display: block; width: 22px; height: 16px; }
.nav-burger .burger-ico i { position: absolute; left: 0; width: 100%; height: 2.5px; border-radius: 2px; background: var(--primary-dark); transition: transform .25s ease, opacity .18s ease, top .25s ease, bottom .25s ease; }
.nav-burger .burger-ico i:nth-child(1) { top: 1px; }
.nav-burger .burger-ico i:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger .burger-ico i:nth-child(3) { bottom: 1px; }
.nav-burger.open .burger-ico i:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.open .burger-ico i:nth-child(2) { opacity: 0; }
.nav-burger.open .burger-ico i:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* dim overlay behind the mobile dropdown */
.nav-overlay { position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,.25); opacity: 0; pointer-events: none; }
.nav-overlay.show { opacity: 1; pointer-events: auto; }

/* number/rate highlight — heavier weight so figures pop when scanning */
.num-hl { font-weight: 700; }

/* CTAs that live inside the mobile/tablet hamburger menu — hidden on desktop */
.nav-cta-group { display: none; }
.nav-links a.nav-cta::after { display: none; }

/* desktop nav CTAs — ~25% more compact than default .btn */
.nav-actions .btn.hide-sm { font-size: 13px; padding: 10px 16px; box-shadow: 3px 3px 0 var(--ink); }
.nav-actions .btn.hide-sm:hover { box-shadow: 5px 5px 0 var(--ink); }
.nav-actions .btn.hide-sm:active { box-shadow: 1px 1px 0 var(--ink); }

/* ---------------- HERO ---------------- */
.hero { padding-top: clamp(48px, 7vw, 92px); padding-bottom: clamp(40px,5vw,70px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { margin: 18px 0 22px; line-height: 1.12; }
.hero .lead { max-width: 540px; }
.hero .cta-row { margin-top: 30px; }
.hero .trust { margin-top: 22px; display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--gray-600); }
.hero .trust .dot { width: 9px; height: 9px; border-radius: 999px; background: #22a06b; border: 2px solid var(--ink); }
.hero-visual { position: relative; }
.hero-visual image-slot { width: 100%; aspect-ratio: 4/5; }
.hero-visual .hero-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: #fff; border: var(--border-w) solid var(--ink); border-radius: 16px; box-shadow: 8px 8px 0 var(--ink); }
.hero-visual .float {
  position: absolute; background: #fff;
  border: 3px solid var(--ink); border-radius: 10px; box-shadow: 4px 4px 0 var(--ink);
  padding: 12px 14px; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
}
.hero-visual .float .coin { width: 30px; height: 30px; border-radius: 999px; background: var(--accent); border: 3px solid var(--ink); display:flex; align-items:center; justify-content:center; font-size:14px; }
.hero-visual .float--1 { top: -18px; right: -10px; overflow: visible; }
.hero-visual .float--2 { bottom: 26px; left: -26px; background: var(--primary-200); color: var(--primary-dark); }
.hero-visual .float--2 .status-ico { display: inline-flex; }
.hero-visual .float--2 .status-ico svg { width: 18px; height: 18px; display: block; }
.hero-visual .float--2.pop .status-ico,
.hero-visual .float--2.pop .status-txt { animation: statusPop .34s cubic-bezier(.34,1.56,.64,1); }
@keyframes statusPop {
  0%   { transform: scale(.55); opacity: 0; }
  60%  { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* hero earnings micro-interaction */
.float--1 .coin { will-change: transform; }
.float--1 .coin.pop { animation: coinPop .55s cubic-bezier(.34,1.56,.64,1); }
@keyframes coinPop {
  0%   { transform: scale(1) rotate(0); }
  30%  { transform: scale(1.5) rotate(-14deg); }
  60%  { transform: scale(.86) rotate(10deg); }
  100% { transform: scale(1) rotate(0); }
}
.float--1 .earn-amt { display: inline-block; }
.float--1 .earn-amt.bump { animation: amtBump .5s ease-in-out; }
@keyframes amtBump {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-3px) scale(1.1); color: #16a34a; }
  100% { transform: translateY(0) scale(1); }
}
.float--1 .earn-ghost {
  position: absolute; right: 14px; top: -2px;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: #16a34a;
  pointer-events: none; opacity: 0; white-space: nowrap;
}
.float--1 .earn-ghost.go { animation: ghostUp 1.05s ease-out forwards; }
@keyframes ghostUp {
  0%   { opacity: 0; transform: translateY(8px); }
  22%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-30px); }
}
@media (prefers-reduced-motion: reduce) {
  .float--1 .coin.pop, .float--1 .earn-amt.bump, .float--1 .earn-ghost.go { animation: none; }
}

/* underline highlight on a word */
.mark-hl { background: var(--accent); padding: 0 .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; border: 3px solid var(--ink); border-radius: 4px; }
.mark-hl--blue { background: var(--primary); color: #fff; }

/* value strip */
.valstrip { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: var(--border-w) solid var(--ink); border-bottom: var(--border-w) solid var(--ink); }
.valstrip .v { padding: 22px 22px; border-right: var(--border-w) solid var(--ink); display: flex; align-items: center; gap: 14px; }
.valstrip .v:last-child { border-right: 0; }
.valstrip .v .n { font-family: var(--font-mono); font-weight: 700; font-size: 14px; }
.valstrip .v .ic { width: 42px; height: 42px; flex: 0 0 42px; border: 3px solid var(--ink); border-radius: 8px; background: var(--primary-100); display:flex; align-items:center; justify-content:center; }

/* ---------------- HOW IT WORKS ---------------- */
.tasks { grid-template-columns: repeat(3, 1fr); }
.task-card { padding: 28px; background: #fff; position: relative; display: flex; flex-direction: column; gap: 14px; transition: transform .12s ease, box-shadow .12s ease; }
.task-card:hover { transform: translate(-3px,-3px); box-shadow: calc(var(--shadow-x) + 3px) calc(var(--shadow-y) + 3px) 0 var(--shadow-col); }
.task-card .badge { width: 56px; height: 56px; border: var(--border-w) solid var(--ink); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; box-shadow: 3px 3px 0 var(--ink); }
.task-card .pay { font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--primary-dark); margin-top: auto; padding-top: 12px; border-top: 2px dashed var(--gray-400); }
.task-card.b-survey .badge { background: var(--primary-100); }
.task-card.b-review .badge { background: var(--primary-200); }
.task-card.b-flu .badge { background: var(--accent); }

/* flow steps */
.flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.flow .step { display: flex; gap: 16px; align-items: flex-start; }
.flow .step .num { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 999px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 20px; box-shadow: 3px 3px 0 var(--primary); }
.flow .step h4 { font-size: 19px; margin-bottom: 4px; }
.flow .step p { font-size: 15px; color: var(--ink-soft); }

/* ---------------- EARNINGS CALCULATOR ---------------- */
.calc-wrap {
  border-top: var(--border-w) solid var(--ink); border-bottom: var(--border-w) solid var(--ink);
  /* soft animated gradient drawn from the blue family — subtle, non-distracting */
  background: linear-gradient(115deg, #EDF4FF 0%, #DCEAFE 22%, #EDF4FF 44%, #E4EEFE 66%, #F2F7FF 84%, #EDF4FF 100%);
  background-size: 280% 280%;
  animation: calcDrift 22s ease-in-out infinite;
}
@keyframes calcDrift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}
@media (prefers-reduced-motion: reduce) { .calc-wrap { animation: none; } }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.calc-panel { padding: 32px; background: #fff; }
.calc-panel .seg { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: 3px 3px 0 var(--ink); }
.calc-panel .seg button { font-family: var(--font-mono); font-weight: 700; font-size: 14px; border: 0; border-right: 3px solid var(--ink); background: #fff; padding: 14px 6px; cursor: pointer; transition: background .12s; }
.calc-panel .seg button:last-child { border-right: 0; }
.calc-panel .seg button.on { background: var(--primary); color: #fff; }
.calc-field { margin-top: 26px; }
.calc-field label { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: baseline; }
.calc-field label .val { font-size: 18px; color: var(--primary-dark); }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 14px; margin-top: 14px; background: var(--gray-100); border: 3px solid var(--ink); border-radius: 999px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 30px; height: 30px; border-radius: 999px; background: var(--primary); border: 3px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); cursor: pointer; margin-top: -1px; }
input[type=range]::-moz-range-thumb { width: 26px; height: 26px; border-radius: 999px; background: var(--primary); border: 3px solid var(--ink); cursor: pointer; }
.rate-note { font-family: var(--font-mono); font-size: 12px; color: var(--gray-600); margin-top: 8px; }

.calc-out { padding: 36px 32px; background: var(--accent); display: flex; flex-direction: column; justify-content: center; }
.calc-out .cap { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.calc-out .big { font-family: var(--font-head); font-weight: 700; font-size: clamp(44px, 7vw, 78px); line-height: .95; margin: 8px 0; letter-spacing: -0.03em; }
.calc-out .per { font-family: var(--font-mono); font-size: 15px; }
.calc-out .mini { margin-top: 24px; padding-top: 18px; border-top: 3px solid var(--ink); font-family: var(--font-mono); font-size: 13px; }
.calc-out .disc { margin-top: 12px; font-size: 12px; color: var(--ink-soft); }

/* ---------------- SPLIT (admin + brand) ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-text { order: 2; }
.split-text .feat { display: flex; gap: 14px; margin-top: 18px; align-items: flex-start; }
.split-text .feat .tick { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 7px; border: 3px solid var(--ink); background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; box-shadow: 2px 2px 0 var(--ink); }
.split-text .feat h3 { font-size: 18px; margin-bottom: 2px; letter-spacing: 0; line-height: 1.2; }
.split-text .feat p { font-size: 15px; color: var(--ink-soft); }
.split-visual image-slot { width: 100%; aspect-ratio: 4/3; }
.split-visual .admin-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; border: var(--border-w) solid var(--ink); border-radius: 16px; box-shadow: 8px 8px 0 var(--ink); }
.split-visual .brand-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: #fff; border: var(--border-w) solid var(--ink); border-radius: 16px; box-shadow: 8px 8px 0 var(--ink); }
.split-visual { position: relative; }

/* admin payout pill */
.payout-pill {
  position: absolute; right: 18px; top: 18px;
  background: var(--accent); border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink); padding: 12px 16px; font-family: var(--font-mono); font-weight: 700;
}
.payout-pill .small { font-size: 11px; color: var(--ink-soft); display: block; }
.payout-pill .amt { font-size: 22px; }

/* admin bagi-hasil calculator */
.admin-calc { margin-top: 30px; padding: 22px; background: var(--primary-100); }
.admin-calc-top { margin-bottom: 16px; }
.admin-calc-field label { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: .03em; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.admin-calc-field label > span:first-child { text-transform: uppercase; }
.admin-calc-field label .val { font-size: 18px; color: var(--primary-dark); }
.admin-calc-out { margin-top: 20px; display: grid; gap: 0; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: #fff; }
.admin-calc-out .aco-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; font-family: var(--font-mono); font-size: 14px; }
.admin-calc-out .aco-row b { font-weight: 700; }
.admin-calc-out .aco-row:first-child { border-bottom: 2px solid var(--ink); color: var(--ink-soft); }
.admin-calc-out .aco-share { background: var(--accent); }
.admin-calc-out .aco-share span { font-weight: 700; }
.admin-calc-out .aco-share b { font-size: 22px; }

/* brand: realtime chip */
.live-chip { position: absolute; left: 16px; bottom: 16px; background: #fff; }

.section-dark {
  color: #fff;
  /* faded charcoal (not pure black) so a black frame reads; more contrast in the drift */
  background: linear-gradient(125deg, #171c26 0%, #2a3347 22%, #1a2030 46%, #303c58 68%, #151a25 86%, #1c2230 100%);
  background-size: 300% 300%;
  animation: brandDrift 24s ease-in-out infinite;
}
@keyframes brandDrift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}
@media (prefers-reduced-motion: reduce) { .section-dark { animation: none; } }
.section-dark .eyebrow { color: var(--primary-300); }
.section-dark .lead { color: var(--gray-200); }

/* ---------------- FAQ ---------------- */
.faq-list { display: grid; gap: 16px; }
.faq-item { background: #fff; overflow: hidden; }
.faq-item .faq-q {
  width: 100%; text-align: left; background: none; border: 0; border-bottom: 2px dashed transparent; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2vw, 21px); letter-spacing: -0.01em;
}
.faq-item .faq-ico { flex: 0 0 32px; width: 32px; height: 32px; position: relative; border: 3px solid var(--ink); border-radius: 8px; background: var(--primary-100); transition: background .15s, transform .08s ease, box-shadow .08s ease; box-shadow: 0 0 0 var(--ink); }
.faq-item .faq-ico::before, .faq-item .faq-ico::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq-item .faq-ico::before { width: 14px; height: 3px; left: 6px; top: 11.5px; }
.faq-item .faq-ico::after  { width: 3px; height: 14px; left: 11.5px; top: 6px; transition: transform .2s ease, opacity .2s ease; }
.faq-item.open .faq-ico { background: var(--accent); }
.faq-item .faq-q:hover .faq-ico { transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--ink); background: var(--accent); }
.faq-item .faq-q:active .faq-ico { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }
.faq-item.open .faq-ico::after { transform: rotate(90deg); opacity: 0; }
/* grid-rows trick: content-driven, animates smooth both ways */
.faq-item .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease-in-out; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item .faq-a-in { overflow: hidden; }
.faq-item .faq-a p { font-size: 16px; color: var(--ink-soft); max-width: 70ch; padding: 18px 24px 24px; margin: 0; }
.faq-item.open .faq-q { border-bottom-color: var(--gray-400); }
@media (prefers-reduced-motion: reduce) { .faq-item .faq-a { transition: none; } }

/* ---------------- DOWNLOAD CTA ---------------- */
.cta-final { text-align: center; }
.cta-final .box { background: var(--primary); color: #fff; padding: clamp(48px,7vw,90px) 28px; border: var(--border-w) solid var(--ink); border-radius: 16px; box-shadow: 10px 10px 0 var(--ink); position: relative; overflow: hidden; }
.cta-final h2 { color: #fff; }
.cta-final .lead { color: var(--primary-100); margin: 18px auto 0; max-width: 600px; }
.store-row { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.store-badge { display: flex; align-items: center; gap: 12px; background: #fff; color: var(--ink); border: 3px solid var(--ink); border-radius: 10px; box-shadow: 4px 4px 0 var(--ink); padding: 12px 20px; cursor: pointer; transition: transform .08s, box-shadow .08s; }
.store-badge:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.store-badge .si { width: 30px; height: 30px; }
.store-badge .tx small { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.store-badge .tx b { font-family: var(--font-head); font-size: 18px; }

/* deco dots on cta */
.cta-final .box .deco { position: absolute; width: 220px; height: 220px; border-radius: 999px; border: 28px solid rgba(255,255,255,.12); }
.cta-final .box .deco.a { top: -90px; left: -60px; }
.cta-final .box .deco.b { bottom: -110px; right: -40px; }

/* ---------------- FOOTER ---------------- */
.footer { border-top: var(--border-w) solid var(--ink); padding-top: 56px; padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer .footer-title { font-family: var(--font-mono); font-size: 13px; font-weight: 700; line-height: 1.55; letter-spacing: .05em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 15px; color: var(--ink-soft); }
.footer ul a:hover { color: var(--primary); }
.footer .colophon { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 2px solid var(--gray-200); font-family: var(--font-mono); font-size: 13px; color: var(--gray-600); flex-wrap: wrap; gap: 12px; }
.footer .brand-foot p { font-size: 15px; color: var(--ink-soft); margin-top: 12px; max-width: 320px; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 460px; margin-left: auto; margin-right: auto; }
  .calc-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.rev .split-text { order: 0; }
  .tasks { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-actions .hide-sm { display: none; }
  .nav-burger { display: inline-flex; }
  /* full-width dropdown panel anchored under the sticky nav */
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0; width: 100%;
    margin: 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff;
    border-bottom: var(--border-w) solid var(--ink);
    padding: 12px 16px 18px;
    box-shadow: 0 16px 30px rgba(0,0,0,.16);
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 17px; font-weight: 600; padding: 13px 4px; border-bottom: 0; }
  .nav-links a::after { display: none; }
  /* tablet: CTAs sit side-by-side so they don't stretch full width */
  .nav-links .nav-cta-group { display: flex; gap: 12px; margin-top: 12px; }
  .nav-links .nav-cta { flex: 1 1 0; justify-content: center; padding: 14px 12px; white-space: nowrap; box-shadow: none; border-style: solid; border-color: var(--ink); border-width: 2px 6px 6px 2px; }
  .nav-links .nav-cta:active { transform: none; box-shadow: none; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .shell { padding-left: 16px; padding-right: 16px; }
  .valstrip { grid-template-columns: 1fr; }
  .valstrip .v { border-right: 0; border-bottom: var(--border-w) solid var(--ink); }
  .valstrip .v:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  /* mobile: stack the CTAs full width */
  .nav-links .nav-cta-group { flex-direction: column; }
  /* full-width primary CTAs that fill the container (16px gutters via .shell) */
  .hero .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .split-text .row { flex-direction: column; align-items: stretch; }
  .hero .cta-row .btn, .split-text .row .btn { width: 100%; justify-content: center; }
  /* keep the floating accent chips fully on-screen */
  .hero-visual .float--1 { right: 6px; top: -14px; }
  .hero-visual .float--2 { left: 6px; bottom: 18px; }
  /* earnings calc: tighten the gap between the white panel and yellow output */
  .calc-grid { gap: 0; }
  /* admin slider label: stack so '... / bulan' stays on top and the number sits below */
  .admin-calc-field label { flex-direction: column; align-items: flex-start; gap: 6px; }
  /* earnings calc slider label: same treatment for survey/review/AntFluencer */
  .calc-field label { flex-direction: column; align-items: flex-start; gap: 6px; }
  /* admin result rows: stack label over value so they never touch */
  .admin-calc-out .aco-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ============================== ACCOUNT TYPE MODAL ============================== */
body.modal-open { overflow: hidden; }

.account-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden; opacity: 0;
  transition: opacity .18s ease, visibility .18s ease;
}
.account-modal.open { visibility: visible; opacity: 1; }
.account-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(17,17,17,.5);
}
.account-modal-card {
  position: relative;
  background: var(--bg);
  width: 100%; max-width: 780px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px 36px 30px;
  transform: translateY(14px) scale(.98);
  transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.account-modal.open .account-modal-card { transform: translateY(0) scale(1); }
.account-modal-card h3 { font-size: clamp(24px, 3vw, 30px); margin: 0 0 8px; padding-right: 40px; }
.account-modal-card > .lead { margin: 0 0 26px; font-size: 16px; }

.account-modal-close {
  position: absolute; top: 26px; right: 28px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: var(--border-w) solid var(--ink); border-radius: 8px;
  font-size: 16px; line-height: 1; cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease;
}
.account-modal-close:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }

.account-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.account-option {
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.account-option::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--primary-100), var(--primary-200), var(--primary-100), #fff);
  background-size: 300% 300%;
  background-position: 0% 50%;
  opacity: 0;
  transition: opacity .25s ease;
}
.account-option:hover::before {
  opacity: 1;
  animation: account-option-shimmer 3.2s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .account-option:hover::before { animation: none; }
}
@keyframes account-option-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.account-option-icon {
  width: 60px; height: 60px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-100); margin-bottom: 14px;
}
.account-option-icon img { width: 44px; height: 44px; object-fit: contain; }
.account-option h4 { font-size: 20px; margin: 0 0 8px; }
.account-option > p { margin: 0 0 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; min-height: 68px; }
.account-option .rule { width: 100%; margin-bottom: 18px; background: var(--gray-200); }
.account-option-label {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--gray-600); margin-bottom: 10px;
}
.account-option-list {
  list-style: none; margin: 0 0 22px; padding: 0; width: 100%;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.account-option-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; text-align: left;
}
.tick-o {
  flex: none; width: 18px; height: 18px;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.account-option .btn { margin-top: auto; }
.btn--outline {
  background: #fff; color: var(--primary-dark);
  border-color: var(--primary);
  box-shadow: 4px 4px 0 var(--primary);
}
.btn--outline:hover { background: var(--primary-100); box-shadow: 6px 6px 0 var(--primary); }

.account-help { margin-top: 24px; border-top: var(--border-w) dashed var(--gray-200); padding-top: 18px; }
.account-help-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink);
}
.account-help-q { display: flex; align-items: center; gap: 10px; }
.account-help-q .tick-o { color: var(--ink); width: 20px; height: 20px; border-radius: 999px; border: 2px solid var(--ink); font-weight: 700; font-size: 12px; }
.account-help-chevron { transition: transform .18s ease; font-size: 18px; color: var(--gray-600); }
.account-help.open .account-help-chevron { transform: rotate(180deg); }
.account-help-panel {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .22s ease;
}
.account-help-panel > p { min-height: 0; overflow: hidden; margin: 14px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.account-help.open .account-help-panel { grid-template-rows: 1fr; }

@media (max-width: 980px) {
  .account-options { grid-template-columns: 1fr; }
  .account-modal {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
  }
  .account-modal-card {
    width: 100%;
    max-width: none;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    padding: 28px 18px 28px;
  }
  .account-modal-close {
    top: 26px;
    right: 16px;
  }
  .account-modal-card h3 {
    padding-right: 52px;
  }
}
