:root {
  color-scheme: dark;
  --bg: #050706;
  --surface: rgba(15, 20, 18, 0.78);
  --line: rgba(218, 255, 112, 0.17);
  --text: #f4f5ef;
  --muted: #8b928b;
  --acid: #d9ff63;
  --mint: #6bf0b5;
  --radius: 26px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 16%, rgba(84, 170, 129, 0.13), transparent 28rem),
    radial-gradient(circle at 9% 80%, rgba(217, 255, 99, 0.06), transparent 25rem),
    var(--bg);
}

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

.ambient,
.grid {
  position: fixed;
  pointer-events: none;
}

.ambient {
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.ambient-one {
  top: -22rem;
  right: -8rem;
  background: var(--mint);
}

.ambient-two {
  bottom: -26rem;
  left: -12rem;
  background: var(--acid);
}

.grid {
  inset: 0;
  z-index: 0;
  opacity: 0.17;
  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: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: reveal 650ms ease-out both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(217, 255, 99, 0.35);
  border-radius: 15px;
  color: #080a08;
  background: var(--acid);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.08em;
  box-shadow: 0 0 38px rgba(217, 255, 99, 0.13);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.19em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aab0aa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 5vw;
  min-height: 650px;
  padding: 72px 0 80px;
}

.hero-copy {
  animation: reveal 800ms 80ms ease-out both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: #a8afa7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.eyebrow span {
  color: var(--acid);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.65rem, 7.7vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

h1 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: #a6ada7;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.launch-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--acid);
  font-size: 19px;
}

.launch-note div {
  display: grid;
  gap: 4px;
}

.launch-note small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.launch-note strong {
  font-size: 11px;
  letter-spacing: 0.14em;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 450px);
  aspect-ratio: 1;
  justify-self: end;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217, 255, 99, 0.08), transparent 55%),
    rgba(8, 12, 10, 0.65);
  box-shadow: inset 0 0 80px rgba(107, 240, 181, 0.025);
  animation: reveal 900ms 160ms ease-out both;
}

.hero-visual::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(217, 255, 99, 0.12);
  border-radius: 50%;
  content: "";
}

.monogram {
  position: relative;
  z-index: 2;
  color: var(--acid);
  font-size: clamp(5rem, 11vw, 8.8rem);
  font-weight: 950;
  letter-spacing: -0.13em;
  text-shadow: 0 0 50px rgba(217, 255, 99, 0.18);
}

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

.orbit::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(217, 255, 99, 0.7);
  content: "";
}

.orbit-one {
  inset: 8%;
  animation: spin 20s linear infinite;
}

.orbit-two {
  inset: 29%;
  animation: spin 14s linear reverse infinite;
}

.visual-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #9ca49d;
  background: rgba(5, 7, 6, 0.86);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.label-one { top: 12%; left: 5%; }
.label-two { right: 0; bottom: 26%; }
.label-three { bottom: 4%; left: 25%; }

.marketplaces {
  padding: 76px 0 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.055em;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading > p {
  max-width: 320px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.market-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(14px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.market-card::before {
  position: absolute;
  right: -45px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--card-glow, rgba(217, 255, 99, 0.12));
  filter: blur(38px);
  opacity: 0;
  content: "";
  transition: opacity 260ms ease;
}

.market-card:hover,
.market-card:focus-visible {
  z-index: 2;
  border-color: rgba(217, 255, 99, 0.34);
  background: rgba(18, 25, 21, 0.94);
  outline: none;
  transform: translateY(-7px);
}

.market-card:hover::before,
.market-card:focus-visible::before {
  opacity: 1;
}

.market-card:active {
  transform: translateY(-2px) scale(0.99);
}

.market-topline,
.market-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.market-topline {
  color: #717a72;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.market-logo {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 72px;
  align-items: center;
}

.logo-yaga {
  color: #ff7868;
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.logo-vinted {
  color: #28b7b3;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.logo-ebay {
  gap: 0;
  font-size: 2.55rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.09em;
}

.logo-ebay i {
  font-style: normal;
}

.logo-ebay i:nth-child(1) { color: #e53238; }
.logo-ebay i:nth-child(2) { color: #0064d2; }
.logo-ebay i:nth-child(3) { color: #f5af02; }
.logo-ebay i:nth-child(4) { color: #86b817; }

.logo-vestiaire {
  gap: 12px;
}

.logo-vestiaire > i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  color: #111311;
  background: #f1eee7;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 800;
}

.logo-vestiaire > span {
  color: #f1eee7;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 0.94;
}

.market-action {
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #aeb5af;
  font-size: 11px;
  font-weight: 700;
}

.market-action b {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: #090b09;
  background: var(--acid);
  font-size: 14px;
  transition: transform 250ms ease;
}

.market-card:hover .market-action b,
.market-card:focus-visible .market-action b {
  transform: rotate(45deg);
}

.market-yaga { --card-glow: rgba(255, 120, 104, 0.25); }
.market-vinted { --card-glow: rgba(40, 183, 179, 0.25); }
.market-ebay { --card-glow: rgba(0, 100, 210, 0.22); }
.market-vestiaire { --card-glow: rgba(241, 238, 231, 0.16); }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 31px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #636a64;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

footer span:nth-child(2) { text-align: center; }
footer span:last-child { text-align: right; }

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.14); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 320px;
    gap: 30px;
  }

  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer span,
  footer span:nth-child(2),
  footer span:last-child {
    text-align: left;
  }
}

@media (max-width: 740px) {
  .page-shell {
    width: min(100% - 30px, 620px);
  }

  .topbar {
    min-height: 88px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .brand-copy small,
  .status {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 65px 0 62px;
  }

  h1 {
    font-size: clamp(3.25rem, 14.8vw, 5.6rem);
    line-height: 0.9;
  }

  .intro {
    max-width: 500px;
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-visual {
    width: min(88vw, 380px);
    margin: 28px auto 0;
    justify-self: center;
  }

  .section-heading {
    display: grid;
    gap: 18px;
  }

  .section-heading > p {
    max-width: none;
  }

  .marketplaces {
    padding: 58px 0 66px;
  }

  .market-card {
    min-height: 205px;
    padding: 19px;
    border-radius: 22px;
  }
}

@media (max-width: 460px) {
  .page-shell {
    width: calc(100% - 24px);
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .hero {
    padding-top: 52px;
  }

  .eyebrow {
    font-size: 8px;
    line-height: 1.4;
  }

  .hero-visual {
    width: min(88vw, 340px);
  }

  .market-grid {
    gap: 9px;
  }

  .market-card {
    min-height: 176px;
    padding: 15px;
    border-radius: 19px;
  }

  .market-logo {
    min-height: 58px;
  }

  .logo-yaga,
  .logo-vinted {
    font-size: 1.72rem;
  }

  .logo-ebay {
    font-size: 2rem;
  }

  .logo-vestiaire {
    gap: 8px;
  }

  .logo-vestiaire > i {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .logo-vestiaire > span {
    font-size: 0.61rem;
  }

  .market-action {
    font-size: 9px;
  }

  .market-action b {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
