:root {
  --bg: #07090d;
  --surface: #11141a;
  --surface-2: #171b23;
  --text: #f7f8fb;
  --muted: #9ba3b3;
  --line: rgba(255,255,255,.1);
  --blue: #3982ff;
  --blue-2: #6aa2ff;
  --green: #4bd083;
  --orange: #ff9a55;
  --shadow: 0 32px 100px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 5%, rgba(44,111,255,.13), transparent 28rem),
    var(--bg);
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; content: "";
  background-image: linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.topbar { position: fixed; inset: 18px 0 auto; z-index: 30; padding-inline: 20px; }
.nav {
  min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 9px 10px 9px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(17,20,26,.72); box-shadow: 0 22px 70px rgba(0,0,0,.34); backdrop-filter: blur(24px) saturate(150%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 15px; font-weight: 600; }
.brand b { color: var(--muted); font-weight: 500; }
.brand-mark, .mini-mark {
  display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--blue-2), #195be4); font-weight: 800;
  box-shadow: inset 0 1px rgba(255,255,255,.35), 0 12px 30px rgba(57,130,255,.26);
}
.brand-mark { width: 42px; height: 42px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 2px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.035); }
.nav-links a { padding: 9px 13px; border-radius: 999px; color: var(--muted); font-size: 14px; transition: .2s ease; }
.nav-links a:hover { color: white; background: rgba(255,255,255,.07); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.06); cursor: pointer; }
.menu-button span { display: block; width: 16px; height: 1px; margin: 5px auto; background: white; transition: .2s ease; }

.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 21px;
  border: 1px solid transparent; border-radius: 999px; color: white; background: var(--blue); font-weight: 700;
  box-shadow: inset 0 1px rgba(255,255,255,.24), 0 16px 42px rgba(57,130,255,.24); transition: transform .18s ease, filter .18s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button-small { min-height: 44px; padding-inline: 16px; font-size: 14px; }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.055); box-shadow: none; }
.button-light { color: #07101f; background: white; box-shadow: none; }

.hero { min-height: 100vh; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(380px,.72fr); align-items: center; gap: 64px; padding: 138px 0 86px; }
.hero-copy { max-width: 750px; }
.eyebrow, .kicker { color: var(--blue-2); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: #bec8d8; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(75,208,131,.12); }
h1,h2,h3,p { margin: 0; }
h1 { max-width: 780px; font-size: clamp(54px,7vw,86px); line-height: .94; letter-spacing: -.062em; font-weight: 800; }
h1 span { color: var(--blue-2); }
h2 { font-size: clamp(36px,4.5vw,58px); line-height: 1; letter-spacing: -.045em; }
h3 { font-size: 21px; line-height: 1.15; letter-spacing: -.02em; }
p { color: var(--muted); line-height: 1.62; }
.hero-lead { max-width: 650px; margin-top: 26px; color: #b1b9c8; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 36px; }
.trust-row span { padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.45; }
.trust-row b { display: block; color: white; font-size: 18px; }

.commerce-card {
  padding: 14px; border: 1px solid var(--line); border-radius: 34px;
  background: linear-gradient(150deg, rgba(255,255,255,.09), rgba(255,255,255,.018)), rgba(17,20,26,.72);
  box-shadow: var(--shadow); backdrop-filter: blur(22px);
}
.card-top, .card-top > div { display: flex; align-items: center; }
.card-top { justify-content: space-between; gap: 14px; padding: 6px 6px 15px; }
.card-top > div { gap: 12px; }
.card-top b,.card-top small { display: block; }
.card-top b { font-size: 14px; }
.card-top small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.mini-mark { width: 44px; height: 44px; border-radius: 15px; }
.live { padding: 7px 10px; border-radius: 999px; color: var(--green); background: rgba(75,208,131,.1); font-size: 11px; font-weight: 800; }
.live i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: currentColor; }
.hub-map {
  position: relative; min-height: 355px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 27px;
  background: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px), #0a0d12;
  background-size: 34px 34px;
}
.hub-map::before { position: absolute; inset: 12% 12% 10%; content: ""; border: 1px solid rgba(57,130,255,.1); border-radius: 42% 58% 52% 48%; transform: rotate(-10deg); }
.hub-glow { position: absolute; left: 50%; top: 49%; width: 160px; height: 160px; border-radius: 50%; background: rgba(57,130,255,.18); filter: blur(44px); transform: translate(-50%,-50%); }
.hub-pin { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; justify-items: center; gap: 8px; transform: translate(-50%,-50%); }
.hub-pin span { width: 66px; height: 66px; display: grid; place-items: center; border: 8px solid rgba(57,130,255,.13); border-radius: 50%; color: white; background: var(--blue); background-clip: padding-box; font-size: 14px; font-weight: 800; box-shadow: 0 15px 45px rgba(57,130,255,.4); }
.hub-pin b { font-size: 11px; white-space: nowrap; }
.market { position: absolute; z-index: 2; min-width: 76px; min-height: 38px; display: flex; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 13px; color: #111; background: #f4f4f5; box-shadow: 0 12px 30px rgba(0,0,0,.3); font-size: 13px; font-weight: 800; }
.market-a { top: 13%; left: 9%; }
.market-b { right: 8%; top: 18%; }
.market-c { right: 12%; bottom: 12%; font-family: Georgia,serif; color: #f1641e; }
.market-b span:nth-child(1){color:#e53238}.market-b span:nth-child(2){color:#0064d2}.market-b span:nth-child(3){color:#f5af02}.market-b span:nth-child(4){color:#86b817}
.route { position: absolute; height: 1px; z-index: 1; background: linear-gradient(90deg, transparent, var(--blue-2), transparent); transform-origin: left center; animation: pulse-line 2.4s ease-in-out infinite; }
.route-a { width: 170px; left: 24%; top: 31%; transform: rotate(28deg); }
.route-b { width: 150px; left: 53%; top: 47%; transform: rotate(-34deg); animation-delay: .5s; }
.route-c { width: 150px; left: 54%; top: 55%; transform: rotate(34deg); animation-delay: 1s; }
@keyframes pulse-line { 0%,100%{opacity:.3} 50%{opacity:1} }
.hub-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 9px; }
.hub-stats div { padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 18px; background: rgba(255,255,255,.045); }
.hub-stats span,.hub-stats b { display: block; }
.hub-stats span { color: var(--muted); font-size: 11px; }
.hub-stats b { margin-top: 6px; font-size: 13px; }
.green { color: var(--green); }

.platforms { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 40px; min-height: 116px; padding: 24px 30px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.035); }
.platforms p { font-size: 13px; }
.platform-logos { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.platform-logos > span { white-space: nowrap; }
.amazon { font-size: 24px; font-weight: 800; letter-spacing: -.05em; }
.ebay { font-size: 26px; font-weight: 800; }.ebay i{font-style:normal}.ebay i:nth-child(1){color:#e53238}.ebay i:nth-child(2){color:#0064d2}.ebay i:nth-child(3){color:#f5af02}.ebay i:nth-child(4){color:#86b817}
.etsy { color: #f1641e; font-family: Georgia,serif; font-size: 28px; }
.more { color: var(--muted); font-size: 13px; }

.section { padding: 112px 0; scroll-margin-top: 100px; }
.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading h2 { margin-top: 17px; }
.section-heading > p { max-width: 660px; margin-top: 18px; font-size: 18px; }
.section-heading.compact { margin-inline: auto; text-align: center; }
.benefit-grid { display: grid; grid-template-columns: 1.12fr 1fr 1fr; gap: 14px; }
.benefit-card { min-height: 340px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 30px; background: rgba(17,20,26,.7); box-shadow: var(--shadow); }
.benefit-primary { background: radial-gradient(circle at 80% 12%, rgba(57,130,255,.18), transparent 45%), rgba(17,20,26,.72); }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: auto; border-radius: 15px; color: var(--blue-2); background: rgba(57,130,255,.12); font-size: 18px; font-weight: 800; }
.big-number { margin: 34px 0 4px; font-size: 64px; line-height: .9; letter-spacing: -.06em; font-weight: 800; }
.benefit-card h3 { margin-top: 30px; }
.benefit-primary h3 { margin-top: 0; }
.benefit-card p { margin-top: 13px; font-size: 15px; }
.text-link { margin-top: 20px; color: var(--blue-2); font-size: 11px; line-height: 1.45; }
.card-labels { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 22px; }
.card-labels span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.035); font-size: 11px; }
.fine-print { margin-top: 17px; font-size: 11px; }

.returns-panel { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; padding: 48px; border: 1px solid var(--line); border-radius: 38px; background: linear-gradient(140deg, rgba(57,130,255,.1), transparent 42%), rgba(17,20,26,.7); box-shadow: var(--shadow); }
.returns-copy h2 { margin-top: 16px; }
.returns-copy > p { margin-top: 20px; font-size: 17px; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 26px 0 0; list-style: none; color: #c5cbd6; font-size: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list i { width: 21px; height: 21px; flex: 0 0 21px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: rgba(75,208,131,.12); font-style: normal; font-size: 12px; }
.return-compare { display: grid; gap: 12px; }
.compare-card { padding: 22px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.045); }
.compare-head { display: flex; align-items: center; gap: 10px; }
.compare-head b { font-size: 14px; }
.flag,.globe { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; font-size: 11px; font-weight: 800; }
.flag { color: white; background: var(--blue); }
.globe { color: var(--orange); background: rgba(255,154,85,.12); font-size: 20px; }
.compare-time { margin: 24px 0 14px; font-size: 42px; line-height: 1; letter-spacing: -.04em; font-weight: 800; }
.compare-time small { color: var(--muted); font-size: 14px; font-weight: 500; letter-spacing: 0; }
.progress { height: 5px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.07); }
.progress i { display: block; height: 100%; border-radius: inherit; }
.good .progress i { width: 88%; background: var(--green); }
.risk .progress i { width: 28%; background: var(--orange); }
.compare-card p { margin-top: 13px; font-size: 13px; }

.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.split-heading > div { max-width: 820px; }
.split-heading h2 { margin-top: 16px; }
.split-heading > p { max-width: 310px; font-size: 16px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.process-card { min-height: 260px; padding: 23px; border: 1px solid var(--line); border-radius: 27px; background: rgba(17,20,26,.65); }
.process-card > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 62px; border: 1px solid rgba(57,130,255,.34); border-radius: 50%; color: var(--blue-2); background: rgba(57,130,255,.09); font-size: 11px; font-weight: 800; }
.process-card p { margin-top: 12px; font-size: 14px; }

.audience-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; }
.audience-section .section-heading { position: sticky; top: 120px; margin-bottom: 0; }
.audience-grid { display: grid; gap: 12px; }
.audience-card { min-height: 170px; display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(17,20,26,.65); }
.audience-card > span { color: var(--blue-2); font-size: 12px; font-weight: 800; }
.audience-card p { margin-top: 12px; font-size: 15px; }

.faq-list { max-width: 880px; display: grid; gap: 10px; margin-inline: auto; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: rgba(17,20,26,.7); }
.faq-item button { width: 100%; min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 22px; border: 0; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.faq-item button b { width: 28px; flex: 0 0 28px; color: var(--blue-2); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { min-height: 0; overflow: hidden; padding: 0 64px 0 22px; font-size: 15px; transition: padding .28s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 22px; }
.faq-item.open button b { transform: rotate(45deg); }

.contact-card { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; padding: 54px; border: 1px solid rgba(255,255,255,.16); border-radius: 40px; background: var(--blue); box-shadow: 0 32px 100px rgba(30,94,220,.3); text-align: center; }
.contact-card::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 50% 100%, rgba(0,0,0,.25), transparent 48%), linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: auto, 60px 60px,60px 60px; }
.contact-orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; }
.orbit-two { width: 820px; height: 820px; }
.contact-content { position: relative; z-index: 1; max-width: 760px; }
.contact-content .kicker { color: rgba(255,255,255,.72); }
.contact-content h2 { margin-top: 17px; font-size: clamp(42px,6vw,72px); }
.contact-content p { max-width: 610px; margin: 20px auto 0; color: rgba(255,255,255,.76); font-size: 17px; }
.contact-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.contact-mail { border-bottom: 1px solid rgba(255,255,255,.4); font-size: 14px; }

.footer { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 30px; padding: 10px 0 42px; color: var(--muted); font-size: 12px; }
.footer p { text-align: center; font-size: 12px; }
.footer > span { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease var(--delay,0ms), transform .65s ease var(--delay,0ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links { position: absolute; top: calc(100% + 10px); left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); border-radius: 24px; background: rgba(17,20,26,.94); backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .menu-button { display: block; }
  .nav > .button { margin-left: auto; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 44px; padding-top: 150px; }
  .hero-copy { max-width: 820px; }
  .commerce-card { max-width: 620px; width: 100%; margin-inline: auto; }
  .platforms { grid-template-columns: 1fr; gap: 20px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-primary { grid-column: 1/-1; }
  .returns-panel, .audience-section { grid-template-columns: 1fr; }
  .audience-section .section-heading { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .topbar { top: 10px; padding-inline: 0; }
  .nav { min-height: 58px; padding: 7px 8px; }
  .brand > span:last-child, .nav > .button { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { padding: 116px 0 64px; }
  h1 { font-size: clamp(46px,14vw,64px); }
  h2 { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .trust-row { grid-template-columns: 1fr; }
  .commerce-card { padding: 8px; border-radius: 27px; }
  .hub-map { min-height: 315px; }
  .market-a { left: 5%; }.market-b { right: 4%; }.market-c { right: 6%; }
  .platforms { padding: 24px; }
  .platform-logos { flex-wrap: wrap; justify-content: flex-start; }
  .section { padding: 78px 0; }
  .benefit-grid, .process-grid { grid-template-columns: 1fr; }
  .benefit-primary { grid-column: auto; }
  .benefit-card { min-height: 300px; }
  .returns-panel { gap: 36px; padding: 26px 18px; border-radius: 30px; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .process-card { min-height: 220px; }
  .process-card > span { margin-bottom: 46px; }
  .audience-card { grid-template-columns: 36px 1fr; padding: 23px 18px; }
  .contact-card { min-height: 470px; padding: 36px 18px; border-radius: 30px; }
  .contact-actions { flex-direction: column; }
  .footer { grid-template-columns: 1fr; justify-items: start; padding-top: 0; }
  .footer p,.footer > span { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
