:root {
  --bg: #050607;
  --panel: #0d100f;
  --panel-2: #121715;
  --text: #f7f8f2;
  --muted: #aeb6aa;
  --soft: #dfe6d8;
  --green: #a6ff00;
  --green-dark: #071000;
  --amber: #f2b35d;
  --blue: #74b8ff;
  --purple: #bf8cff;
  --line: rgba(255, 255, 255, 0.13);
  --green-line: rgba(166, 255, 0, 0.32);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}

.brand img,
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-name {
  font-size: 22px;
  letter-spacing: 0;
}

.brand-name span,
.green {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 8px;
  opacity: 0.88;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.07);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(780px, 86svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(5, 6, 7, 0.98) 0%, rgba(6, 9, 6, 0.96) 58%, rgba(15, 22, 10, 0.92) 100%),
    #050607;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: min(780px, 86svh);
  margin: 0 auto;
  padding: 88px 22px 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  max-width: 680px;
}

.hero-logo {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  margin-bottom: 26px;
}

.eyebrow,
.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
}

.feature-pill {
  width: fit-content;
  margin: 0 0 24px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  padding: 8px 12px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(166, 255, 0, 0.08);
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.feature-pill span:first-child {
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--green);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-pill:hover {
  border-color: var(--green);
  color: #fff;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(70px, 12vw, 148px);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 650;
}

.lead {
  max-width: 650px;
  color: #edf2e5;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 950;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--green);
  color: var(--green-dark);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.button.store-button {
  background: var(--green);
  color: var(--green-dark);
  border-color: var(--green);
}

.button.text {
  min-height: auto;
  padding: 0;
  color: var(--green);
}

.hero-download {
  border: 1px solid var(--green-line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(13, 16, 15, 0.92);
}

.hero-download h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

.store-actions {
  display: grid;
  gap: 12px;
  margin: 20px 0 18px;
}

.section {
  border-bottom: 1px solid var(--line);
  background: #070908;
}

.section.alt {
  background: #0a0d0b;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px;
}

.intro-section {
  background: #090b0a;
}

.intro-grid,
.download-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 42px;
  align-items: center;
}

.intro-copy {
  color: var(--soft);
  font-size: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.auction-section {
  scroll-margin-top: 72px;
  background: radial-gradient(circle at 12% 50%, rgba(166, 255, 0, 0.12), transparent 34%), #080b09;
}

.auction-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 60px;
  align-items: center;
}

.auction-copy { max-width: 510px; }
.auction-lead { color: var(--soft); font-size: 19px; }
.auction-steps { display: grid; gap: 12px; }
.auction-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  background: rgba(13, 16, 15, 0.9);
}
.auction-steps article > span {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(166, 255, 0, 0.13);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}
.auction-steps strong { display: block; margin-bottom: 4px; color: #fff; font-size: 20px; }
.auction-steps p { margin: 0; font-size: 14px; }
.lane-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.lane-card {
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lane-card span {
  width: fit-content;
  border-radius: 8px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 12px;
  font-weight: 950;
}

.lane-card strong {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1.1;
}

.lane-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.accent-green {
  border-top: 4px solid var(--green);
}

.accent-amber {
  border-top: 4px solid var(--amber);
}

.accent-blue {
  border-top: 4px solid var(--blue);
}

.accent-white {
  border-top: 4px solid var(--soft);
}

.accent-purple {
  border-top: 4px solid var(--purple);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
}

.process-step span {
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(166, 255, 0, 0.13);
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.process-step strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 21px;
}

.process-step p {
  margin-bottom: 0;
}

.download-section {
  background:
    linear-gradient(90deg, rgba(166, 255, 0, 0.08), transparent 54%),
    #070908;
}

.download-panel {
  border: 1px solid var(--green-line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel-2);
}

.download-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.download-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.download-row:last-child {
  padding-bottom: 0;
}

.download-row strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.download-row p {
  margin-bottom: 0;
}

.final-section {
  background: #0a0d0b;
}

.safety-list {
  display: grid;
  gap: 12px;
}

.safety-list p {
  margin: 0;
  border-left: 3px solid var(--green);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.97), rgba(5, 6, 7, 0.74)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 92px),
    #050607;
}

.page-hero .section-inner {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 8vw, 96px);
}

.content {
  max-width: 880px;
}

.content h2 {
  margin-top: 42px;
  font-size: 28px;
  line-height: 1.1;
}

.content h2:first-child {
  margin-top: 0;
}

.content ul {
  margin: 0 0 28px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 650;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
}

.contact-item h2 {
  margin-top: 0;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screenshot-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
}

.screenshot-card img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-card h2 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.footer {
  background: #050607;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .intro-grid,
  .download-grid,
  .final-grid,
  .auction-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .section-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-logo {
    width: 62px;
    height: 62px;
  }

  h1 {
    font-size: clamp(58px, 21vw, 90px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .actions .button,
  .download-row .button {
    width: 100%;
  }

  .lane-grid {
    grid-template-columns: 1fr;
  }

  .screenshots {
    grid-template-columns: 1fr;
  }

  .lane-card {
    min-height: 190px;
  }

  .download-row {
    grid-template-columns: 1fr;
  }
}

/* Modern Trade4 homepage */
.home-page {
  --home-max: 1240px;
  background: #050706;
  overflow-x: hidden;
}

.home-page .home-shell {
  width: min(var(--home-max), calc(100% - 44px));
  margin: 0 auto;
}

.home-header {
  border-bottom-color: rgba(166, 255, 0, 0.12);
  background: rgba(5, 7, 6, 0.78);
  backdrop-filter: blur(24px) saturate(150%);
}

.home-header .nav {
  max-width: var(--home-max);
  min-height: 78px;
}

.auction-announcement {
  min-height: 38px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid rgba(166,255,0,0.16);
  background: #0b0f0c;
  color: #d4dbcf;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.2px;
}

.auction-announcement strong {
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,0.14);
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.auction-announcement:hover span:last-child { transform: translateX(3px); }
.auction-announcement span:last-child { transition: transform 160ms ease; }

.home-header .brand img {
  box-shadow: 0 0 28px rgba(166, 255, 0, 0.16);
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: #bdc5b8;
  font-size: 13px;
  font-weight: 800;
}

.home-nav-links a,
.nav-download {
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.home-nav-links a:hover { color: #fff; }

.nav-download {
  margin-left: 12px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.nav-download:hover {
  background: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.home-hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(5, 7, 6, 0.98) 28%, rgba(5, 7, 6, 0.82)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 110px),
    #050706;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, #050706);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166,255,0,0.16), rgba(166,255,0,0.035) 45%, transparent 70%);
  filter: blur(8px);
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 830px;
  padding: 78px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.home-hero-copy { max-width: 730px; }

.home-hero .eyebrow { margin-bottom: 18px; }

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -3.5px;
}

.home-hero h1 span {
  color: var(--green);
  text-shadow: 0 0 46px rgba(166,255,0,0.12);
}

.home-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d7ded2;
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 600;
  line-height: 1.62;
}

.home-download {
  position: relative;
  max-width: 710px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  background: rgba(13,18,14,0.9);
  box-shadow: 0 22px 55px rgba(0,0,0,0.3), inset 0 1px rgba(255,255,255,0.045);
}

.download-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.download-app-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
}

.download-copy strong { display: block; margin-bottom: 3px; color: #fff; font-size: 19px; line-height: 1.15; }
.download-copy p { margin: 0; color: #9fa89b; font-size: 11px; line-height: 1.4; }

.download-actions { display: flex; gap: 9px; }
.download-actions .button { min-height: 50px; min-width: 118px; border-radius: 13px; padding: 12px 15px; }
.store-button-dark { border-color: var(--line) !important; background: #1a1f1c !important; color: #fff !important; }

.hero-product {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  position: relative;
  z-index: 3;
  width: min(330px, 78vw);
  height: 660px;
  border: 9px solid #181d1a;
  border-radius: 52px;
  padding: 4px;
  overflow: hidden;
  background: #080a09;
  box-shadow: 0 40px 100px rgba(0,0,0,0.58), 0 0 0 1px rgba(255,255,255,0.08), 0 0 90px rgba(166,255,0,0.06);
  transform: rotate(2deg);
}

.phone-frame img { width: 100%; height: 100%; border-radius: 39px; object-fit: cover; object-position: top; }
.phone-top { position: absolute; z-index: 2; top: 11px; left: 50%; width: 105px; height: 26px; border-radius: 999px; background: #090b0a; transform: translateX(-50%); }

.phone-orbit { position: absolute; border: 1px solid rgba(166,255,0,0.16); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; }
.orbit-two { width: 620px; height: 620px; border-color: rgba(255,255,255,0.06); }

.trust-strip { padding: 42px 0; border-bottom: 1px solid var(--line); background: #080b09; }
.market-list.feature-list { border-color: rgba(255,255,255,0.1); }
.market-list.feature-list .market-item.feature-item { min-height: 104px; padding-top: 22px; padding-bottom: 22px; }

.auction-feature,
.marketplace-section,
.safety-section { scroll-margin-top: 78px; }

.auction-feature {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #070a08, #0c110d 55%, #070908);
}

.auction-feature-grid {
  padding: 120px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 84px;
  align-items: center;
}

.auction-visual { position: relative; }

.auction-window {
  border: 1px solid rgba(166,255,0,0.26);
  border-radius: 24px;
  overflow: hidden;
  background: #0c100e;
  box-shadow: 0 30px 80px rgba(0,0,0,0.34), 0 0 90px rgba(166,255,0,0.045);
}

.auction-window-head,
.auction-window-foot {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.auction-window-head > div { display: flex; align-items: center; gap: 8px; color: var(--green); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.auction-main { padding: 46px 42px 38px; }
.auction-main > strong { display: block; margin-bottom: 38px; color: #fff; font-size: clamp(38px, 4.4vw, 62px); line-height: 0.98; letter-spacing: -2px; }
.auction-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.auction-metrics div { border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: rgba(255,255,255,0.025); }
.auction-metrics small, .auction-metrics b { display: block; }
.auction-metrics small { margin-bottom: 7px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.auction-metrics b { color: #fff; font-size: 14px; }
.auction-progress { height: 3px; background: rgba(255,255,255,0.06); }
.auction-progress span { display: block; width: 72%; height: 100%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.auction-window-foot { border: 0; }

.auction-copy h2,
.section-intro h2,
.safety-grid h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 70px);
  letter-spacing: -3px;
}

.section-lead { color: #c6cec1; font-size: 18px; line-height: 1.65; }
.auction-copy .section-lead { margin-bottom: 34px; }
.auction-list { margin: 0; padding: 0; list-style: none; display: grid; }
.auction-list li { padding: 19px 0; display: grid; grid-template-columns: 42px 1fr; gap: 14px; border-top: 1px solid var(--line); }
.auction-list li > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: rgba(166,255,0,0.11); color: var(--green); font-size: 11px; font-weight: 950; }
.auction-list strong { color: #fff; font-size: 17px; }
.auction-list p { margin: 3px 0 0; font-size: 13px; line-height: 1.5; }

.marketplace-section { border-bottom: 1px solid var(--line); background: #070908; }
.marketplace-section .home-shell { padding: 120px 0; }
.section-intro { margin-bottom: 54px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr); gap: 70px; align-items: end; }
.section-intro h2 { max-width: 700px; margin: 0; }
.section-intro .section-lead { margin: 0 0 5px; }

.market-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
}

.market-item {
  min-height: 132px;
  padding: 28px 4px;
  display: grid;
  grid-template-columns: 18px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.market-item:last-child { border-bottom: 0; }
.market-marker { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 16px currentColor; }
.marker-green { color: var(--green); background: var(--green); }
.marker-amber { color: var(--amber); background: var(--amber); }
.marker-blue { color: var(--blue); background: var(--blue); }
.marker-white { color: var(--soft); background: var(--soft); }
.marker-purple { color: var(--purple); background: var(--purple); }
.market-item strong { display: block; color: #fff; font-size: 22px; }
.market-item p { margin: 0; font-size: 14px; line-height: 1.55; }
.market-item em { margin-left: 8px; border-radius: 999px; padding: 4px 8px; vertical-align: 3px; background: rgba(191,140,255,0.16); color: var(--purple); font-size: 8px; font-style: normal; font-weight: 950; letter-spacing: 1px; text-transform: uppercase; }

.safety-section { background: linear-gradient(90deg, rgba(166,255,0,0.035), transparent 48%), #090c0a; }
.safety-grid { padding: 110px 0; display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 90px; align-items: center; }
.safety-grid h2 { margin-bottom: 18px; }
.safety-list-clean { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.safety-list-clean li { position: relative; padding: 22px 0 22px 34px; border-bottom: 1px solid var(--line); color: var(--soft); font-size: 16px; font-weight: 700; line-height: 1.55; }
.safety-list-clean li::before { content: ""; position: absolute; top: 30px; left: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(166,255,0,0.55); }

.home-footer { border-top: 1px solid var(--line); }
.home-footer .footer-inner { max-width: var(--home-max); min-height: 110px; }
.home-footer .footer-inner > p { margin: 0; color: #7f887c; font-size: 12px; }

@media (max-width: 1040px) {
  .home-hero-grid { grid-template-columns: 1fr 360px; gap: 30px; }
  .home-hero h1 { font-size: clamp(56px, 7.5vw, 78px); }
  .auction-feature-grid { gap: 50px; }
}

@media (max-width: 820px) {
  .home-nav-links { display: none; }
  .home-hero { min-height: auto; }
  .home-hero-grid { min-height: auto; padding: 68px 0 80px; grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 100%; }
  .home-hero h1 { max-width: 690px; font-size: clamp(56px, 12vw, 82px); }
  .hero-product { min-height: 610px; }
  .phone-frame { height: 600px; }
  .auction-feature-grid, .section-intro, .safety-grid { grid-template-columns: 1fr; }
  .auction-feature-grid, .safety-grid { gap: 56px; }
  .section-intro { gap: 24px; }
}

@media (max-width: 600px) {
  .home-page .home-shell { width: min(100% - 32px, var(--home-max)); }
  .home-header .nav { min-height: 68px; padding: 10px 16px; flex-direction: row; align-items: center; }
  .home-header .brand-name { font-size: 19px; }
  .home-header .brand img { width: 38px; height: 38px; }
  .auction-announcement { min-height: 34px; padding: 7px 14px; gap: 7px; font-size: 11px; }
  .auction-announcement strong { padding-right: 7px; font-size: 8px; }
  .nav-download { margin-left: auto; padding: 9px 13px; }
  .home-hero-grid { padding-top: 48px; }
  .home-hero h1 { font-size: clamp(48px, 15vw, 70px); line-height: 0.94; letter-spacing: -3px; }
  .home-lead { font-size: 17px; }
  .home-download { grid-template-columns: 1fr; padding: 16px; }
  .download-actions { width: 100%; }
  .download-actions .button { min-width: 0; flex: 1; }
  .hero-product { min-height: 545px; }
  .phone-frame { width: 260px; height: 525px; border-width: 7px; border-radius: 42px; }
  .phone-frame img { border-radius: 31px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 480px; height: 480px; }
  .trust-strip { padding: 28px 0; }
  .auction-feature-grid, .marketplace-section .home-shell, .safety-grid { padding: 82px 0; }
  .auction-main { padding: 32px 24px 28px; }
  .auction-main > strong { font-size: 39px; }
  .auction-metrics { grid-template-columns: 1fr; }
  .auction-window-foot { gap: 8px; flex-wrap: wrap; }
  .auction-copy h2, .section-intro h2, .safety-grid h2 { font-size: 44px; letter-spacing: -2px; }
  .market-list { grid-template-columns: 1fr; }
  .market-item { grid-template-columns: 18px 1fr; gap: 8px 14px; align-items: start; }
  .market-item .market-marker { grid-row: 1 / span 2; margin-top: 8px; }
  .market-item p { grid-column: 2; }
  .home-footer .footer-inner { flex-direction: column; align-items: flex-start; }
}
