:root {
  --ac-navy-950: #061126;
  --ac-navy-900: #081832;
  --ac-navy-850: #0b1d3c;
  --ac-navy-800: #102650;
  --ac-blue: #337cff;
  --ac-blue-light: #70a5ff;
  --ac-cyan: #55c8ff;
  --ac-text: #17233b;
  --ac-muted: #66738b;
  --ac-line: #dfe6f0;
  --ac-soft: #f5f8fc;
  --ac-white: #ffffff;
  --ac-shadow: 0 24px 70px rgba(8, 24, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ac-page {
  margin: 0;
  color: var(--ac-text);
  background: var(--ac-white);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

.ac-page a {
  color: inherit;
  text-decoration: none;
}

.ac-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.ac-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.ac-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ac-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ac-logo__mark {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 3px;
  align-items: end;
  width: 25px;
  height: 25px;
}

.ac-logo__mark span {
  display: block;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--ac-cyan), var(--ac-blue));
}

.ac-logo__mark span:nth-child(1) {
  height: 11px;
}

.ac-logo__mark span:nth-child(2) {
  height: 18px;
}

.ac-logo__mark span:nth-child(3) {
  height: 25px;
}

.ac-logo__text {
  font-size: 24px;
}

.ac-logo__text > span {
  color: var(--ac-blue-light);
}

.ac-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.ac-nav a,
.ac-login {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.ac-nav a:hover,
.ac-login:hover {
  color: #fff;
}

.ac-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ac-button {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3178ff, #4d91ff);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(51, 124, 255, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ac-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(51, 124, 255, 0.32);
}

.ac-button--small {
  min-height: 42px;
  padding: 0 18px;
}

.ac-button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.ac-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 26%, rgba(43, 114, 255, 0.18), transparent 27%),
    linear-gradient(135deg, #061126 0%, #071631 50%, #0b1e42 100%);
  padding: 166px 0 116px;
}

.ac-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.ac-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.ac-hero__glow--one {
  width: 420px;
  height: 420px;
  right: -80px;
  top: 90px;
  background: rgba(48, 118, 255, 0.13);
}

.ac-hero__glow--two {
  width: 300px;
  height: 300px;
  left: 28%;
  bottom: -140px;
  background: rgba(41, 195, 255, 0.08);
}

.ac-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 70px;
  align-items: center;
}

.ac-kicker,
.ac-eyebrow {
  color: #5f98ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
}

.ac-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8fb9ff;
}

.ac-kicker span {
  width: 28px;
  height: 2px;
  background: var(--ac-blue);
}

.ac-hero h1 {
  max-width: 650px;
  margin: 20px 0 24px;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.ac-hero h1 span {
  display: block;
  color: #6da0ff;
}

.ac-hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
  line-height: 1.75;
}

.ac-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.ac-trust {
  display: flex;
  gap: 34px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ac-trust div {
  display: flex;
  flex-direction: column;
}

.ac-trust strong {
  font-size: 12px;
  color: #fff;
}

.ac-trust span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
}

.ac-hero__visual {
  position: relative;
}

.ac-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #f7f9fd;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.4);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.ac-browser__bar {
  height: 44px;
  background: #eef2f8;
  border-bottom: 1px solid #dce3ee;
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 0 14px;
}

.ac-browser__dots {
  display: flex;
  gap: 5px;
}

.ac-browser__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #afbac9;
}

.ac-browser__url {
  width: 56%;
  padding: 5px 12px;
  border-radius: 5px;
  background: #fff;
  color: #8490a2;
  font-size: 9px;
}

.ac-dashboard {
  min-height: 430px;
  display: grid;
  grid-template-columns: 58px 1fr;
  color: var(--ac-text);
}

.ac-dashboard__sidebar {
  padding: 18px 12px;
  background: #091936;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ac-mini-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #367cff;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ac-dashboard__sidebar > span {
  width: 25px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.17);
}

.ac-dashboard__sidebar > span.is-active {
  background: #4f91ff;
}

.ac-dashboard__main {
  padding: 22px;
}

.ac-dashboard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ac-dashboard__top div:first-child {
  display: flex;
  flex-direction: column;
}

.ac-dashboard small {
  color: #7d899d;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ac-dashboard strong {
  font-size: 12px;
}

.ac-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8eef7;
  color: #637087;
  font-size: 8px;
  font-weight: 900;
}

.ac-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.ac-dashboard__stats > div {
  background: #fff;
  border: 1px solid #e4e9f2;
  border-radius: 9px;
  padding: 13px;
}

.ac-dashboard__stats strong,
.ac-dashboard__stats span {
  display: block;
}

.ac-dashboard__stats strong {
  margin-top: 6px;
  font-size: 20px;
}

.ac-dashboard__stats span {
  margin-top: 2px;
  color: #7c899d;
  font-size: 7px;
}

.ac-dashboard__content {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 12px;
  margin-top: 12px;
}

.ac-dashboard__chart,
.ac-dashboard__auctions {
  background: #fff;
  border: 1px solid #e4e9f2;
  border-radius: 9px;
  padding: 14px;
}

.ac-dashboard__chart-head {
  display: flex;
  justify-content: space-between;
}

.ac-dashboard__chart-head div {
  display: flex;
  flex-direction: column;
}

.ac-dashboard__chart-head > span {
  font-size: 7px;
  color: #8c97a8;
}

.ac-chart {
  height: 144px;
  margin-top: 23px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.ac-chart i {
  flex: 1;
  min-height: 8%;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #4c8fff, #bed4ff);
}

.ac-dashboard__auctions > strong {
  display: block;
  margin-bottom: 12px;
}

.ac-mini-auction {
  padding: 10px 0;
  border-top: 1px solid #edf1f6;
}

.ac-mini-auction span,
.ac-mini-auction b {
  display: block;
}

.ac-mini-auction span {
  font-size: 8px;
  font-weight: 700;
}

.ac-mini-auction b {
  color: #8793a5;
  font-size: 7px;
  font-weight: 600;
}

.ac-floating-card {
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(9, 27, 59, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.ac-floating-card span,
.ac-floating-card small,
.ac-floating-card strong {
  display: block;
}

.ac-floating-card span {
  color: #72a5ff;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ac-floating-card strong {
  margin: 4px 0 2px;
  font-size: 13px;
}

.ac-floating-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
}

.ac-floating-card--bid {
  right: -28px;
  top: 70px;
}

.ac-floating-card--seller {
  left: -30px;
  bottom: 32px;
}

.ac-industries {
  padding: 31px 0;
  border-bottom: 1px solid var(--ac-line);
  background: #fff;
}

.ac-industries p {
  margin: 0 0 22px;
  color: #919cad;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 9px;
  font-weight: 800;
}

.ac-industries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  color: #66738a;
  font-size: 12px;
  font-weight: 700;
}

.ac-industries__grid div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.ac-industries__grid span {
  color: var(--ac-blue);
}

.ac-section {
  padding: 90px 0;
}

.ac-section--light {
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.ac-section-heading {
  max-width: 690px;
  margin: 0 auto 54px;
  text-align: center;
}

.ac-section-heading h2,
.ac-brands__copy h2,
.ac-cta h2 {
  margin: 12px 0 18px;
  font-size: clamp(37px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.ac-section-heading h2 span,
.ac-brands__copy h2 span {
  color: var(--ac-blue);
}

.ac-section-heading p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 16px;
}

.ac-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ac-feature-card {
  min-height: 215px;
  padding: 26px;
  border: 1px solid #e4e9f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(10, 29, 63, 0.045);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ac-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ac-shadow);
}

.ac-feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #dfe8f8;
  border-radius: 9px;
  background: #f2f6fd;
  display: grid;
  place-items: center;
  color: var(--ac-blue);
  font-weight: 900;
}

.ac-feature-card h3 {
  margin: 20px 0 10px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.ac-feature-card p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 13px;
  line-height: 1.7;
}

.ac-how {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 111, 237, 0.15), transparent 38%),
    var(--ac-navy-950);
}

.ac-section-heading--dark p {
  color: rgba(255, 255, 255, 0.58);
}

.ac-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ac-steps article {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ac-steps article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ac-steps article > span {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 38px;
  font-weight: 900;
}

.ac-step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #7aa8ff;
  border: 1px solid rgba(100, 153, 255, 0.25);
  border-radius: 10px;
  background: rgba(74, 126, 232, 0.08);
}

.ac-steps h3 {
  margin: 27px 0 12px;
  font-size: 18px;
}

.ac-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.ac-brands {
  background: #fff;
}

.ac-brands__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.ac-brands__copy h2 {
  max-width: 500px;
}

.ac-brands__copy > p {
  color: var(--ac-muted);
  max-width: 540px;
}

.ac-brands__copy ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.ac-brands__copy li {
  position: relative;
  margin: 12px 0;
  padding-left: 25px;
  color: #536078;
  font-size: 14px;
}

.ac-brands__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ac-blue);
  font-weight: 900;
}

.ac-brand-stack {
  position: relative;
}

.ac-brand-stack::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  z-index: 0;
  background: #e8f0ff;
  filter: blur(50px);
}

.ac-brand-stack article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 15px 0;
  padding: 22px;
  border: 1px solid #e3e9f2;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--ac-shadow);
}

.ac-brand-stack article:nth-child(2) {
  margin-left: 38px;
}

.ac-brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.ac-brand-badge--tsa {
  color: #17486d;
  background: #e1f0f7;
}

.ac-brand-badge--gmd {
  color: #1d5482;
  background: #e5f0fb;
}

.ac-brand-badge--industrial {
  color: #744c23;
  background: #f6ecdd;
}

.ac-brand-stack small,
.ac-brand-stack strong,
.ac-brand-stack span {
  display: block;
}

.ac-brand-stack small {
  color: var(--ac-blue);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.ac-brand-stack strong {
  margin: 3px 0;
  font-size: 15px;
}

.ac-brand-stack span {
  color: var(--ac-muted);
  font-size: 11px;
}

.ac-brand-stack b {
  color: #9ba7b8;
}

.ac-capabilities {
  padding: 42px 0;
  border-top: 1px solid var(--ac-line);
  border-bottom: 1px solid var(--ac-line);
  background: #f8fafc;
}

.ac-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.ac-capabilities__grid > div {
  text-align: center;
}

.ac-capabilities__grid span {
  display: block;
  color: var(--ac-blue);
  font-size: 24px;
}

.ac-capabilities__grid strong {
  display: block;
  margin: 9px 0 5px;
  font-size: 12px;
}

.ac-capabilities__grid p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 10px;
}

.ac-cta {
  padding: 72px 0;
  background: #fff;
}

.ac-cta__box {
  padding: 58px 64px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 30%, rgba(66, 135, 255, 0.25), transparent 32%),
    linear-gradient(135deg, #07152f, #0c2756);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  box-shadow: 0 30px 75px rgba(9, 25, 54, 0.18);
}

.ac-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.ac-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.ac-cta__actions {
  min-width: 220px;
  text-align: center;
}

.ac-button--white {
  width: 100%;
  background: #fff;
  color: #10224a !important;
  box-shadow: none;
}

.ac-cta__actions small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.ac-footer {
  padding: 46px 0 26px;
  color: rgba(255, 255, 255, 0.58);
  background: #050f22;
}

.ac-footer__top,
.ac-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ac-footer__top {
  padding-bottom: 35px;
}

.ac-footer__top p {
  max-width: 430px;
  margin: 0;
  font-size: 12px;
  text-align: right;
}

.ac-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.ac-footer__bottom div {
  display: flex;
  gap: 23px;
}

.ac-logo--footer {
  color: #fff;
}

.ac-logo--footer .ac-logo__text {
  color: #fff;
}

.ac-logo--footer .ac-logo__text > span {
  color: #70a5ff;
}

@media (max-width: 1050px) {
  .ac-nav {
    display: none;
  }

  .ac-hero__grid {
    grid-template-columns: 1fr;
  }

  .ac-hero__copy {
    max-width: 760px;
  }

  .ac-hero__visual {
    max-width: 760px;
  }

  .ac-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ac-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-steps article:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ac-steps article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ac-brands__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ac-capabilities__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 35px;
  }

  .ac-cta__box {
    grid-template-columns: 1fr;
  }

  .ac-cta__actions {
    max-width: 260px;
  }
}

@media (max-width: 700px) {
  .ac-shell {
    width: min(100% - 30px, 1180px);
  }

  .ac-header__inner {
    min-height: 70px;
  }

  .ac-login {
    display: none;
  }

  .ac-logo__text {
    font-size: 20px;
  }

  .ac-button--small {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11px;
  }

  .ac-hero {
    min-height: auto;
    padding: 126px 0 78px;
  }

  .ac-hero__grid {
    gap: 52px;
  }

  .ac-hero h1 {
    font-size: 44px;
  }

  .ac-hero__lead {
    font-size: 16px;
  }

  .ac-trust {
    gap: 18px;
    flex-wrap: wrap;
  }

  .ac-browser {
    transform: none;
  }

  .ac-dashboard {
    grid-template-columns: 42px 1fr;
    min-height: 335px;
  }

  .ac-dashboard__sidebar {
    padding-left: 7px;
    padding-right: 7px;
  }

  .ac-dashboard__main {
    padding: 12px;
  }

  .ac-dashboard__stats {
    grid-template-columns: 1fr;
  }

  .ac-dashboard__stats > div:nth-child(2),
  .ac-dashboard__stats > div:nth-child(3) {
    display: none;
  }

  .ac-dashboard__content {
    grid-template-columns: 1fr;
  }

  .ac-dashboard__auctions {
    display: none;
  }

  .ac-floating-card {
    display: none;
  }

  .ac-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-industries__grid div {
    justify-content: flex-start;
  }

  .ac-section {
    padding: 76px 0;
  }

  .ac-feature-grid,
  .ac-steps {
    grid-template-columns: 1fr;
  }

  .ac-feature-card {
    min-height: 0;
  }

  .ac-steps article,
  .ac-steps article:nth-child(3),
  .ac-steps article:nth-child(4) {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ac-steps article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ac-brand-stack article:nth-child(2) {
    margin-left: 0;
  }

  .ac-capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-cta__box {
    padding: 38px 27px;
  }

  .ac-footer__top,
  .ac-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .ac-footer__top p {
    text-align: left;
  }
}

/* AuctionCoder mobile density refinement */
@media (max-width: 700px) {

  .ac-hero {
    padding-top: 112px;
    padding-bottom: 62px;
  }

  .ac-hero h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .ac-hero__grid {
    gap: 40px;
  }

  .ac-trust {
    margin-top: 32px;
    padding-top: 22px;
  }

  .ac-dashboard {
    min-height: 300px;
  }

  .ac-dashboard__main {
    padding: 11px;
  }

  .ac-chart {
    height: 118px;
    margin-top: 18px;
  }

  .ac-industries {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .ac-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .ac-section-heading {
    margin-bottom: 38px;
  }

  .ac-feature-card {
    padding: 23px;
  }

  .ac-feature-card h3 {
    margin-top: 17px;
  }

  .ac-steps article {
    min-height: 0;
    padding: 28px 24px 30px;
  }

  .ac-step-icon {
    width: 44px;
    height: 44px;
  }

  .ac-steps h3 {
    margin-top: 20px;
    margin-bottom: 9px;
  }

  .ac-brands__grid {
    gap: 40px;
  }

  .ac-brand-stack article {
    margin-top: 11px;
    margin-bottom: 11px;
    padding: 18px;
  }

  .ac-capabilities {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .ac-capabilities__grid {
    row-gap: 30px;
  }

  .ac-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .ac-cta__box {
    padding: 34px 24px;
  }

  .ac-footer {
    padding-top: 38px;
    padding-bottom: 24px;
  }
}


/* AuctionCoder demo request form */
.ac-demo-panel {
  width: min(100%, 610px);
}

.ac-demo-form {
  display: grid;
  gap: 18px;
}

.ac-demo-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ac-demo-form label {
  display: grid;
  gap: 7px;
}

.ac-demo-form label > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ac-demo-form input,
.ac-demo-form select,
.ac-demo-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.ac-demo-form input,
.ac-demo-form select {
  min-height: 46px;
  padding: 0 13px;
}

.ac-demo-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.ac-demo-form input::placeholder,
.ac-demo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.ac-demo-form input:focus,
.ac-demo-form select:focus,
.ac-demo-form textarea:focus {
  border-color: #70a5ff;
  box-shadow: 0 0 0 3px rgba(112, 165, 255, 0.14);
}

.ac-demo-form select option {
  color: #0b1739;
  background: #ffffff;
}

.ac-demo-form__footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ac-demo-form__footer small {
  color: rgba(255, 255, 255, 0.62);
  max-width: 220px;
  line-height: 1.4;
}

.ac-demo-message {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.45;
}

.ac-demo-message--success {
  background: rgba(67, 190, 120, 0.13);
  border: 1px solid rgba(111, 229, 159, 0.35);
  color: #dcffea;
}

.ac-demo-message--error {
  background: rgba(255, 102, 102, 0.12);
  border: 1px solid rgba(255, 137, 137, 0.34);
  color: #ffe3e3;
}

@media (max-width: 700px) {
  .ac-demo-form__grid {
    grid-template-columns: 1fr;
  }

  .ac-demo-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ac-demo-form__footer small {
    max-width: none;
  }
}


/* AuctionCoder Timothy profile */

.ac-team {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    linear-gradient(
      135deg,
      #07172c 0%,
      #0d2543 54%,
      #102f54 100%
    );
}

.ac-team::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  top: -190px;
  border-radius: 50%;
  background:
    rgba(34, 151, 222, .12);
}

.ac-team__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(240px, 340px)
    minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.ac-team__photo-wrap {
  position: relative;
}

.ac-team__photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid
    rgba(55, 177, 239, .45);
  border-radius: 20px;
}

.ac-team__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 20px;
  box-shadow:
    0 30px 70px
    rgba(0, 0, 0, .28);
}

.ac-team__content {
  color: #ffffff;
}

.ac-team__content .ac-eyebrow {
  color: #4fc3f2;
}

.ac-team__content h2 {
  margin:
    10px 0 5px;
  color: #ffffff;
  font-size:
    clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.035em;
}

.ac-team__title {
  margin-bottom: 24px;
  color: #55c6f3;
  font-size: 18px;
  font-weight: 700;
}

.ac-team__content p {
  max-width: 650px;
  margin:
    0 0 16px;
  color: #d6e1eb;
  font-size: 17px;
  line-height: 1.75;
}

@media
  (max-width: 760px) {

  .ac-team {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .ac-team__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ac-team__photo-wrap {
    width: min(
      78vw,
      320px
    );
    margin: 0 auto;
  }

  .ac-team__content {
    text-align: center;
  }

  .ac-team__content p {
    margin-left: auto;
    margin-right: auto;
  }
}


/* AuctionCoder Timothy transition polish */

.ac-demo {
  margin-bottom: 0;
}

.ac-team {
  margin-top: -40px;
}

@media
  (max-width: 760px) {

  .ac-team {
    margin-top: -18px;
  }
}

/* Timothy portrait refinement */

.ac-team__photo-wrap {
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
}

.ac-team__photo-wrap::before {
  inset: -10px;
  border-radius: 50%;
  border:
    1px solid
    rgba(79, 195, 242, .48);
}

.ac-team__photo {
  width: 320px;
  height: 320px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 26px 65px
    rgba(0, 0, 0, .32);
}

@media
  (max-width: 760px) {

  .ac-team__photo-wrap,
  .ac-team__photo {
    width: 280px;
    height: 280px;
  }
}

/* Timothy portrait final refinement */

.ac-team__layout {
  grid-template-columns:
    300px minmax(0, 1fr);
  gap: 58px;
}

.ac-team__photo-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  max-width: 100%;
  margin: 0 auto;
}

.ac-team__photo-wrap::before {
  content: "";
  position: absolute;
  inset: -9px;
  border:
    1px solid
    rgba(79, 195, 242, .50);
  border-radius: 50%;
}

.ac-team__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 300px;
  height: 300px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  box-shadow:
    0 24px 60px
    rgba(0, 0, 0, .30);
}

@media (max-width: 760px) {

  .ac-team__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ac-team__photo-wrap,
  .ac-team__photo {
    width: 260px;
    height: 260px;
  }
}

/* AuctionCoder final homepage spacing polish */

.ac-team {
  margin-top: -72px;
  padding-top: 64px;
  padding-bottom: 68px;
}

@media (max-width: 760px) {
  .ac-team {
    margin-top: -34px;
    padding-top: 54px;
    padding-bottom: 58px;
  }
}

/* AuctionCoder demo-to-team section gap */

.ac-team {
  margin-top: -38px;
}

@media (max-width: 760px) {
  .ac-team {
    margin-top: -16px;
  }
}

/* AuctionCoder platform advantage */

.ac-advantage {
  position: relative;
  padding-top: 92px;
  padding-bottom: 94px;
  background: #f5f8fc;
  overflow: hidden;
}

.ac-advantage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -250px;
  top: -180px;
  border-radius: 50%;
  background:
    rgba(50, 132, 226, .07);
}

.ac-advantage__intro {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.ac-advantage__intro h2 {
  max-width: 760px;
  margin: 10px auto 18px;
  color: #07172f;
  font-size:
    clamp(38px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.ac-advantage__intro p {
  max-width: 690px;
  margin: 0 auto;
  color: #607086;
  font-size: 18px;
  line-height: 1.7;
}

.ac-advantage__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.ac-advantage-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  background: #ffffff;
  border:
    1px solid
    rgba(11, 42, 78, .10);
  border-radius: 18px;
  box-shadow:
    0 15px 40px
    rgba(18, 45, 78, .07);
}

.ac-advantage-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background:
    linear-gradient(
      90deg,
      #2a80ff,
      #43bdea
    );
  opacity: .72;
}

.ac-advantage-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 11px;
  background: #edf5ff;
  color: #297fe8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}

.ac-advantage-card h3 {
  margin: 0 0 13px;
  color: #0a1b35;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.015em;
}

.ac-advantage-card p {
  margin: 0;
  color: #657386;
  font-size: 15.5px;
  line-height: 1.68;
}

.ac-advantage__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 820px;
  margin: 42px auto 0;
  text-align: center;
}

.ac-advantage__footer strong {
  color: #0b2342;
  font-size: 18px;
}

.ac-advantage__footer span {
  color: #6d7888;
  font-size: 15px;
}

@media (max-width: 980px) {

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

}

@media (max-width: 650px) {

  .ac-advantage {
    padding-top: 66px;
    padding-bottom: 68px;
  }

  .ac-advantage__intro {
    margin-bottom: 34px;
  }

  .ac-advantage__intro h2 {
    font-size: 38px;
  }

  .ac-advantage__intro p {
    font-size: 16px;
  }

  .ac-advantage__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ac-advantage-card {
    min-height: 0;
    padding: 25px;
  }

  .ac-advantage-card::after {
    left: 25px;
    right: 25px;
  }

}

/* AuctionCoder layered platform hero */

.ac-hero__visual {
  overflow: visible;
}

.ac-hero-stack-card {
  position: absolute;
  z-index: 7;
  overflow: hidden;
  background: #ffffff;
  border:
    1px solid
    rgba(115, 137, 165, .34);
  border-radius: 13px;
  box-shadow:
    0 28px 65px
    rgba(0, 12, 34, .32);
  color: #12213a;
}

.ac-hero-stack-card--seller {
  width: 360px;
  right: 235px;
  bottom: -30px;
  transform:
    rotate(-.5deg);
}

.ac-hero-stack-card--admin {
  width: 310px;
  right: -30px;
  bottom: -78px;
  transform:
    rotate(.6deg);
}

.ac-stack-window__top {
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  gap: 5px;
  background: #f4f7fb;
  border-bottom:
    1px solid
    #e2e8f0;
}

.ac-stack-window__top > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8c3d1;
}

.ac-stack-window__top > strong {
  margin-left: 7px;
  color: #18283e;
  font-size: 10px;
  font-weight: 800;
}

.ac-stack-window__body {
  display: grid;
  grid-template-columns:
    88px minmax(0, 1fr);
  min-height: 205px;
}

.ac-stack-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 11px;
  background: #0c1b33;
  color: #8494aa;
  font-size: 8px;
}

.ac-stack-sidebar b {
  color: #ffffff;
  font-size: 8px;
}

.ac-stack-content {
  padding: 17px 16px 15px;
}

.ac-stack-content small {
  display: block;
  margin-bottom: 4px;
  color: #7c8ca1;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ac-stack-content h4 {
  margin: 0 0 13px;
  color: #11223c;
  font-size: 13px;
  line-height: 1.15;
}

.ac-stack-stats {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}

.ac-stack-stats > div {
  padding: 8px 6px;
  border:
    1px solid
    #e5eaf1;
  border-radius: 7px;
  background: #f8fafc;
}

.ac-stack-stats strong {
  display: block;
  margin-bottom: 2px;
  color: #1374da;
  font-size: 13px;
}

.ac-stack-stats span {
  display: block;
  color: #758397;
  font-size: 6px;
}

.ac-stack-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ac-stack-list > div {
  display: grid;
  grid-template-columns:
    22px 1fr auto;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 6px;
  border:
    1px solid
    #edf0f4;
  border-radius: 6px;
}

.ac-stack-list i {
  display: block;
  width: 22px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(
      135deg,
      #d9e2ec,
      #aab8c8
    );
}

.ac-stack-list span {
  color: #435269;
  font-size: 7px;
}

.ac-stack-list b {
  padding: 3px 5px;
  border-radius: 8px;
  background: #ecf7ef;
  color: #308c50;
  font-size: 6px;
}

.ac-stack-stats--admin strong {
  font-size: 11px;
}

.ac-stack-chart {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 58px;
  padding: 8px 8px 5px;
  border-radius: 7px;
  background: #f7f9fc;
}

.ac-stack-chart i {
  flex: 1;
  min-width: 4px;
  border-radius: 3px 3px 0 0;
  background:
    linear-gradient(
      180deg,
      #2589ff,
      #74b7ff
    );
}

.ac-floating-card--bid,
.ac-floating-card--seller {
  display: none;
}

@media (max-width: 1180px) {

  .ac-hero-stack-card--seller {
    width: 325px;
    right: 190px;
  }

  .ac-hero-stack-card--admin {
    width: 285px;
    right: -15px;
  }

}

@media (max-width: 980px) {

  .ac-hero-stack-card--seller {
    width: 310px;
    right: 150px;
    bottom: -20px;
  }

  .ac-hero-stack-card--admin {
    width: 275px;
    right: -5px;
    bottom: -62px;
  }

}

@media (max-width: 760px) {

  .ac-hero__visual {
    padding-bottom: 170px;
  }

  .ac-hero-stack-card--seller {
    width: 72%;
    left: 1%;
    right: auto;
    bottom: 72px;
  }

  .ac-hero-stack-card--admin {
    width: 66%;
    right: 1%;
    bottom: -15px;
  }

  .ac-stack-window__body {
    grid-template-columns:
      72px minmax(0, 1fr);
    min-height: 180px;
  }

  .ac-stack-sidebar {
    gap: 8px;
    padding: 14px 8px;
  }

  .ac-stack-content {
    padding: 13px 11px;
  }

}

@media (max-width: 520px) {

  .ac-hero__visual {
    padding-bottom: 145px;
  }

  .ac-hero-stack-card--seller {
    width: 82%;
    bottom: 62px;
  }

  .ac-hero-stack-card--admin {
    width: 76%;
  }

  .ac-stack-sidebar {
    display: none;
  }

  .ac-stack-window__body {
    display: block;
    min-height: 155px;
  }

}

/* AuctionCoder heavy equipment hero showcase */

.ac-dashboard__content--auction {
  grid-template-columns:
    minmax(0, 1.55fr) minmax(145px, .65fr);
  align-items: stretch;
}

.ac-auction-showcase {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3e9f1;
  border-radius: 10px;
}

.ac-auction-showcase__image {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: #d8e0e8;
}

.ac-auction-showcase__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ac-auction-showcase__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 14, 31, .02) 35%,
      rgba(4, 14, 31, .72) 100%
    );
  pointer-events: none;
}

.ac-auction-showcase__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 5px;
  background: #e53935;
  color: #ffffff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ac-auction-showcase__countdown {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 11px;
  text-align: right;
  color: #ffffff;
}

.ac-auction-showcase__countdown small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 6px;
  letter-spacing: .08em;
}

.ac-auction-showcase__countdown strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: .04em;
}

.ac-auction-showcase__details {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px 14px;
}

.ac-auction-showcase__details small {
  color: #317dd6;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ac-auction-showcase__details h3 {
  margin: 4px 0 4px;
  color: #10213a;
  font-size: 14px;
  line-height: 1.12;
}

.ac-auction-showcase__details p {
  max-width: 270px;
  margin: 0;
  color: #718096;
  font-size: 7px;
  line-height: 1.45;
}

.ac-auction-showcase__meta {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ac-auction-showcase__meta span {
  display: flex;
  flex-direction: column;
  color: #8490a0;
  font-size: 6px;
}

.ac-auction-showcase__meta strong {
  color: #142640;
  font-size: 10px;
}

.ac-dashboard__auctions--hero {
  display: flex;
  flex-direction: column;
}

.ac-dashboard__auctions--hero .ac-mini-auction {
  padding: 13px 0;
}

.ac-dashboard__auctions--hero .ac-mini-auction b {
  margin-top: 3px;
  color: #267bd8;
  font-size: 11px;
}


/* Push Seller Portal farther left like layered mockup */

.ac-hero-stack-card--seller {
  right: 330px;
  bottom: -24px;
}

@media (max-width: 1180px) {

  .ac-hero-stack-card--seller {
    right: 275px;
  }

}

@media (max-width: 980px) {

  .ac-hero-stack-card--seller {
    right: 215px;
  }

  .ac-auction-showcase__image {
    height: 165px;
  }

}

@media (max-width: 760px) {

  .ac-hero-stack-card--seller {
    left: -4%;
    right: auto;
  }

  .ac-dashboard__content--auction {
    grid-template-columns: 1fr;
  }

  .ac-dashboard__auctions--hero {
    display: none;
  }

}

/* Final layered hero positioning */

.ac-hero-stack-card--seller {
  right: 370px;
  bottom: -32px;
}

@media (max-width: 1180px) {
  .ac-hero-stack-card--seller {
    right: 305px;
  }
}

@media (max-width: 980px) {
  .ac-hero-stack-card--seller {
    right: 235px;
  }
}

@media (max-width: 760px) {
  .ac-hero-stack-card--seller {
    left: -4%;
    right: auto;
  }
}

/* Prevent Seller Portal from overlapping hero copy */

.ac-hero-stack-card--seller {
  right: 305px;
  bottom: -32px;
}

@media (max-width: 1180px) {
  .ac-hero-stack-card--seller {
    right: 255px;
  }
}

@media (max-width: 980px) {
  .ac-hero-stack-card--seller {
    right: 205px;
  }
}

@media (max-width: 760px) {
  .ac-hero-stack-card--seller {
    left: 0;
    right: auto;
  }
}

/* Zoom heavy equipment image inside hero auction card */

.ac-auction-showcase__image {
  overflow: hidden;
}

.ac-auction-showcase__image img {
  transform: scale(1.30);
  transform-origin: center center;
}

/* Give the main auction image more of the top browser window */

.ac-auction-showcase__image {
  height: 245px;
}

/* Keep prior image zoom but soften it slightly for the larger viewport */
.ac-auction-showcase__image img {
  transform: scale(1.18);
  transform-origin: center center;
}

/* Reduce white information area underneath */
.ac-auction-showcase__details {
  padding: 10px 14px 9px;
}

.ac-auction-showcase__details h3 {
  margin-top: 3px;
  margin-bottom: 2px;
}

.ac-auction-showcase__details p {
  line-height: 1.3;
}

/* Make featured-lot panel fit the taller image presentation */
.ac-dashboard__auctions--hero .ac-mini-auction {
  padding: 10px 0;
}

@media (max-width: 980px) {
  .ac-auction-showcase__image {
    height: 215px;
  }
}

/* ==========================================================
   AuctionCoder homepage hero:
   real auction marketplace + layered software panels
   ========================================================== */

.ac-browser {
  min-height: 475px;
}

.ac-marketplace-home {
  position: relative;
  height: 475px;
  overflow: hidden;
  background: #f5f7fa;
  color: #111d31;
}

.ac-marketplace-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 18px;
  background: #ffffff;
  border-bottom: 1px solid #e3e7ed;
}

.ac-marketplace-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ac-marketplace-brand__mark {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #e8edf3;
  color: #39475a;
  font-size: 7px;
  font-weight: 900;
}

.ac-marketplace-brand strong {
  color: #182437;
  font-size: 10px;
  font-weight: 850;
}

.ac-marketplace-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #49566a;
  font-size: 7px;
  white-space: nowrap;
}

.ac-marketplace-links b {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 5px;
  background: #0d1c34;
  color: #ffffff;
  font-size: 7px;
  font-weight: 800;
}

.ac-marketplace-hero {
  position: relative;
  height: 286px;
  overflow: hidden;
  background: #23354d;
}

.ac-marketplace-hero > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
}

.ac-marketplace-hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 14, 31, .86) 0%,
      rgba(4, 14, 31, .58) 37%,
      rgba(4, 14, 31, .08) 72%,
      rgba(4, 14, 31, .08) 100%
    );
}

.ac-marketplace-hero__copy {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 34px;
  width: 47%;
  color: #ffffff;
}

.ac-marketplace-hero__copy small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .65);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ac-marketplace-hero__copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.ac-marketplace-hero__copy h4 {
  margin: 4px 0 9px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
}

.ac-marketplace-hero__copy p {
  max-width: 255px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .79);
  font-size: 8px;
  line-height: 1.5;
}

.ac-marketplace-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 14px;
  border-radius: 5px;
  background: #1376e8;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(13, 84, 190, .28);
  font-size: 8px;
  font-weight: 850;
}

.ac-marketplace-featured {
  position: relative;
  height: 139px;
  padding: 12px 17px 0;
  background: #ffffff;
}

.ac-marketplace-featured__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 9px;
}

.ac-marketplace-featured__heading > div {
  display: flex;
  flex-direction: column;
}

.ac-marketplace-featured__heading small {
  color: #9aa4b3;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ac-marketplace-featured__heading strong {
  margin-top: 2px;
  color: #202c3d;
  font-size: 11px;
}

.ac-marketplace-featured__heading > span {
  color: #68758a;
  font-size: 7px;
}

.ac-marketplace-lots {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.ac-marketplace-lot {
  position: relative;
  height: 93px;
  overflow: hidden;
  border: 1px solid #e4e9ef;
  border-radius: 7px;
  background: #ffffff;
}

.ac-marketplace-lot img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: cover;
}

.ac-marketplace-lot > div {
  padding: 5px 7px;
}

.ac-marketplace-lot strong,
.ac-marketplace-lot span {
  display: block;
}

.ac-marketplace-lot strong {
  overflow: hidden;
  color: #263246;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ac-marketplace-lot span {
  margin-top: 2px;
  color: #2c79d9;
  font-size: 6px;
  font-weight: 750;
}


/* ==========================================================
   Layer placement
   ========================================================== */

.ac-hero__visual {
  overflow: visible;
}

.ac-hero-stack-card--seller {
  left: -24px;
  right: auto;
  bottom: -55px;
  width: 365px;
  z-index: 8;
  transform: none;
}

.ac-hero-stack-card--admin {
  right: 0;
  bottom: -86px;
  width: 335px;
  z-index: 9;
  transform: none;
}

/*
  Admin right edge matches the large browser exactly.
*/
.ac-browser,
.ac-hero-stack-card--admin {
  right: 0;
}


/* Make front windows feel closer to the mockup */

.ac-hero-stack-card {
  border-radius: 11px;
  box-shadow:
    0 25px 60px
    rgba(0, 11, 30, .30);
}

.ac-hero-stack-card--seller .ac-stack-window__body {
  min-height: 220px;
}

.ac-hero-stack-card--admin .ac-stack-window__body {
  min-height: 220px;
}


/* Give the whole layered composition enough breathing room */

.ac-hero {
  padding-bottom: 100px;
}

@media (max-width: 1180px) {

  .ac-marketplace-links {
    gap: 10px;
  }

  .ac-hero-stack-card--seller {
    left: -8px;
    width: 340px;
  }

  .ac-hero-stack-card--admin {
    width: 315px;
  }

}

@media (max-width: 980px) {

  .ac-marketplace-links span:nth-child(4),
  .ac-marketplace-links span:nth-child(5) {
    display: none;
  }

  .ac-hero-stack-card--seller {
    left: 0;
    width: 315px;
  }

  .ac-hero-stack-card--admin {
    width: 295px;
  }

}

@media (max-width: 760px) {

  .ac-browser {
    min-height: 430px;
  }

  .ac-marketplace-home {
    height: 430px;
  }

  .ac-marketplace-nav {
    height: 44px;
  }

  .ac-marketplace-links {
    display: none;
  }

  .ac-marketplace-hero {
    height: 260px;
  }

  .ac-marketplace-hero__copy {
    top: 35px;
    left: 24px;
    width: 62%;
  }

  .ac-marketplace-hero__copy h3 {
    font-size: 20px;
  }

  .ac-marketplace-hero__copy h4 {
    font-size: 15px;
  }

  .ac-marketplace-featured {
    height: 126px;
  }

  .ac-hero-stack-card--seller {
    left: 0;
    bottom: -70px;
    width: 72%;
  }

  .ac-hero-stack-card--admin {
    right: 0;
    bottom: -150px;
    width: 66%;
  }

  .ac-hero {
    padding-bottom: 175px;
  }

}

@media (max-width: 520px) {

  .ac-marketplace-hero__copy {
    width: 75%;
  }

  .ac-marketplace-lot:nth-child(3) {
    display: none;
  }

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

}

/* ==========================================================
   Premium layered platform windows
   ========================================================== */

.ac-hero-stack-card {
  background: #ffffff;
  border: 1px solid rgba(136, 151, 173, .42);
  border-radius: 12px;
  box-shadow:
    0 32px 80px rgba(1, 12, 31, .34),
    0 5px 18px rgba(1, 12, 31, .10);
}

.ac-premium-window__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 38px;
  padding: 0 12px;
  background: #f5f7fa;
  border-bottom: 1px solid #dfe5ed;
}

.ac-premium-window__top > strong {
  color: #17263b;
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.ac-premium-dots {
  display: flex;
  gap: 5px;
}

.ac-premium-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8c3d2;
}

.ac-premium-window__action {
  justify-self: end;
  color: #7a8798;
  font-size: 10px;
}

.ac-premium-layout {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 245px;
}

.ac-premium-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 9px;
  background: #f7f9fc;
  border-right: 1px solid #e2e7ee;
}

.ac-premium-sidebar--admin {
  background: #0b1b34;
  border-right: 0;
}

.ac-premium-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 5px;
  color: #5c6878;
  font-size: 7px;
  font-weight: 650;
}

.ac-premium-nav-item span {
  width: 12px;
  color: #798698;
  font-size: 8px;
}

.ac-premium-nav-item.is-active {
  background: #101f38;
  color: #ffffff;
}

.ac-premium-nav-item.is-active span {
  color: #ffffff;
}

.ac-premium-sidebar--admin .ac-premium-nav-item {
  color: #8795aa;
}

.ac-premium-sidebar--admin .ac-premium-nav-item span {
  color: #8998ad;
}

.ac-premium-sidebar--admin .ac-premium-nav-item.is-active {
  background: #172d50;
  color: #ffffff;
}

.ac-premium-content {
  padding: 16px 16px 14px;
  background: #ffffff;
}

.ac-premium-content--admin {
  padding: 14px 14px 12px;
}

.ac-premium-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ac-premium-heading small {
  display: block;
  margin-bottom: 3px;
  color: #8b98aa;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: .1em;
}

.ac-premium-heading h4 {
  margin: 0;
  color: #132440;
  font-size: 13px;
  line-height: 1.1;
}

.ac-premium-chip {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef7f1;
  color: #43855a;
  font-size: 6px;
  font-weight: 800;
}

.ac-premium-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 11px;
}

.ac-premium-kpis > div {
  padding: 9px 9px 8px;
  border: 1px solid #e1e7ef;
  border-radius: 7px;
  background: #fbfcfe;
}

.ac-premium-kpis strong {
  display: block;
  color: #1b7ae8;
  font-size: 15px;
}

.ac-premium-kpis span {
  display: block;
  margin-top: 2px;
  color: #8a96a7;
  font-size: 6px;
}

.ac-premium-table {
  border: 1px solid #e2e7ee;
  border-radius: 7px;
  overflow: hidden;
}

.ac-premium-table__head,
.ac-premium-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px 25px;
  align-items: center;
  gap: 8px;
}

.ac-premium-table__head {
  min-height: 24px;
  padding: 0 8px;
  background: #f6f8fb;
  color: #8894a5;
  font-size: 6px;
  font-weight: 800;
}

.ac-premium-table__row {
  min-height: 42px;
  padding: 5px 8px;
  border-top: 1px solid #edf0f4;
}

.ac-premium-product {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.ac-premium-product img {
  width: 30px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 4px;
  background: #edf1f5;
}

.ac-premium-product span {
  overflow: hidden;
  color: #344258;
  font-size: 6px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ac-premium-table__row > b {
  justify-self: start;
  padding: 3px 5px;
  border-radius: 999px;
  font-size: 5px;
  font-weight: 800;
}

.ac-premium-table__row > b.is-active {
  background: #eaf6ee;
  color: #3c8c56;
}

.ac-premium-table__row > b.is-pending {
  background: #fff3dc;
  color: #b47a19;
}

.ac-premium-table__row > b.is-sold {
  background: #eef1f5;
  color: #687688;
}

.ac-premium-table__row > strong {
  color: #3e4c60;
  font-size: 6px;
}


/* Admin */

.ac-premium-layout--admin {
  grid-template-columns: 92px minmax(0, 1fr);
}

.ac-admin-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.ac-admin-kpis > div {
  padding: 8px 7px;
  border: 1px solid #e1e6ee;
  border-radius: 7px;
  background: #fbfcfe;
}

.ac-admin-kpis small {
  display: block;
  min-height: 14px;
  color: #8e99a9;
  font-size: 5px;
  line-height: 1.15;
  text-transform: uppercase;
}

.ac-admin-kpis strong {
  display: block;
  margin-top: 3px;
  color: #172943;
  font-size: 12px;
}

.ac-admin-analytics {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 8px;
}

.ac-admin-chart,
.ac-admin-category {
  min-width: 0;
  padding: 9px;
  border: 1px solid #e1e7ef;
  border-radius: 7px;
  background: #fbfcfe;
}

.ac-admin-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ac-admin-card-title strong {
  color: #26364c;
  font-size: 7px;
}

.ac-admin-card-title span {
  padding: 2px 5px;
  border-radius: 4px;
  background: #f0f3f7;
  color: #8793a2;
  font-size: 5px;
}

.ac-admin-chart svg {
  display: block;
  width: 100%;
  height: 86px;
  overflow: visible;
}

.ac-admin-chart__fill {
  fill: url(#acChartFill);
}

.ac-admin-chart__line {
  fill: none;
  stroke: #2e83ed;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ac-admin-category__body {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 84px;
}

.ac-admin-donut {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    conic-gradient(
      #2f82ea 0 42%,
      #3ea68c 42% 71%,
      #d49f42 71% 87%,
      #7d8999 87% 100%
    );
  position: relative;
}

.ac-admin-donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fbfcfe;
}

.ac-admin-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ac-admin-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6f7c8e;
  font-size: 5px;
  white-space: nowrap;
}

.ac-admin-legend i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f82ea;
}

.ac-admin-legend span:nth-child(2) i {
  background: #3ea68c;
}

.ac-admin-legend span:nth-child(3) i {
  background: #d49f42;
}

.ac-admin-legend span:nth-child(4) i {
  background: #7d8999;
}


/* Layer sizing and alignment */

.ac-hero-stack-card--seller {
  width: 385px;
  left: -28px;
  right: auto;
  bottom: -66px;
}

.ac-hero-stack-card--admin {
  width: 365px;
  right: 0;
  bottom: -94px;
}

@media (max-width: 1180px) {

  .ac-hero-stack-card--seller {
    width: 360px;
    left: -10px;
  }

  .ac-hero-stack-card--admin {
    width: 340px;
  }

}

@media (max-width: 980px) {

  .ac-hero-stack-card--seller {
    width: 330px;
    left: 0;
  }

  .ac-hero-stack-card--admin {
    width: 320px;
  }

  .ac-admin-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 760px) {

  .ac-hero-stack-card--seller {
    width: 78%;
  }

  .ac-hero-stack-card--admin {
    width: 72%;
  }

}

/* AuctionCoder hero feature line */

.ac-hero-feature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
  margin: 18px 0 2px;
  max-width: 680px;
}

.ac-hero-feature-line span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px 0 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ac-hero-feature-line span::before {
  content: "✓";
  position: absolute;
  left: 9px;
  color: #62a8ff;
  font-size: 8px;
  font-weight: 900;
}

@media (max-width: 760px) {

  .ac-hero-feature-line {
    gap: 6px;
    margin-top: 15px;
  }

  .ac-hero-feature-line span {
    min-height: 25px;
    padding-left: 20px;
    padding-right: 9px;
    font-size: 9px;
  }

}
