:root {
  --font-geist-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --black: #070707;
  --ink: #111111;
  --paper: #f5f4f0;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.14);
  --muted: #696864;
  --shopee: #ee4d2d;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid #e4b85c;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 40px));
  height: 74px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-crop {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-size: 22px;
  font-weight: 710;
  letter-spacing: 0.28em;
  line-height: 1;
}

.header-buy {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.hero {
  display: grid;
  min-height: 690px;
  padding: 126px 20px 72px;
  place-items: center;
  background:
    radial-gradient(circle at 79% 20%, rgba(255, 255, 255, 0.09), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  color: var(--white);
}

.hero-inner {
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.eyebrow.dark {
  margin-bottom: 17px;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(58px, 9.1vw, 126px);
  font-weight: 670;
  letter-spacing: -0.078em;
  line-height: 0.84;
}

h1 span { display: block; color: #767676; }

.hero-copy {
  max-width: 540px;
  margin: 31px auto 28px;
  color: #bdbdbd;
  font-size: clamp(16px, 2vw, 19px);
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(460px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 16px 17px 16px 23px;
  border-radius: 18px;
  background: var(--white);
  color: var(--black);
  text-align: left;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-cta span:first-child {
  display: grid;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.primary-cta small {
  color: var(--shopee);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.arrow {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
  place-items: center;
}

.marketplace-note { margin: 15px 0 0; color: #777; font-size: 12px; }

.buy-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 5vw, 67px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.store-card.featured { background: var(--white); }

.market-mark {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: var(--white);
  font-size: 21px;
  font-weight: 720;
  place-items: center;
}

.market-mark.shopee { background: var(--shopee); }

.market-mark.tiktok {
  background: #050505;
  box-shadow: -2px 0 #25f4ee, 2px 0 #fe2c55;
  font-size: 25px;
}

.store-copy { display: grid; min-width: 0; gap: 4px; }

.store-copy small {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.store-copy strong {
  font-size: 16px;
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.store-copy > span { color: var(--muted); font-size: 13px; }

.store-card .arrow {
  width: 39px;
  height: 39px;
  border-color: var(--line);
  font-size: 17px;
}

.purchase-help {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 720px;
  margin: 50px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.help-number {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.purchase-help p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.purchase-help strong { color: var(--ink); }

footer {
  display: grid;
  justify-items: center;
  padding: 86px 20px 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.footer-brand {
  margin-bottom: 21px;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
}

footer p {
  margin: 0 0 33px;
  color: #777;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

footer a { display: inline-flex; gap: 12px; align-items: center; min-height: 44px; font-size: 13px; }
footer .arrow { width: 31px; height: 31px; border-color: #444; font-size: 14px; }

@media (hover: hover) {
  .primary-cta:hover, .store-card:hover { transform: translateY(-3px); }
  .primary-cta:hover { background: #f0f0f0; }
  .store-card:hover { border-color: rgba(17, 17, 17, 0.34); background: var(--white); }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 32px); height: 65px; }
  .brand-crop { font-size: 19px; }
  .header-buy { min-height: 44px; padding-inline: 14px; font-size: 12px; }
  .hero { min-height: 625px; padding: 108px 16px 54px; }
  h1 { font-size: clamp(46px, 13.8vw, 64px); line-height: 0.88; }
  h1 span { margin: 0 auto; }
  .hero-copy { max-width: 340px; margin-top: 27px; font-size: 15px; }
  .primary-cta { min-height: 78px; padding-left: 19px; border-radius: 17px; }
  .buy-section { width: calc(100% - 28px); padding: 77px 0 82px; }
  .section-heading { grid-template-columns: 1fr; gap: 23px; margin-bottom: 33px; }
  h2 { font-size: 43px; }
  .section-heading > p { max-width: 35ch; font-size: 14px; }
  .store-grid { grid-template-columns: 1fr; gap: 10px; }
  .store-card { gap: 14px; min-height: 105px; padding: 17px; border-radius: 18px; }
  .market-mark { width: 45px; height: 45px; }
  .store-copy strong { font-size: 14px; }
  .store-copy > span { font-size: 12px; }
  .purchase-help { gap: 16px; margin-top: 36px; padding: 23px 5px 0; }
  footer { padding-block: 72px 66px; }
  .footer-brand { font-size: 48px; }
}

@media (max-width: 390px) {
  .store-card { grid-template-columns: auto minmax(0, 1fr) 34px; padding-inline: 14px; }
  .store-card .arrow { width: 34px; height: 34px; }
  .store-copy strong { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media (prefers-contrast: more) {
  .store-card, .store-card .arrow { border-color: currentColor; }
}
