:root {
  --navy: #061d43;
  --navy-2: #082f6f;
  --blue: #075bd8;
  --gold: #ffc713;
  --ink: #071839;
  --muted: #5c6b82;
  --line: #e9edf4;
  --soft: #f7f9fd;
  --white: #ffffff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f3f6fb;
}

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

.page-shell {
 
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(5, 21, 52, 0.08);
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 54px;
  color: var(--white);
  background: #041634;
  border-radius: 0 0 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 7px;
  transform: rotate(-14deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  opacity: 0.92;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #041634;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 8px 4px;
  transition: all 0.3s ease;
}

.bottom-nav-item svg {
  margin-bottom: 4px;
  stroke-width: 2;
}

.bottom-nav-item span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  color: #041634;
  font-weight: 800;
  background: var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(255, 199, 19, 0.2);
}

.btn.ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.btn.small {
  min-height: 40px;
  padding: 0 24px;
}

.hero {
  position: relative;
  min-height: 535px;
  display: grid;
  grid-template-columns: minmax(370px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 28px;
  overflow: hidden;
  color: var(--white);
  padding: 64px 60px 74px;
  background:
    radial-gradient(circle at 74% 45%, rgba(18, 104, 214, 0.75), transparent 29%),
    radial-gradient(circle at 55% 22%, rgba(27, 80, 166, 0.6), transparent 24%),
    linear-gradient(115deg, #062150 0%, #082d68 50%, #031638 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -54px;
  height: 104px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy > p {
  width: min(100%, 440px);
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.48;
}

.cta {
  width: 190px;
  height: 58px;
  font-size: 21px;
}

.cta span {
  display: inline-block;
  margin-right: 8px;
  font-size: 26px;
  transform: rotate(-14deg);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, 570px);
  margin-top: 50px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
}

.trust-row strong,
.trust-row small {
  grid-column: 2;
}

.trust-row strong {
  font-size: 14px;
}

.trust-row small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.45;
}

.mini-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: #1560d2;
  border-radius: 9px;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 440px;
}

.bid-phone {
  position: absolute;
  left: 39%;
  top: 16px;
  width: 224px;
  height: 430px;
  padding: 13px;
  border: 8px solid #111927;
  border-radius: 32px;
  background: #f9fbff;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.28);
}

.phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  padding: 28px 15px 14px;
  border-radius: 19px;
  background: #fff;
}

.bid-label,
.mobile-card span {
  display: inline-flex;
  padding: 7px 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #0b5bd7;
  border-radius: 8px;
}

.amount {
  font-size: 26px;
}

.phone-screen small,
.next-bid {
  color: #3c4a5b;
  text-align: center;
}

.watch-face,
.tiny-watch {
  width: 112px;
  height: 112px;
  margin: 8px 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, #101822 0 18%, transparent 19%),
    conic-gradient(from 40deg, #111827, #334155, #050913, #111827);
  box-shadow: inset 0 0 0 10px #050913, 0 9px 18px rgba(0, 0, 0, 0.18);
}

.phone-screen button,
.mobile-card button {
  width: 100%;
  min-height: 46px;
  color: white;
  font-size: 17px;
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  background: #0b5bd7;
}

.floating {
  position: absolute;
  border-radius: 22px;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.28));
}

.headphone {
  left: 22%;
  top: 44px;
  width: 118px;
  height: 132px;
  border: 14px solid #1e61c7;
  border-bottom-color: transparent;
  border-radius: 70px 70px 34px 34px;
}

.headphone::before,
.headphone::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 34px;
  height: 58px;
  background: #15499f;
  border-radius: 16px;
}

.headphone::before {
  left: -20px;
}

.headphone::after {
  right: -20px;
}

.handbag {
  right: 12px;
  bottom: 98px;
  width: 140px;
  height: 132px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(140deg, #213a78, #071d44);
}

.handbag::before {
  content: "";
  position: absolute;
  left: 36px;
  top: -38px;
  width: 66px;
  height: 66px;
  border: 10px solid #1c3470;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}

.camera {
  right: 132px;
  bottom: 28px;
  width: 132px;
  height: 88px;
  background: #121821;
}

.camera::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, #111 0 28%, #334155 29% 44%, #050608 45%);
  border: 6px solid #2e3b4e;
}

.gavel {
  position: absolute;
  left: 24%;
  bottom: 16px;
  width: 180px;
  height: 120px;
}

.gavel::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(#b77825, #61330f);
  transform: rotate(35deg);
  box-shadow: inset 0 0 0 6px rgba(255, 223, 143, 0.18);
}

.gavel::after {
  content: "";
  position: absolute;
  left: 76px;
  top: 58px;
  width: 92px;
  height: 16px;
  border-radius: 999px;
  background: #7b4518;
  transform: rotate(35deg);
}

.gavel span {
  position: absolute;
  left: 67px;
  bottom: 0;
  width: 116px;
  height: 24px;
  border-radius: 50%;
  background: #815019;
}

.page-section {
  padding: 56px 60px;
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  color: var(--navy);
}

.section-head span {
  display: block;
  width: 46px;
  height: 4px;
  margin: 14px auto 0;
  background: var(--gold);
  border-radius: 999px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.auctions-section {
  background: #fff;
}

.product-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

.product-card,
.why-grid article {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(11, 34, 75, 0.06);
}

.product-card {
  padding: 20px 22px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card-premium {
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid #e3eaf5;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 16px 40px rgba(6, 29, 67, 0.08);
}

.product-card-premium:hover {
  transform: translateY(-6px);
  border-color: #c9d9f2;
  box-shadow: 0 24px 48px rgba(6, 29, 67, 0.14);
}

.product-media {
  position: relative;
  padding: 18px 18px 0;
  background: linear-gradient(180deg, #f3f7fd 0%, #fff 100%);
}

.product-card-premium .product-photo {
  width: 100%;
  max-width: none;
  
  margin: 0;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e8eef8;
  box-shadow: 0 10px 24px rgba(6, 29, 67, 0.1);
}

.product-card-premium .product-img {
  width: 100%;
  max-width: none;
  height: 180px;
  margin: 0;
}

.live-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 6px 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e11d48, #be123c);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.35);
}

.live-badge::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  vertical-align: middle;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.product-body {
  padding: 18px 18px 20px;
}

.category-pill {
  display: inline-flex;
  padding: 5px 12px;
  margin-bottom: 10px;
  color: #0b5bd7;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #eaf2ff;
  border-radius: 999px;
}

.product-card-premium h2 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--navy);
}

.premium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  text-align: center;
}

.premium-stats .stat-item {
  padding: 10px 6px;
  border-radius: 10px;
  background: #f4f8ff;
  border: 1px solid #e6edf8;
}

.premium-stats .stat-item.highlight {
  background: linear-gradient(180deg, #fff8e1 0%, #fff3c4 100%);
  border-color: #f5d76e;
}

.premium-stats small {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.premium-stats strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.3;
}

.premium-stats .stat-item.highlight strong {
  color: #9a6700;
}

.premium-bid-form {
  display: grid;
  gap: 10px;
}

.premium-bid-form input {
  width: 100%;
  border: 1px solid #d7e0ef;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: #14213d;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.premium-bid-form input:focus {
  outline: none;
  border-color: #4d8ef0;
  box-shadow: 0 0 0 4px rgba(7, 91, 216, 0.12);
}

.premium-bid-form input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: #f8fafc;
}

.bid-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #075bd8 0%, #0a4cb5 100%);
  box-shadow: 0 12px 24px rgba(7, 91, 216, 0.28);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bid-now-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(7, 91, 216, 0.34);
}

.product-card:not(.product-card-premium):hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(11, 34, 75, 0.1);
}

.site-message {
  margin: 24px 60px 0;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
  font-weight: 800;
}

.site-message.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.site-message-link {
  display: inline-block;
  margin-top: 10px;
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
}

.wallet-balance-note {
  margin: 0 0 10px;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.wallet-balance-note strong {
  color: #0b5bd7;
}

.register-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 38px 60px;
  background: #fbfcff;
  border-bottom: 1px solid var(--line);
}

.register-section h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 30px;
}

.register-section p {
  margin: 0;
  color: #344155;
  line-height: 1.7;
  font-weight: 700;
}

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

.register-form input,
.register-form textarea,
.bid-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  color: #14213d;
  background: #fff;
}

.register-form textarea {
  grid-column: 1 / -1;
  min-height: 92px;
  resize: vertical;
}

.register-form button,
.bid-form button {
  border: 0;
  border-radius: 6px;
  background: #075bd8;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
}

.register-form button {
  grid-column: 1 / -1;
}

.auth-form-wrap {
  display: grid;
  gap: 14px;
}

.auth-switch {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.auth-switch a {
  color: var(--blue);
  font-weight: 800;
}

.auth-page-section {
  padding: 48px 60px 64px;
  background:
    radial-gradient(circle at 12% 20%, rgba(7, 91, 216, 0.08), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(255, 199, 19, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, 460px);
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.auth-brand-panel {
  color: var(--navy);
}

.auth-badge {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: #0b5bd7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(7, 91, 216, 0.1);
  border-radius: 999px;
}

.auth-brand-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.auth-brand-panel h1 span {
  color: var(--blue);
}

.auth-brand-panel > p {
  margin: 0 0 24px;
  color: #344155;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.auth-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.auth-features li {
  position: relative;
  padding-left: 28px;
  color: #26364d;
  font-weight: 700;
  line-height: 1.5;
}

.auth-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: #16a06e;
  border-radius: 50%;
}

.auth-card {
  padding: 34px 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(6, 29, 67, 0.1);
}

.auth-card-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--navy);
}

.auth-card-head p {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form .field {
  display: grid;
  gap: 8px;
}

.auth-form .field span {
  color: #344155;
  font-size: 13px;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  border: 1px solid #d7deea;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: #14213d;
  background: #fbfcff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form input:focus {
  outline: none;
  border-color: #4d8ef0;
  box-shadow: 0 0 0 4px rgba(7, 91, 216, 0.12);
  background: #fff;
}

.auth-submit {
  margin-top: 6px;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #075bd8, #0a4cb5);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(7, 91, 216, 0.22);
}

.site-message.inline {
  margin: 0 0 16px;
}

.dynamic-products {
  align-items: stretch;
}

.product-photo {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 16px;
  background: #f8fafc;
  display: block;
}

.bid-stats {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 10px;
  border-radius: 8px;
  background: #f8fafc;
  color: #26364f;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.bid-stats span {
  color: inherit;
}

.bid-form {
  display: grid;
  gap: 10px;
}

.empty-product {
  grid-column: 1 / -1;
}

.product-img {
  position: relative;
  width: 118px;
  height: 132px;
  margin: 0 auto 16px;
}

.product-img::before,
.product-img::after {
  content: "";
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(145deg, #f5f5f5, #9299a6);
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.product-img::before {
  left: 18px;
  top: 0;
  width: 50px;
  height: 104px;
}

.product-img::after {
  right: 8px;
  top: 4px;
  width: 55px;
  height: 112px;
}

.phone-two::before,
.phone-two::after {
  background: linear-gradient(140deg, #151821, #7849ff);
}

.phone-three::before,
.phone-three::after {
  background: linear-gradient(140deg, #ffd7de, #ff8c95);
}

.phone-four::before,
.phone-four::after {
  background: linear-gradient(140deg, #f0f1ff, #8390c7);
}

.product-card:not(.product-card-premium) h2 {
  margin: 0;
  font-size: 15px;
}

.product-card:not(.product-card-premium) p {
  margin: 6px 0 18px;
  color: #344155;
  font-size: 12px;
  font-weight: 700;
}

.product-card:not(.product-card-premium) span {
  color: var(--blue);
}

.how-section {
  background: #fbfcff;
}

.about-section {
  background: #fff;
}

.faq-section {
  background: linear-gradient(180deg, #fbfcff 0%, #f3f7fd 100%);
}

.about-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  color: var(--navy);
}

.about-copy span {
  display: block;
  width: 46px;
  height: 4px;
  margin: 14px 0 0;
  background: var(--gold);
  border-radius: 999px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.steps article {
  position: relative;
  text-align: center;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -28px;
  width: 30px;
  border-top: 2px dashed #cdd5e3;
}

.step-icon {
  display: grid;
  width: 94px;
  height: 94px;
  margin: 0 auto 10px;
  place-items: center;
  font-size: 42px;
  border-radius: 50%;
}

.step-icon.blue {
  color: #1466de;
  background: #eaf2ff;
}

.step-icon.green {
  color: #16a06e;
  background: #e8f8ee;
}

.step-icon.gold {
  color: #cf8414;
  background: #fff3d7;
}

.step-icon.purple {
  color: #714bd6;
  background: #f0eafd;
}

.steps b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin: -20px auto 14px;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  background: #0b5bd7;
}

.steps h3,
.why-grid h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.steps p,
.why-grid p,
.about-copy p {
  margin: 0;
  color: #26364d;
  font-size: 13px;
  line-height: 1.55;
}

.about-row {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-illustration {
  position: relative;
  min-height: 300px;
  overflow: visible;
  border-radius: 24px;
  background:
    radial-gradient(circle at 34% 48%, rgba(40, 121, 215, 0.16), transparent 38%),
    linear-gradient(145deg, #d9edff, #f2f8ff);
  box-shadow: 0 18px 40px rgba(7, 91, 216, 0.1);
}

.about-illustration::before,
.about-illustration::after {
  content: "";
  position: absolute;
  background: #7fb3de;
  opacity: 0.45;
}

.about-illustration::before {
  left: 24px;
  bottom: 24px;
  width: 40px;
  height: 86px;
  border-radius: 30px 30px 0 0;
}

.about-illustration::after {
  right: 24px;
  bottom: 22px;
  width: 44px;
  height: 78px;
  border-radius: 30px 30px 0 0;
}

.person {
  position: absolute;
  bottom: 50px;
  width: 64px;
  height: 86px;
  border-radius: 34px 34px 12px 12px;
}

.person::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -32px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f2b176;
}

.person.one {
  left: 74px;
  background: #1560d2;
}

.person.two {
  left: 170px;
  background: #2e8ada;
}

.person.three {
  left: 265px;
  background: #f0aa22;
}

.laptop {
  position: absolute;
  left: 152px;
  bottom: 40px;
  width: 128px;
  height: 66px;
  border-radius: 8px;
  background: #133a74;
}

.about-copy p {
  margin-top: 14px;
  font-size: 15px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.about-highlights div {
  padding: 14px 12px;
  border-radius: 10px;
  background: #f4f8ff;
  border: 1px solid #e3ebf8;
}

.about-highlights strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
}

.about-highlights small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 34, 75, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
  background: #eaf2ff;
  border-radius: 50%;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 0 18px;
  color: #344155;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.about-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 20px;
  padding: 0 24px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  background: #075bd8;
  border-radius: 6px;
}

.why-section {
  margin-bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-grid article {
  padding: 28px 18px 24px;
}

.why-grid article div {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  border-radius: 50%;
  background: #32bf78;
}

.why-grid article:nth-child(2) div {
  background: var(--gold);
}

.why-grid article:nth-child(3) div {
  background: #1669dd;
}

.why-grid article:nth-child(4) div {
  background: #8c52df;
}

.mobile-preview {
  position: sticky;
  top: 24px;
  display: flex;
  justify-content: center;
  max-width: 330px;
  overflow: visible;
}

.mobile-frame {
  width: 300px;
  min-height: 720px;
  padding: 30px 22px 22px;
  color: #fff;
  border: 8px solid #111927;
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 15%, rgba(35, 104, 207, 0.65), transparent 28%),
    linear-gradient(160deg, #05275e, #031632 48%, #fff 49%);
  box-shadow: 0 22px 45px rgba(8, 18, 42, 0.2);
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  font-size: 19px;
  font-weight: 900;
}

.mobile-top span::before {
  content: "⌁";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 6px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 5px;
  transform: rotate(-14deg);
}

.mobile-top i,
.mobile-top i::before,
.mobile-top i::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.mobile-top i {
  position: relative;
}

.mobile-top i::before,
.mobile-top i::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-top i::before {
  top: -7px;
}

.mobile-top i::after {
  top: 7px;
}

.mobile-frame h2 {
  margin: 0 0 10px;
  font-size: 35px;
  line-height: 0.98;
}

.mobile-frame h2 span {
  color: var(--gold);
}

.mobile-frame > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.5;
}

.mobile-frame > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  color: #041634;
  font-weight: 900;
  background: var(--gold);
  border-radius: 7px;
}

.mobile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  padding: 15px;
  color: var(--ink);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(7, 25, 58, 0.16);
}

.mobile-card strong {
  font-size: 24px;
}

.mobile-card small {
  color: #243247;
  font-weight: 800;
}

.tiny-watch {
  width: 90px;
  height: 90px;
}

.mobile-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--ink);
}

.mobile-list p {
  margin: 0;
  display: grid;
  gap: 3px;
  padding: 0 4px;
  font-size: 13px;
}

.mobile-list small {
  color: #48566b;
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.9fr 1.35fr;
  gap: 46px;
  margin-top: 0;
  padding: 34px 56px 18px;
  color: var(--white);
  background: #041634;
}

.footer-brand {
  font-size: 29px;
}

.site-footer p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.socials span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  border-radius: 50%;
  background: #0d5ed7;
}

.socials span:nth-child(2) {
  background: #8c52df;
}

.socials span:nth-child(3) {
  background: #1a97d4;
}

.socials span:nth-child(4) {
  background: #e22b2b;
}

.site-footer form {
  display: flex;
  max-width: 330px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.site-footer input,
.site-footer button {
  min-height: 38px;
  border: 0;
}

.site-footer input {
  min-width: 0;
  flex: 1;
  padding: 0 14px;
}

.site-footer button {
  padding: 0 16px;
  color: #041634;
  font-weight: 900;
  background: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
    padding: 18px 28px;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .auth-layout,
  .about-row {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 500px;
  }

  .bid-phone {
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-preview {
    position: static;
    max-width: none;
  }

  .product-section,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-header,
  .hero,
  .page-section,
  .auth-page-section,
  .dashboard-section,
  .register-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    font-size: 24px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 33%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #041634;
    padding: 20px;
    gap: 0;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a.nav-auth {
    background: var(--gold);
    color: #041634;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    border-bottom: none;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .site-footer {
    padding-bottom: 80px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 78px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .trust-row,
  .product-section,
  .register-section,
  .register-form,
  .steps,
  .about-row,
  .about-highlights,
  .auth-layout,
  .why-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 420px;
  }

  .headphone,
  .handbag,
  .camera,
  .gavel {
    opacity: 0.45;
  }

  .bid-phone {
    width: 206px;
    height: 398px;
  }

  .steps article::after {
    display: none;
  }

  .about-row {
    gap: 28px;
  }

  .about-illustration {
    min-height: 240px;
  }

  .auth-brand-panel {
    text-align: center;
  }

  .auth-features li {
    text-align: left;
  }

  .person.three {
    left: 235px;
  }

  .mobile-frame {
    width: min(100%, 300px);
  }

  .dashboard-grid,
  .dash-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.dashboard-section {
  padding: 40px 60px 56px;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dashboard-head h1 {
  margin: 0 0 8px;
  font-size: 34px;
  color: var(--navy);
}

.dashboard-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.dashboard-cta {
  width: auto;
  height: auto;
  min-height: 48px;
  font-size: 16px;
  white-space: nowrap;
}

.dashboard-message {
  margin: 0 0 24px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.dash-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(6, 29, 67, 0.06);
}

.dashboard-sidebar {
  display: grid;
  gap: 20px;
}

.profile-card {
  text-align: center;
}

.profile-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  place-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(135deg, #075bd8, #0a4cb5);
  border-radius: 50%;
}

.profile-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--navy);
}

.profile-badge {
  display: inline-flex;
  padding: 6px 12px;
  margin-bottom: 18px;
  color: #0b5bd7;
  font-size: 12px;
  font-weight: 800;
  background: #eaf2ff;
  border-radius: 999px;
}

.profile-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  display: grid;
  gap: 12px;
}

.profile-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f7;
}

.profile-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.profile-list strong {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile-list span {
  color: #26364d;
  font-weight: 700;
  word-break: break-word;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  color: #166534;
  font-size: 12px;
  background: #dcfce7;
  border-radius: 999px;
}

.wallet-card .wallet-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.wallet-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.wallet-card h3 {
  margin: 0;
  font-size: 30px;
  color: var(--navy);
}

.wallet-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 12px;
}

.wallet-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.wallet-form {
  display: grid;
  gap: 12px;
}

.dashboard-main {
  display: grid;
  gap: 20px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-box {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(6, 29, 67, 0.05);
}

.stat-box small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-box strong {
  color: var(--navy);
  font-size: 24px;
}

.dash-card-head {
  margin-bottom: 18px;
}

.dash-card-head h2 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--navy);
}

.dash-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dash-table th,
.dash-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #eef2f7;
}

.dash-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: #f8fafc;
}

.dash-table td {
  color: #26364d;
  font-weight: 600;
}

.txn-pill {
  display: inline-flex;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
}

.txn-pill.credit {
  color: #166534;
  background: #dcfce7;
}

.txn-pill.debit {
  color: #991b1b;
  background: #fee2e2;
}

.amount-credit {
  color: #166534;
  font-weight: 800;
}

.amount-debit {
  color: #991b1b;
  font-weight: 800;
}

.empty-state {
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
  background: #f8fafc;
  border-radius: 10px;
}

.empty-state p {
  margin: 0 0 12px;
  font-weight: 600;
}

.empty-state a {
  color: var(--blue);
  font-weight: 800;
}
