:root{
  --gold:#9F8049;
  --bg:#0B0B0B;
  --text:#FFFFFF;
  --muted:#C9C9C9;   /* brighter for accessibility */
  --muted2:#B0B0B0;  /* brighter for accessibility */
  --border:#1E1E1E;
  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --radius: 20px;
  --max: 1200px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial;
}

/* BASE */
*{ box-sizing:border-box; }
html,body{ height:100%; }
a{ color:inherit; text-decoration:none; }

.page{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  overflow-x:hidden;
}

/* THEMES */
.theme-dark{
  background:
    radial-gradient(800px 400px at 75% 20%, rgba(159,128,73,.18), transparent 60%),
    radial-gradient(700px 350px at 20% 10%, rgba(159,128,73,.10), transparent 55%),
    linear-gradient(180deg, #070707 0%, var(--bg) 55%, #050505 100%);
}

.theme-light{
  color:#0B0B0B;
  /* Readable secondary text on white ( :root --muted/--muted2 are for dark bg ) */
  --muted: #3a3a3a;
  --muted2: #454545;
  background:
    radial-gradient(900px 500px at 70% 10%, rgba(159,128,73,.18), transparent 60%),
    radial-gradient(800px 500px at 15% 10%, rgba(159,128,73,.10), transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F6F6 60%, #FFFFFF 100%);
}

/* WRAP */
.wrap{ max-width:var(--max); margin:0 auto; padding:34px 24px 80px; }

/* TOPBAR */
.topbar{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
  padding:10px 0 28px;
  gap:12px 28px;
}

.topbar-start{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}
.toggle-lang{ flex-shrink: 0; }

.brand{ display:flex; align-items:center; gap:12px; min-width:0; }

.brand-logo{
  height:180px; /* BIGGER logo */
  width:auto;
  display:block;
  padding:6px;
  filter: drop-shadow(0 10px 22px rgba(159,128,73,.18));
  transition: transform .15s ease;
}
.brand-logo:hover{ transform: translateY(-1px); }

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:16px;
  letter-spacing:.2px;
  flex-wrap:wrap;
  min-width:0;
}

.theme-dark .nav{ color:#EDEDED; }
.theme-light .nav{ color:#111; }

.nav-link{ opacity:.86; transition: opacity .15s ease; }
.nav-link:hover{ opacity:1; }

.nav-actions{
  display:flex; align-items:center; gap:12px;
}

/* Nav dropdowns (desktop; .nav hidden below 980px in media query) */
.nav-dropdown{
  position: relative;
}
.nav-dropdown-trigger{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-trigger::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
  margin-top: 2px;
}
.nav-dropdown-menu{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  max-width: min(280px, 92vw);
  padding: 8px 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(14,14,14,.98);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 300;
}
.theme-light .nav-dropdown-menu{
  background: #fff;
  border-color: rgba(0,0,0,.1);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-group{
  padding: 10px 16px 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  opacity: .9;
}
.nav-dropdown-group:first-child{
  padding-top: 4px;
}
.nav-dropdown-link{
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 1.35;
  opacity: .88;
  white-space: nowrap;
}
.nav-dropdown-link:hover{
  opacity: 1;
  background: rgba(159,128,73,.14);
}
.theme-light .nav-dropdown-link:hover{
  background: rgba(159,128,73,.12);
}
.nav-dropdown-link.is-muted{
  cursor: default;
  opacity: .5;
  font-size: 13px;
  font-style: italic;
}
.nav-dropdown-link.is-muted:hover{
  background: transparent;
}

/* TOGGLE */
.toggle{
  display:flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: inherit;
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.toggle:active{ transform: translateY(1px); }
.toggle-dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(159,128,73,.12);
}
.toggle-text{ font-size:13px; opacity:.9; }

/* BUTTONS */
.btn{
  border-radius:12px;
  padding:12px 18px;
  font-weight:650;
  font-size:14px;
  letter-spacing:.2px;
  border:1px solid transparent;
  display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, opacity .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background:var(--gold);
  color:#0B0B0B;
  box-shadow: 0 14px 36px rgba(159,128,73,.22);
}
.btn-primary:hover{ opacity:.96; box-shadow: 0 16px 44px rgba(159,128,73,.26); }

.btn-outline{
  background: transparent;
  border-color: rgba(159,128,73,.65);
  color: inherit;
}
.btn-outline:hover{
  border-color: rgba(159,128,73,.95);
  box-shadow: 0 10px 24px rgba(159,128,73,.14);
}

.btn-ml{ margin-left:10px; }

/* HERO */
.hero{
  display:flex;
  flex-direction:column;
  gap:22px;
  padding:10px 0 20px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.home-trust-badges{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.home-trust-badge{
  font-size:12px;
  font-weight:650;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}
.theme-light .home-trust-badge{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.hero-actions--triple{ gap:12px; }

.tag{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--gold);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing: .18em;
  margin-bottom:14px;
}
.tag-dot{
  width:8px; height:8px; border-radius:99px; background:var(--gold);
  box-shadow: 0 0 0 4px rgba(159,128,73,.12);
}

.hero-title{
  margin:0 0 14px;
  font-size:46px; /* reduced */
  line-height:1.12;
  letter-spacing:-.02em;
}
.hero-sub{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.7;
  color: var(--muted);
  max-width:620px;
}

.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:6px; }

.hero-meta{
  display:flex; gap:12px; margin-top:18px; flex-wrap:wrap;
  color:var(--muted2); font-size:13px;
}

.pill{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:10px 12px;
  border-radius:999px;
  display:inline-flex; gap:10px; align-items:center;
}
.theme-light .pill{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.pill-strong{ font-weight:700; }
.pill-text{ opacity:.92; }

/* Roadmap */
.roadmap{
  margin-top:18px;
  max-width:520px;
}
.roadmap-label{
  font-size:12px;
  color: var(--muted2);
  margin-bottom:8px;
}
.roadmap-bar{
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.theme-light .roadmap-bar{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.roadmap-fill{
  height:100%;
  width:33%;
  background: linear-gradient(90deg, rgba(159,128,73,.95), rgba(200,169,106,.95));
  box-shadow: 0 10px 22px rgba(159,128,73,.15);
  animation: load 1.2s ease forwards;
  transform-origin:left;
}
.roadmap-steps{
  display:flex; gap:10px;
  margin-top:8px;
  font-size:12px;
  color: var(--muted2);
}
.step{ opacity:.75; }
.step.active{ opacity:1; color: var(--gold); }

/* HERO VIDEO (home, right column) */
.hero-video-aside{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18,18,18,.96) 0%, rgba(12,12,12,.96) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  padding: 12px;
  position: relative;
  overflow: hidden;
  align-self: center;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.theme-light .hero-video-aside{
  background: rgba(255,255,255,.75);
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
}
.hero-video-aside::before{
  content: "";
  position: absolute;
  inset: -100px -120px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(159,128,73,.16), transparent 60%);
  pointer-events: none;
}
.hero-video-frame{
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: min(48vh, 440px);
  border: 1px solid rgba(255,255,255,.08);
  background: #0a0a0a;
}
.theme-light .hero-video-frame{
  border-color: rgba(0,0,0,.08);
  background: #111;
}
.hero-video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* No native controls / timeline on hover (Chrome, Safari, Edge) */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-timeline,
.hero-video::-webkit-media-controls-current-time-display,
.hero-video::-webkit-media-controls-time-remaining-display,
.hero-video::-webkit-media-controls-mute-button,
.hero-video::-webkit-media-controls-volume-slider,
.hero-video::-webkit-media-controls-fullscreen-button{
  display: none !important;
}
@media (max-width: 980px){
  .hero-video-aside{
    max-width: none;
    justify-self: stretch;
  }
}

/* MOCK */
.mock{
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(18,18,18,.96) 0%, rgba(12,12,12,.96) 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
  min-height:420px;
}
.theme-light .mock{
  background: rgba(255,255,255,.75);
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
}

.mock::before{
  content:"";
  position:absolute; inset:-140px -160px auto auto;
  width:420px; height:420px;
  background: radial-gradient(circle at 30% 30%, rgba(159,128,73,.18), transparent 60%);
  transform: rotate(12deg);
  pointer-events:none;
}

.mock-top{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:14px;
}
.mock-title{
  font-size:13px; opacity:.9;
  display:flex; align-items:center; gap:10px;
}
.spark{
  width:10px; height:10px; border-radius:99px;
  background:var(--gold);
  box-shadow:0 0 0 5px rgba(159,128,73,.12);
}
.mock-chip{
  font-size:12px;
  border:1px solid rgba(255,255,255,.12);
  padding:8px 10px;
  border-radius:999px;
  opacity:.92;
  background: rgba(255,255,255,.03);
}
.theme-light .mock-chip{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
}

.cards{ display:flex; flex-direction:column; gap:14px; }
.card{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:16px;
  position:relative;
  overflow:hidden;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.theme-light .card{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  border-color: rgba(159,128,73,.30);
}
.card-title{
  margin:0 0 8px;
  font-size:14px;
  opacity:.95;
  font-weight:700;
}
.card-value{
  font-size:28px;
  font-weight:800;
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.gold{ color:var(--gold); }

.row{
  display:flex; justify-content:space-between; gap:10px; align-items:center;
  color:var(--muted2);
  font-size:12px;
}
.row-mt{ margin-top:10px; }

.bar{
  margin-top:10px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}
.theme-light .bar{
  background: rgba(0,0,0,.03);
  border-color: rgba(0,0,0,.10);
}
.bar-fill{
  height:100%;
  width:87%;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(159,128,73,.95), rgba(200,169,106,.95));
  box-shadow: 0 10px 22px rgba(159,128,73,.15);
  animation: load 1.3s ease forwards;
  transform-origin:left;
}

@keyframes load{
  from{ transform:scaleX(.1); opacity:.6; }
  to{ transform:scaleX(1); opacity:1; }
}

/* TRUST */
.trust{
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}
.theme-light .trust{ border-top-color: rgba(0,0,0,.08); }

.trust-title{
  margin:0 0 16px;
  font-size:14px;
  font-weight:700;
  opacity:.92;
  letter-spacing:.2px;
}

.feature-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:16px;
}
.feat{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius:16px;
  padding:14px;
  text-align:left;
  display:flex; gap:12px; align-items:flex-start;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.theme-light .feat{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.feat:hover{
  transform: translateY(-2px);
  border-color: rgba(159,128,73,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.icon{
  width:34px; height:34px; border-radius:12px;
  border:1px solid rgba(159,128,73,.35);
  display:grid; place-items:center;
  color:var(--gold);
  background: rgba(159,128,73,.08);
  flex:0 0 auto;
}
.feat-title{ display:block; font-size:13px; margin-bottom:4px; }
.feat-text{ margin:0; font-size:12px; color:var(--muted2); line-height:1.55; }

/* MODULE GRID */
.grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.tile{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:20px;
  position:relative;
  overflow:hidden;
  min-height:120px;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.theme-light .tile{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.tile:hover{
  transform: translateY(-2px);
  border-color: rgba(159,128,73,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.tile-title{ margin:0 0 8px; font-size:15px; font-weight:800; }
.tile-text{ margin:0; color:var(--muted2); font-size:13px; line-height:1.65; }

/* MARKETPLACE */
.marketplace{
  margin-top:26px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:24px;
}
.theme-light .marketplace{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}

.marketplace-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
  padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.theme-light .marketplace-head{ border-bottom-color: rgba(0,0,0,.08); }

.marketplace-title{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:-.01em;
}
.marketplace-sub{
  margin:0;
  color: var(--muted);
  max-width:720px;
  line-height:1.65;
}

.marketplace-actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.mini-search{
  display:flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  overflow:hidden;
}
.theme-light .mini-search{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}

.mini-input{
  border:0;
  outline:none;
  background: transparent;
  color: inherit;
  padding:12px 12px;
  min-width: 290px;
  font-size:13px;
}
.mini-btn{
  border:0;
  cursor:pointer;
  padding:12px 14px;
  font-weight:700;
  background: rgba(159,128,73,.18);
  color: inherit;
}
.mini-btn:hover{ background: rgba(159,128,73,.26); }

.marketplace-body{
  display:grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap:18px;
  padding-top:18px;
}

.listing-rail{
  display:flex;
  gap:14px;
  overflow:auto;
  padding-bottom:8px;
  scroll-snap-type: x mandatory;
}
.listing-rail::-webkit-scrollbar{ height:8px; }
.listing-rail::-webkit-scrollbar-thumb{ background: rgba(159,128,73,.25); border-radius: 999px; }

.listing-card{
  min-width: 240px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  position:relative;
  scroll-snap-align: start;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.theme-light .listing-card{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
}
.listing-card:hover{
  transform: translateY(-2px);
  border-color: rgba(159,128,73,.35);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.listing-thumb{
  height:120px;
  overflow:hidden;
  background:#141414;
  position:relative;
}
.listing-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  object-position:center;
}

.listing-top{
  position:absolute;
  top:10px;
  left:10px;
  right:10px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}

.badge{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.theme-light .badge{
  border-color: rgba(0,0,0,.12);
  background: rgba(255,255,255,.75);
}
.gold-badge{
  border-color: rgba(159,128,73,.35);
  background: rgba(159,128,73,.18);
}

.listing-info{ padding:14px; }
.listing-price{ font-size:20px; font-weight:900; letter-spacing:-.01em; }
.listing-meta{ margin-top:6px; color: var(--muted2); font-size:12px; }
.listing-cta{
  display:inline-block;
  margin-top:10px;
  font-weight:800;
  color: var(--gold);
}
.listing-cta:hover{ text-decoration: underline; }

.marketplace-points{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.home-marketplace-feature-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mp-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.theme-light .mp-point{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.mp-icon{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  border:1px solid rgba(159,128,73,.35);
  background: rgba(159,128,73,.10);
  color: var(--gold);
  flex:0 0 auto;
}
.mp-point b{ display:block; margin-bottom:4px; }
.mp-point p{ margin:0; color: var(--muted2); font-size:13px; line-height:1.6; }
.home-marketplace-panel{
  border-radius:18px;
  border:1px solid rgba(159,128,73,.24);
  background:
    radial-gradient(circle at top right, rgba(159,128,73,.18), transparent 38%),
    rgba(255,255,255,.03);
  padding:20px;
}
.theme-light .home-marketplace-panel{
  background:
    radial-gradient(circle at top right, rgba(159,128,73,.18), transparent 38%),
    rgba(255,255,255,.72);
}
.home-marketplace-kicker{
  margin:0 0 8px;
  color:var(--gold);
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.home-marketplace-panel h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.01em;
}
.home-marketplace-panel p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.home-marketplace-links{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:18px;
}
.home-marketplace-links a{
  color:var(--gold);
  font-weight:800;
}
.home-marketplace-links a:hover{
  text-decoration:underline;
}

/* HOME SECTIONS (content guide) */
.home-block{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
}
.theme-light .home-block{
  border-top-color: rgba(0,0,0,.08);
}
.section-title{
  margin:0 0 12px;
  font-size:28px;
  letter-spacing:-.02em;
  line-height:1.2;
}
.section-lead{
  margin:0;
  max-width:900px;
  color: var(--muted);
  line-height:1.75;
  font-size:15px;
}

.home-what-layout{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap:32px;
  align-items:center;
  margin-top:10px;
}
.home-what-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#101010;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.theme-light .home-what-media{
  border-color:rgba(0,0,0,.08);
  background:#f0f0f0;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.home-what-img{
  display:block;
  width:100%;
  height:auto;
  vertical-align:middle;
}
.home-what-lead{
  max-width:none;
}
@media (max-width:900px){
  .home-what-layout{
    grid-template-columns:1fr;
    gap:22px;
  }
  .home-what-media{
    order:-1;
  }
}

.pillars-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:8px;
}
.pillar-card{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.theme-light .pillar-card{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.pillar-title{ margin:0 0 8px; font-size:16px; letter-spacing:-.01em; }
.pillar-text{ margin:0; color:var(--muted2); font-size:13px; line-height:1.55; }

.steps-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:8px;
}
.step-card{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:20px;
  position:relative;
}
.theme-light .step-card{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.step-num{
  display:inline-grid;
  place-items:center;
  width:28px;height:28px;
  border-radius:10px;
  background: rgba(159,128,73,.18);
  color: var(--gold);
  font-size:13px;
  font-weight:800;
  margin-bottom:10px;
}
.step-label{ margin:0 0 8px; font-size:17px; }
.step-card p{ margin:0; color:var(--muted2); font-size:13px; line-height:1.6; }

.audience-table{
  margin-top:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.theme-light .audience-table{
  border-color: rgba(0,0,0,.08);
}
.audience-head, .audience-row{
  display:grid;
  grid-template-columns: minmax(140px, 1fr) 2fr;
  gap:1px;
  background: rgba(255,255,255,.06);
}
.theme-light .audience-head, .theme-light .audience-row{
  background: rgba(0,0,0,.06);
}
.audience-head{ font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted2); font-weight:800; }
.audience-head .audience-cell{ background: rgba(12,12,12,.85); padding:12px 14px; }
.theme-light .audience-head .audience-cell{ background: rgba(250,250,250,.95); }
.audience-row .audience-cell{
  background: rgba(12,12,12,.55);
  padding:12px 14px;
  font-size:13px;
  line-height:1.5;
}
.theme-light .audience-row .audience-cell{ background: rgba(255,255,255,.85); }
.audience-cell--role{ font-weight:750; }
.audience-cell--help{ color:var(--muted2); }

.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:8px;
}
.testimonial-card{
  margin:0;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.theme-light .testimonial-card{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.testimonial-card p{ margin:0 0 10px; font-size:14px; line-height:1.6; font-style:italic; }
.testimonial-card footer{ font-size:12px; color:var(--muted2); }
.stars{ color: var(--gold); font-size:14px; margin-top:8px; letter-spacing:2px; }

.blog-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:8px;
}
.blog-card{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.theme-light .blog-card{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.blog-meta{ display:flex; gap:10px; flex-wrap:wrap; font-size:11px; color:var(--muted2); text-transform:uppercase; letter-spacing:.06em; }
.blog-cat{ color: var(--gold); }
.blog-title{ margin:0; font-size:16px; line-height:1.35; letter-spacing:-.01em; }
.blog-link{ margin-top:auto; font-weight:800; color: var(--gold); font-size:13px; }
.blog-link:hover{ text-decoration:underline; }

.home-partners-lead{ margin-top:8px; }
.partner-strip{
  margin-top:16px;
  display:flex; flex-wrap:wrap; gap:12px;
  justify-content:center;
}
.partner-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
  font-weight:750;
}
.theme-light .partner-pill{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
}

.footer-cta{
  margin-top:32px;
  padding:40px 28px;
  border-radius:var(--radius);
  border:1px solid rgba(159,128,73,.28);
  background: linear-gradient(180deg, rgba(159,128,73,.10), rgba(255,255,255,.02));
  text-align:center;
}
.theme-light .footer-cta{
  background: linear-gradient(180deg, rgba(159,128,73,.14), rgba(255,255,255,.65));
}
.footer-cta-title{ margin:0 0 10px; font-size:28px; letter-spacing:-.02em; line-height:1.2; }
.footer-cta-sub{ margin:0 auto 18px; max-width:640px; color:var(--muted); line-height:1.65; font-size:15px; }
.footer-cta-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }

.site-footer{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted2);
  font-size:13px;
}
.theme-light .site-footer{ border-top-color: rgba(0,0,0,.08); }
.footer-columns{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:20px 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col-title{
  margin:0 0 10px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color: var(--muted);
}
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-links a{ color:inherit; opacity:.88; }
.footer-links a:hover{ opacity:1; color: var(--gold); }
.footer-social-row{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:center;
}
.theme-light .footer-social-row{ border-top-color: rgba(0,0,0,.08); }
.footer-corp{
  margin-top:18px;
  margin-left:auto;
  margin-right:auto;
  max-width:640px;
  text-align:center;
  line-height:1.6;
  font-size:12px;
}
.footer-corp-sep{ margin:0 6px; opacity:.5; }
.footer-legal{
  margin-top:16px;
  margin-left:auto;
  margin-right:auto;
  max-width:720px;
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  justify-content:center;
  font-size:11px;
}
.footer-legal a{ color:inherit; opacity:.82; }
.footer-legal a:hover{ opacity:1; color: var(--gold); }

/* VISION */
.vision{
  margin-top:26px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:44px 30px;
  text-align:center;
}
.theme-light .vision{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.vision-label{
  color:var(--gold);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  margin-bottom:14px;
  display:inline-block;
}
.vision-title{
  margin:0 0 10px;
  font-size:34px;
  letter-spacing:-.02em;
  line-height:1.2;
}
.vision-text{
  margin:0 auto;
  max-width:820px;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}
.vision-actions{ margin-top:18px; }

/* FOOTER */
.footer{
  margin-top:26px;
  margin-left:auto;
  margin-right:auto;
  padding-top:18px;
  max-width:min(560px,100%);
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  text-align:center;
  color:var(--muted2);
  font-size:13px;
}
.theme-light .footer{ border-top-color: rgba(0,0,0,.08); }

.foot-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.foot-links a{ opacity:.85; }
.foot-links a:hover{ opacity:1; }

.social{ display:flex; gap:10px; }
.social a{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  display:grid; place-items:center;
  opacity:.9;
}
.theme-light .social a{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
}
.social a:hover{ opacity:1; border-color: rgba(159,128,73,.35); }

/* ANIMATION */
.fadeUp{
  opacity:0;
  transform: translateY(10px);
  animation: fadeUp .7s ease forwards;
}
.d1{ animation-delay:.05s; }
.d2{ animation-delay:.12s; }
.d3{ animation-delay:.18s; }
.d4{ animation-delay:.24s; }
@keyframes fadeUp{
  to{ opacity:1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .pillars-grid{ grid-template-columns:1fr 1fr; }
  .steps-row{ grid-template-columns:1fr; }
  .audience-head, .audience-row{ grid-template-columns:1fr; }
  .audience-head .audience-cell--help{ display:none; }
  .testimonial-grid{ grid-template-columns:1fr; }
  .blog-cards{ grid-template-columns:1fr; }
  .footer-columns{ grid-template-columns:1fr 1fr; }
  .hero-title{ font-size:40px; }
  .feature-row{ grid-template-columns:1fr 1fr; }
  .grid{ grid-template-columns:1fr; }
  .marketplace-body{ grid-template-columns:1fr; }
  .home-marketplace-feature-grid{ grid-template-columns:1fr; }
  .nav{ display:none; }
}

@media (max-width: 540px){
  .wrap{ padding:24px 16px 64px; }
  .hero-title{ font-size:34px; }
  .brand-logo{ height:68px; }
  .mini-input{ min-width: 220px; }
  .pillars-grid{ grid-template-columns:1fr; }
  .footer-columns{ grid-template-columns:1fr; }
  .home-trust-badges{ justify-content:flex-start; }
}

/* Early Access modal – hidden until .is-open */
.early-access-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.early-access-overlay.is-open{
  opacity: 1;
  visibility: visible;
}
.early-access-modal{
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: var(--bg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.theme-light .early-access-modal{
  border-color: rgba(0,0,0,.12);
  background: #fff;
}
.early-access-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, background .15s ease;
}
.early-access-close:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.theme-light .early-access-close:hover{ background: rgba(0,0,0,.06); }
.early-access-title{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.early-access-sub{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.early-access-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.early-access-label{
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.early-access-input{
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.theme-light .early-access-input{
  border-color: rgba(0,0,0,.15);
  background: rgba(0,0,0,.03);
}
.early-access-input::placeholder{ color: var(--muted2); }
.early-access-input:focus{
  border-color: var(--gold);
}
.early-access-submit{ margin-top: 4px; }

.auth-modal-shell{
  max-width: 440px;
  width: calc(100vw - 32px);
}
.auth-tabs{
  display: flex;
  gap: 0;
  margin: 16px 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.theme-light .auth-tabs{
  border-color: rgba(0,0,0,.12);
}
.auth-tab{
  flex: 1;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 750;
  border: none;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s ease, color .15s ease;
}
.theme-light .auth-tab{
  background: rgba(0,0,0,.04);
}
.auth-tab:hover{
  color: var(--text);
}
.auth-tab.is-active{
  background: rgba(159,128,73,.22);
  color: var(--gold);
}
.theme-light .auth-tab.is-active{
  background: rgba(159,128,73,.18);
}
.auth-signup-intro{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.auth-signup-btn{
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
.auth-signup-note{
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted2);
}
.auth-login-form .early-access-label{ margin-top: 4px; }
.auth-login-form .early-access-label:first-of-type{ margin-top: 0; }
.auth-login-error{
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #f87171;
  font-size: 14px;
  line-height: 1.45;
}
.theme-light .auth-login-error{
  color: #b42318;
  background: rgba(220, 53, 69, 0.08);
}
.auth-forgot-link{
  display: inline-block;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}
.auth-forgot-link:hover{
  opacity: 0.85;
}
.auth-reset-panel{
  display: block;
}
.auth-reset-copy{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.auth-reset-status{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.auth-reset-status.is-error{
  color: #f87171;
}
.auth-reset-status.is-success{
  color: #86efac;
}
.theme-light .auth-reset-status.is-error{
  color: #b42318;
}
.theme-light .auth-reset-status.is-success{
  color: #166534;
}
.auth-reset-back{
  margin-top: 10px;
  width: 100%;
}
.early-access-success{ text-align: center; }
.early-access-success-text{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.early-access-success-text strong{ color: var(--text); }
.early-access-close-btn{ margin: 0 auto; }

/* Demo video modal – same overlay pattern, stays on page */
.demo-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.demo-overlay.is-open{
  opacity: 1;
  visibility: visible;
}
.demo-modal{
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: var(--bg);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.theme-light .demo-modal{
  border-color: rgba(0,0,0,.12);
  background: #111;
}
.demo-modal .early-access-close{
  top: 10px;
  right: 10px;
  z-index: 2;
}
.demo-video-wrap{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.demo-iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.demo-fallback{
  margin: 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
}
.demo-fallback a{ color: var(--gold); }
.demo-fallback a:hover{ text-decoration: underline; }

/* =========================
   ABOUT PAGE
========================= */

.about-hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
  margin-top:6px;
}

.about-hero-left{
  padding:22px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.theme-light .about-hero-left{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}

.about-title{
  margin:10px 0 10px;
  font-size:38px;
  line-height:1.16;
  letter-spacing:-.02em;
}

.about-sub{
  margin:0;
  color: var(--muted);
  line-height:1.75;
  font-size:15px;
  max-width: 720px;
}

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

.about-hero-right{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.about-kpi{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:16px;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.theme-light .about-kpi{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.about-kpi:hover{
  transform: translateY(-2px);
  border-color: rgba(159,128,73,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.about-kpi-label{
  font-size:12px;
  color: var(--muted2);
  margin-bottom:8px;
}
.about-kpi-value{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.01em;
}
.about-kpi-note{
  margin-top:8px;
  font-size:13px;
  color: var(--muted);
  line-height:1.6;
}

.about-section{
  margin-top:18px;
  padding:22px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.theme-light .about-section{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}

.about-section-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  flex-wrap:wrap;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:14px;
}
.theme-light .about-section-head{
  border-bottom-color: rgba(0,0,0,.08);
}

.about-h2{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
}

.about-muted{
  margin:0;
  color: var(--muted);
  line-height:1.65;
  max-width: 780px;
  font-size:13px;
}

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

.about-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.about-card{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:16px;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.theme-light .about-card{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.about-card:hover{
  transform: translateY(-2px);
  border-color: rgba(159,128,73,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.about-card-title{
  font-size:13px;
  font-weight:900;
  margin-bottom:8px;
}
.about-card-text{
  color: var(--muted);
  line-height:1.7;
  font-size:13px;
}

.about-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.about-list-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.theme-light .about-list-item{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}

.about-bullet{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(159,128,73,.35);
  background: rgba(159,128,73,.10);
  color: var(--gold);
  display:grid;
  place-items:center;
  font-weight:900;
  flex:0 0 auto;
}

.about-cta{
  margin-top:18px;
  border-radius: var(--radius);
  border:1px solid rgba(159,128,73,.22);
  background: radial-gradient(700px 280px at 20% 0%, rgba(159,128,73,.16), transparent 60%),
              rgba(255,255,255,.02);
  padding:18px;
}
.theme-light .about-cta{
  border-color: rgba(159,128,73,.22);
  background: radial-gradient(700px 280px at 20% 0%, rgba(159,128,73,.14), transparent 60%),
              rgba(0,0,0,.02);
}

.about-cta-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.theme-light .about-cta-inner{
  border-color: rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}

.about-cta-label{
  font-size:12px;
  color: var(--muted2);
  margin-bottom:6px;
}
.about-cta-title{
  font-size:15px;
  font-weight:900;
  letter-spacing:-.01em;
}
.about-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .about-hero{ grid-template-columns: 1fr; }
  .about-grid-3{ grid-template-columns: 1fr; }
  .about-grid-2{ grid-template-columns: 1fr; }
}

@media (max-width: 540px){
  .about-title{ font-size:32px; }
}
