@import url('https://fonts.cdnfonts.com/css/lemon-milk');

/* =============================================
   TOKENS
   ============================================= */
:root {
  --gold:        #ffce33;
  --gold-dim:    #baa25c;
  --gold-border: rgba(255,206,51,0.30);
  --bg:          #0e0e10;
  --card:        #1a1a1e;
  --card2:       #222228;
  --border:      rgba(255,255,255,0.07);
  --text:        #ffffff;
  --muted:       rgba(255,255,255,0.60);
  --dim:         rgba(255,255,255,0.35);
  --r:           16px;
  --r-lg:        24px;
  --r-pill:      999px;
  --font-d:      'Lemon', cursive;
  --font-h:      'LEMON MILK', 'Lemon', cursive;
  --font-b:      'Montserrat', system-ui, sans-serif;
}

/* =============================================
   RESET
   ============================================= */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; overflow-x:hidden; }
body { font-family:var(--font-b); color:var(--text); background: linear-gradient(190deg, #000000 0%, #292929 100%); overflow-x:hidden; }
img,svg { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
strong { font-weight:800; }

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.wrap {
  max-width:1480px;
  margin-inline:auto;
  padding-inline:24px;
}

.section { padding-block:20px; }

/* Section heading — uses LEMON MILK (Figma spec: 64px, weight 700) */
.section-heading {
  font-family:var(--font-h);
  font-size:clamp(32px, 4.5vw, 54px);
  font-weight:700;
  line-height:1.05;
  letter-spacing:-0.5px;
  text-transform:none;
  color:var(--text);
  margin-bottom:20px;
  text-shadow: 6px 5px 4px rgba(0, 0, 0, 0.9);
}

/* Display variant — uses Lemon font (for hero-style headings) */
.section-heading--display {
  font-family:var(--font-d);
  font-weight:400;
}

.section-body {
  font-size:clamp(15px, 1.5vw, 20px);
  font-weight:400;
  line-height:1.65;
  color:var(--muted);
}

/* Dark card — reused everywhere for copy panels */
.dark-card {
  background:var(--card);
  border-radius:var(--r-lg);
  padding:32px 28px;
  border:1px solid var(--border);
}

/* Frosted glass card — Figma: bg rgba(93,93,93,0.28), r:50, backdrop-filter blur(12px) */
.glass-card {
  background:rgba(93,93,93,0.28);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-radius:50px;
  padding:32px 40px;
}

/* Store badges */
.badge {
  display:inline-block;
  line-height:0;
  border-radius:12px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.badge:hover {
  box-shadow:
    0 0 0 -2px rgba(255, 206, 51, 0.85),
    0 0 14px 2px rgba(255, 206, 51, 0.65),
    0 0 32px 6px rgba(255, 206, 51, 0.30);
  transform: translateY(-2px);
}
.badge img { width:auto; height: 60px; display:block; }
@media (max-width: 639px) {
  .badge { flex:1 1 0; min-width:0; }
  .badge img { width:100%; height:auto; }
}
.badge--sm img { height:42px; }
.badge-row { display:flex; gap:20px; align-items:center; margin-top:24px; }
.badge-row--center { justify-content:center; }

/* Shared stat components */
.cc__stats {
  display:flex;
  gap:4px;
  background:rgba(0,0,0,0.25);
  border-radius:10px;
  padding:10px 6px;
  margin-top:12px;
}
.stat { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; min-width:0; }
.stat__v { font-size:15px; font-weight:700; color:var(--text); line-height:1; }
.stat--gold .stat__v { color:var(--gold); }
.stat--blue .stat__v { color:#5abceb; }
.stat__l {
  font-size:6px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.3px; color:var(--muted); text-align:center;
  word-break:break-all; line-height:1.2;
  max-width:100%;
}
.stat--blue .stat__l { color:#5abceb; }

.cc__items {
  display:flex; gap:4px;
  background:rgba(0,0,0,0.35);
  border-radius:10px; padding:8px 6px;
  margin-top:8px;
}
.item { flex:1; display:flex; flex-direction:column; align-items:center; gap:2px; min-width:0; }
.item__v { font-size:15px; font-weight:700; color:var(--text); line-height:1; }
.item__l {
  font-size:6px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.3px; color:var(--muted); text-align:center;
  word-break:break-all; line-height:1.2;
}

/* CSS Phone mockup — Dynamic Island pill style */
.css-phone { display:flex; justify-content:center; }

.css-phone__shell {
  position:relative;
  width:260px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.9),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  overflow:hidden;
}

/* Hide old notch */
.css-phone__notch { display:none; }

.css-phone__screen {
  overflow:hidden;
  line-height:0;
  position:relative;
  z-index:1;
}
.css-phone__screen img {
  width:100%;
  display:block;
}

/* Legacy phone-mockup (kept for safety) */
.phone-mockup { position:relative; width:280px; }
.pm-frame { position:relative; z-index:1; width:100%; border-radius:36px; }
.pm-screen { position:absolute; top:1.8%; left:2%; width:96%; z-index:2; border-radius:32px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position:fixed;
  top:16px; left:50%;
  transform:translateX(-50%);
  z-index:100;
  width:calc(100% - 32px);
  max-width:1480px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter:blur(4px);
  border-radius:var(--r-pill);
  border:1px solid rgba(255,255,255,0.09);
  transition:border-radius .25s ease;
}
.site-header:has(.mobile-nav.is-open) { border-radius:20px; }

.site-header__inner {
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:18px 24px 18px 24px; gap:20px;
}
.site-header__logo { justify-self:start; }
.site-header__nav  { justify-self:center; margin-left: auto; }
.hamburger         { justify-self:end; }

/* Below desktop: nav is hidden, give the logo natural width and pin hamburger right */
@media (max-width: 1023px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
}

.logo-img { height:50px; width:auto; max-width: max-content; }

.site-header__nav { display:none; gap:28px; align-items:center; }

.nav-link { font-size:14px; font-weight:600; color:var(--text); transition:color .2s; white-space:nowrap; }
.nav-link:hover { color:var(--muted); }
.nav-link--active { background:var(--gold-dim); color:#fff; padding:6px 13px; border-radius:var(--r-pill); }

.hamburger { display:flex; flex-direction:column; gap:5px; width:40px; height:23px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; height:2px; background:var(--text); border-radius:2px; transition:transform .3s,opacity .3s; }
.hamburger.is-open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity:0; }
.hamburger.is-open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav { display:none; flex-direction:column; padding:8px 24px 16px; border-top:1px solid var(--border); gap:0; }
.mobile-nav.is-open { display:flex; }
.mobile-nav a { padding:12px 0; font-weight:600; font-size:15px; border-bottom:1px solid var(--border); }
.mobile-nav a:hover { color:var(--gold); }

/* =================================== ==========
   HERO
   ============================================= */
.hero { position:relative; min-height:100svh; display:flex; align-items:center; overflow:visible; padding-top:80px; z-index:2; }

.hero__bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero__bg img { width:100%; height:100%; object-fit:cover; object-position:center top; }

.hero::before {
  content:''; position:absolute; inset:0; z-index:1; overflow:hidden;
}

.hero__inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr;
  gap:48px;
  padding-block:80px 60px; width:100%;
}

/* Hero title uses Lemon font (Figma: "Lemon", 64px, weight 400) */
.hero__title {
  font-family:var(--font-h);
  font-size:clamp(36px, 5.5vw, 64px);
  font-weight:400; line-height:1.05;
  letter-spacing:0; text-transform:uppercase;
  color:#fff; margin-bottom:30px;
}

/* Figma: 24px Montserrat, gold — 30px gap after */
.hero__sub { font-size:clamp(16px,2vw,24px); font-weight:400; color:var(--gold); line-height:1.4; margin-bottom:30px; }
/* Figma: 16px Montserrat, white — 60px gap to badges */
.hero__body { font-size:clamp(14px,1.2vw,16px); color:var(--muted); line-height:1.7; }
/* Figma: 60px gap between body text and badges */
.hero__copy .badge-row { margin-top:60px; }
/* Hero copy card — Figma: r:50, bg:#5d5d5d at 28% opacity, padding 48 48 141 41 */
.hero__copy {
  background:rgba(255, 255, 255, 0.05);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-radius:50px;
  padding:48px 41px 70px 48px;
  margin:50px;
}

.hero__phone { display:flex; justify-content:center; position:relative; z-index:3; }

/* Hero splash (mobile-only) — desktop hides it */
.hero__splash { display:none; }

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity:0.85; }
  50%      { transform: translateY(8px); opacity:1; }
}

/* Mobile: keep hero content within the viewport */
@media (max-width: 639px) {
	.features { padding-bottom: 0!important; }
  .hero { min-height:auto; padding-top:0; }
  /* Stop the time-of-day bg from stretching past the splash viewport */
  .hero__bg { inset:auto 0 auto 0; top:0; height:100svh; }
  .hero__inner { padding-block:0 40px; gap:32px; }
  .hero__splash {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    min-height:100svh;
    padding:96px 0 28px;
    text-align:center;
  }
  .hero__splash-tagline {
    font-family:var(--font-h);
    font-size:clamp(18px, 5.2vw, 28px);
    font-weight:700;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    line-height:1.25;
    margin:auto 16px;
    text-shadow:0 2px 14px rgba(0,0,0,0.75), 0 0 24px rgba(0,0,0,0.55);
  }
  .hero__scroll {
    appearance:none;
    width:46px; height:46px;
    display:inline-flex; align-items:center; justify-content:center;
    background:rgba(0,0,0,0.35);
    border:1px solid rgba(255,255,255,0.18);
    color:var(--gold);
    border-radius:999px;
    cursor:pointer;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    animation:hero-scroll-bounce 1.6s ease-in-out infinite;
    transition:background .2s, transform .2s;
  }
  .hero__scroll:hover,
  .hero__scroll:focus-visible { background:rgba(255,206,51,0.18); outline:none; }
  .hero__copy { margin:0; padding:32px 20px 40px; border-radius:32px; }
  /* Darker copy backdrop when daylight banner is active */
  :root[data-hero-slot="morning"] .hero__copy,
  :root[data-hero-slot="midday"] .hero__copy { background:rgba(0,0,0,0.45); }
  .hero__title,
  .hero__sub,
  .hero__body { overflow-wrap:anywhere; word-break:break-word; }
  .hero__copy .badge-row { margin-top:32px; flex-wrap:nowrap; justify-content:center; gap:12px; }
  .css-phone { display:none; }

  /* Mobile: center-align copy in hero + main content cards */
  .hero__copy,
  .trade__copy.glass-card,
  .buysell__copy.glass-card,
  .cr-info,
  .auctions__copy.glass-card,
  .col-float-card.glass-card,
  .confidence__copy.glass-card { text-align:center; }

  /* Mobile: collections rows become horizontal sliders (like buysell) */
  .col-row { grid-template-columns:1fr; gap:12px; }
  .col-cards {
    display:flex;
    grid-template-columns:none;
    gap:16px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding-bottom:8px;
  }
  .col-cards::-webkit-scrollbar { display:none; }
  .col-cards .col-card { flex:0 0 160px; min-width:160px; }
}

/* =============================================
   TRADE WITH COLLECTORS
   ============================================= */
/* Trade section overlaps the hero phone by ~30% */
.trade { position:relative; z-index:1; margin-top:-90px; padding-top:140px; }
@media (max-width: 639px) {
  .trade { padding-top:40px; }
}
.trade__inner { display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }

.notif-chip {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--card2); border:1px solid var(--border);
  border-radius:var(--r-pill); padding:8px 16px;
  font-size:13px; font-weight:600; color:var(--gold); margin-bottom:20px;
}

/* Three-card stage — fan/stack overlap layout */
.cc-stage {
  position:relative;
  height:340px;
  width:100%;
  max-width:420px;
  margin:0 auto;
}

.cc {
  background:var(--card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:16px 14px; position:absolute;
}
/* Back-left card */
.cc--left {
  width:56%;
  left:0;
  top:32px;
  z-index:1;
  transform:rotate(-4deg);
  box-shadow:4px 0 24px rgba(0,0,0,0.55);
  opacity:0.85;
}
/* Front-center card */
.cc--center {
  width:60%;
  left:50%;
  transform:translateX(-50%);
  top:0;
  z-index:3;
  box-shadow:0 12px 48px rgba(0,0,0,0.7);
}
/* Back-right card */
.cc--right {
  width:56%;
  right:0;
  top:32px;
  z-index:1;
  transform:rotate(4deg);
  box-shadow:-4px 0 24px rgba(0,0,0,0.55);
  opacity:0.85;
}

.cc__top { display:flex; align-items:center; gap:10px; margin-bottom:4px; }
.cc__top--center { flex-direction:column; align-items:center; gap:6px; margin-bottom:8px; }
.cc__av { width:44px; height:44px; border-radius:50%; overflow:hidden; flex-shrink:0; border:2px solid rgba(255,255,255,0.12); }
.cc__av--lg { width:56px; height:56px; }
.cc__av img { width:100%; height:100%; object-fit:cover; }
.cc__info--center { text-align:center; }
/* Figma: 20px Montserrat Bold */
.cc__name  { font-size:15px; font-weight:700; color:var(--text); line-height:1; }
/* Figma: 16px Montserrat, gold */
.cc__handle { font-size:11px; font-weight:500; color:var(--gold); margin-top:2px; }
/* Figma: 16px Montserrat, grey #979797 */
.cc__loc { font-size:10px; color:var(--muted); margin-top:1px; }

.trade-toasts { display:flex; justify-content:flex-start; gap:16px; margin-top:24px; flex-wrap:wrap; }
.toast {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--card2); border:1px solid var(--border);
  border-radius:var(--r-pill); padding:8px 14px;
  font-size:12px; font-weight:600; color:var(--gold);
}

/* =============================================
   BUY AND SELL
   ============================================= */
.glow-line { position: absolute; right: -12px; margin-bottom: -44px; }
@media (max-width: 639px) {
  .glow-line { display:none; }
}
.buysell__inner { display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }
.buysell__copy { max-width:100%; }

.buysell__cards {
  display:flex;
  gap:16px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding-bottom:8px;
}
.buysell__cards::-webkit-scrollbar { display:none; }
.buysell__cards .bs-card { flex:0 0 200px; min-width:200px; text-align:center; }

.bs-card { }
/* Figma: 24px LEMON MILK Bold, gold */
.bs-card__label {
  text-align:center;
  font-family:var(--font-h);
  font-size:clamp(14px,1.5vw,24px);
  font-weight:700;
  color:var(--gold);
  letter-spacing:0.5px;
  padding:12px 17px 8px;
  border-radius:100px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  display: inline-block;
  margin-bottom: 14px;
}
.bs-card__img { overflow:hidden; aspect-ratio:2/3; border: 1px solid var(--border);  border-radius: 50px; padding: 10px 20px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(4px); }
.bs-card__img img { width:100%; height:100%; border-radius: 5px; object-fit:contain; display:block; }
.bs-card__foot { padding:8px 10px; display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--border); }
.bs-stars { font-size:11px; color:var(--gold); letter-spacing:1px; }
/* Figma: 16px Montserrat SemiBold */
.bs-grade { font-size:12px; font-weight:600; color:var(--text); }

/* =============================================
   COLLECTOR RATING — 2 columns: visual left, copy right
   ============================================= */
.cr-section { }
.cr-section__inner { display:grid; grid-template-columns:1fr; gap:24px; align-items:center; }

/* --- Visual Composition --- */
.cr-visual { width:100%; }
.cr-compose {
  position:relative;
  width:100%;
  aspect-ratio:968/553;
  max-width:968px;
}

/* A) Profile Card */
.cr-profile {
  position:absolute;
  left:0; top:0;
  width:41.7%; /* 404/968 */
  height:100%;
  background:#1a1a1e;
  border-radius:21px;
  overflow:hidden;
  z-index:3;
  border:1px solid rgba(255,255,255,0.06);
}

/* Hexagonal grid pattern */
.cr-hex-bg {
  position:absolute;
  inset:0;
  opacity:0.08;
  background-image:
    linear-gradient(30deg, #888 12%, transparent 12.5%, transparent 87%, #888 87.5%, #888),
    linear-gradient(150deg, #888 12%, transparent 12.5%, transparent 87%, #888 87.5%, #888),
    linear-gradient(30deg, #888 12%, transparent 12.5%, transparent 87%, #888 87.5%, #888),
    linear-gradient(150deg, #888 12%, transparent 12.5%, transparent 87%, #888 87.5%, #888),
    linear-gradient(60deg, #999 25%, transparent 25.5%, transparent 75%, #999 75%, #999),
    linear-gradient(60deg, #999 25%, transparent 25.5%, transparent 75%, #999 75%, #999);
  background-size:40px 70px;
  background-position:0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
}

.cr-profile__content {
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:20px 14px 16px;
  height:100%;
}

.cr-avatar {
  width:80px; height:80px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid rgba(90,188,235,0.4);
  flex-shrink:0;
}
.cr-avatar img { width:100%; height:100%; object-fit:cover; }

.cr-star { margin-top:6px; opacity:0.7; }
.cr-star svg { width:28px; height:28px; }

.cr-profile__name {
  font-size:14px; font-weight:700; color:var(--text);
  margin-top:6px; line-height:1;
}
.cr-profile__handle {
  font-size:10px; font-weight:500; color:var(--gold);
  margin-top:3px;
}
.cr-profile__loc {
  font-size:9px; color:var(--muted);
  margin-top:2px;
}

/* Stats row */
.cr-stats-row {
  display:flex;
  align-items:center;
  width:88%;
  background:#5d5d5d;
  border-radius:19px;
  padding:10px 8px;
  margin-top:auto;
  gap:0;
}
.cr-stat { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; }
.cr-stat__v { font-size:13px; font-weight:700; color:var(--text); line-height:1; }
.cr-stat__l { font-size:6px; font-weight:700; text-transform:uppercase; letter-spacing:0.3px; color:var(--muted); text-align:center; line-height:1.2; }
.cr-stat--blue .cr-stat__v { color:#5abceb; }
.cr-stat--blue .cr-stat__l { color:#5abceb; }
.cr-stat-divider { width:1px; height:28px; background:rgba(255,255,255,0.2); flex-shrink:0; }

/* Items row */
.cr-items-row {
  display:flex;
  width:88%;
  background:#000;
  border-radius:19px;
  padding:8px;
  margin-top:8px;
}
.cr-item { flex:1; display:flex; flex-direction:column; align-items:center; gap:2px; }
.cr-item__v { font-size:13px; font-weight:700; color:var(--text); line-height:1; }
.cr-item__l { font-size:6px; font-weight:700; text-transform:uppercase; letter-spacing:0.3px; color:var(--muted); text-align:center; line-height:1.2; }

/* Junction dot */
.cr-junction-dot {
  position:absolute;
  width:6.3%; /* 61/968 */
  aspect-ratio:1;
  border-radius:50%;
  background:#5d5d5d;
  border:2px solid rgba(255,255,255,0.1);
  left:38%; top:3%;
  z-index:4;
}

/* B) Extended Panels */
.cr-ext-upper {
  position:absolute;
  left:56.6%; /* 548/968 */
  top:17.2%; /* 95/553 */
  width:51.4%; /* 498/968 */
  height:22.4%; /* 124/553 */
  background:#5d5d5d;
  border-radius:19px;
  display:flex;
  align-items:center;
  padding:12px 16px;
  z-index:2;
}
.cr-ext-col { flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; }
.cr-ext__v { font-size:clamp(12px,1.4vw,18px); font-weight:700; color:var(--text); line-height:1; }
.cr-ext__l { font-size:clamp(6px,0.7vw,10px); font-weight:600; text-transform:uppercase; letter-spacing:0.3px; color:var(--muted); text-align:center; }
.cr-ext-divider { width:1px; height:50%; background:rgba(255,255,255,0.2); flex-shrink:0; }

/* C) Connector line */
.cr-connector {
  position:absolute;
  left:41%; top:30%;
  width:2px; height:30%;
  background:linear-gradient(180deg, rgba(90,188,235,0.5), rgba(90,188,235,0.15));
  z-index:2;
  transform:rotate(15deg);
  transform-origin:top center;
}

/* D) Score Display */
.cr-score-display {
  position:absolute;
  left:56.6%; /* 548/968 */
  top:48.3%; /* 267/553 */
  width:51.4%; /* 498/968 */
  z-index:2;
}
.cr-ext-lower {
  background:#5d5d5d;
  border-radius:19px;
  padding:20px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}
.cr-score-label {
  font-family:var(--font-b);
  font-size:clamp(10px,1.1vw,15px);
  font-weight:500;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:1px;
}
.cr-score-number {
  font-size:clamp(28px,3.6vw,48px);
  font-weight:800;
  line-height:1;
  background:linear-gradient(180deg,#b9eaff 0%,#5abceb 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.cr-score-sub {
  font-size:clamp(12px,1.3vw,20px);
  font-weight:400;
  color:var(--muted);
}

/* Progress bar */
.cr-progress {
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  margin-top:10px;
}
.cr-progress__min,
.cr-progress__max {
  font-size:clamp(10px,0.9vw,14px);
  font-weight:600;
  color:var(--muted);
  flex-shrink:0;
}
.cr-progress__track {
  flex:1;
  height:10px;
  background:rgba(0,0,0,0.35);
  border-radius:999px;
  overflow:hidden;
}
.cr-progress__fill {
  width:50%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#5abceb,#b9eaff);
}

/* --- Copy Card (right side) --- */
.cr-info {
  background:rgba(93,93,93,0.28);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-radius:50px;
  padding:48px 36px;
}
/* Figma: 20px LEMON MILK Bold, gold */
.cr-safety-badge {
  display:inline-block;
  color:var(--gold);
  border-radius:var(--r-pill);
  font-family:var(--font-h);
  font-size:clamp(12px,1.2vw,20px);
  font-weight:700;
  letter-spacing:0.5px;
  padding:6px 18px;
  margin-bottom:16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}
.cr-heading { font-size:clamp(30px,4.5vw,64px); margin-bottom:16px; }
/* Figma: 20px Montserrat, white/muted */
.cr-body-text {
  font-size:clamp(14px,1.3vw,20px);
  font-weight:400;
  color:var(--muted);
  line-height:1.65;
}

/* =============================================
   LIVE AUCTIONS
   ============================================= */
.auctions { }
.auctions__inner { display:grid; grid-template-columns:1fr; gap:48px; align-items:start; }
.auctions__copy { max-width:400px; }

.auction-cards { display:grid; grid-template-columns:1fr; gap:16px; }

.ac { overflow:hidden; display:flex; flex-direction:column; }
.ac__img { overflow:hidden; aspect-ratio:3/4; background:#111; }
.ac__img img { width:100%; height:100%; border-radius:10px; object-fit:contain; }
.ac__body { margin-top: 20px; display:flex; flex-direction:column; gap:8px; }
.ac__timer-row { display:flex; justify-content:space-between; align-items:center; border: 1px solid #DD1837; border-radius: 18px;background: #1F1315; padding: 15px 10px;}
/* Figma: 16px Montserrat Bold, color #dd1837 */
.ac__timer { font-size:13px; font-weight:700; color:#dd1837; text-shadow: 0px 0px 7px rgba(149, 75, 87, 1); }
/* Figma: 16px Montserrat Bold, grey */
.ac__bids  { font-size:13px; font-weight:700; color:var(--muted); }
/* Figma: 16px Montserrat Bold */
.ac__info {
  margin-top: 5px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
}
.ac__name  { margin-bottom: 14px; font-size:17px; font-weight:700; line-height:1.2; color:var(--text); }
.ac__meta  { display:flex; gap:8px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
/* Pills (e.g. NM / SEALED): dark grey, rounded-full */
.ac__grade,
.ac__qty {
      display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #cfcfcf;
    background: #161616;
    border: 1px solid #252525;
    border-radius: 5px;
    padding: 6px 14px;
}
.ac__qty {
    font-size: 10px;
    font-weight: 100;
    color: #ffce33;
    background: #1d1a09;
    border: 1px solid #1d1a09;
    border-radius: 5px;
    padding: 6px 14px;
}
/* Big gold price, right-aligned in the meta row */
.ac__price {
  font-family:var(--font-h);
  font-size:22px; font-weight:700; line-height:1;
  background:linear-gradient(180deg,#ffce33 0%,#a87a1c 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-left:auto;
}
.ac__seller { margin-top:14px; padding-top:12px; display:flex; align-items:center; gap:10px; border-top:1px solid rgba(255,255,255,0.08); }
.ac__sav { width:30px; height:30px; border-radius:50%; object-fit:cover; flex-shrink:0; background:#262626; }
.ac__sinfo { display:flex; flex-direction:column; gap:2px; min-width:0; }
.ac__sname { font-size:13px; font-weight:700; color:var(--text); text-transform:uppercase; letter-spacing:0.3px; }
.ac__sloc  { font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:0.3px; }
.ac__cr    { color:var(--text); font-weight:500; margin-right:4px; }
.ac__cr_small    { font-size:7px; }

/* =============================================
   COLLECTIONS
   ============================================= */
.collections { }
.collections__inner { position:relative; }
.col-rows { display:flex; flex-direction:column; gap:50px; }

.col-row { display:grid; grid-template-columns:140px 1fr; gap:16px; align-items:center; }

/* Figma: 32px LEMON MILK Bold, gold */
.col-label {
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--font-h);
  border-radius:var(--r-pill);
  font-size:clamp(14px, 2vw, 32px);
  font-weight:700;
  padding:10px 18px;
  text-align:center;
  white-space:nowrap;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}
.col-label--pokemon  { color:#ffce33; border-color:#ffce33; }
.col-label--onepiece { color:#ff7043; border-color:#ff7043; }
.col-label--dbs      { color:#f5c842; border-color:#f5c842; }

.col-cards { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }

.col-card { border-radius:10px; overflow:hidden; aspect-ratio:2/3; background:var(--card); }
.col-card img { width:100%; height:100%; object-fit:contain; display:block; }

/* Floating copy card */
.col-float-card {
  margin-top:24px;
  padding:32px 28px;
}
.col-overlay__h { font-size:clamp(18px,2.5vw,30px); margin-bottom:8px; }
/* Figma: 20px Montserrat */
.col-overlay__p { font-size:clamp(12px,1vw,16px); line-height:1.5; color:var(--muted); }

/* =============================================
   BUY & SELL WITH CONFIDENCE
   ============================================= */
.confidence { }
.confidence__inner { display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }
.confidence__copy { max-width:100%; }

/* Confidence heading uses Lemon display font (Figma: "Lemon", 64px, weight 400) */
.confidence__copy .section-heading {
  font-family:var(--font-h);
  font-weight:400;
  font-size:clamp(28px, 4.5vw, 64px);
}

/* Logos — no card backgrounds, just raw logos on page */
.brand-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; align-items:center; }
.brand { display:flex; align-items:center; justify-content:center; padding:8px; height:96px; }
.brand img { height:72px; width:auto; max-width:100%; object-fit:contain; }
/* Figma: 32px LEMON MILK Bold, gold */
.brand--more {
  background: rgba(93, 93, 93, 0.28);
  backdrop-filter: blur(12px);
  border-radius:var(--r-pill);
  font-family:var(--font-h);
  font-size:clamp(16px, 2vw, 22px);
  font-weight:700;
  color:var(--gold);
  min-height:43px;
  height: 49px;
  width: 150px;
  padding:6px 10px;
}

/* =============================================
   FEATURES AT A GLANCE — SWIPER
   ============================================= */
.features { padding-bottom: 80px; }
.features__heading { text-align:center; margin-bottom:48px; }

/* Give the swiper room for the nav arrows */
.feat-swiper {
  padding-bottom: 52px !important; /* space for pagination */
  padding-left: 4px;
  padding-right: 4px;
}

/* Each card fills the slide */
.swiper-slide { width: 350px; }
.feat-swiper .swiper-slide, .swiper-wrapper { height: auto; }
.feat {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; gap:10px; padding:28px 20px;
  font-size:clamp(14px, 1.4vw, 20px); font-weight:400; line-height:1.4; color:var(--text);
  border-radius:50px;
  height:185px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 206, 51, 0.5) 100%);
}
.feat__icon { width:54px; height:54px; display:flex; align-items:center; justify-content:center; }

/* Pagination bullets — gold */
.feat-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.25);
  opacity: 1;
  transition: background .25s, transform .25s;
}
.feat-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Prev / Next arrows — styled to match the site */
.feat-prev,
.feat-next {
  display:none;
  width: 48px !important;
  height: 48px !important;
  background: rgba(93,93,93,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--gold) !important;
  transition: background .2s, transform .15s;
  top: calc(50% - 26px); /* vertically centred on cards, above pagination */
}
.feat-prev:hover, .feat-next:hover {
  background: rgba(255,206,51,0.15);
  transform: scale(1.08);
}
.feat-prev::after,
.feat-next::after {
  font-size: 16px !important;
  font-weight: 700;
  color: var(--gold);
}
.feat-prev.swiper-button-disabled,
.feat-next.swiper-button-disabled { opacity: 0.25; }
.feat-prev { left: 0; }
.feat-next { right: 0; }

/* Desktop: show all feature cards in a single grid (no slider) */
@media (min-width: 768px) {
  .feat-swiper { padding-bottom: 0 !important; padding-left: 0; padding-right: 0; }
  .feat-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    transform: none !important;
  }
  .feat-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
  .feat-pagination,
  .feat-prev,
  .feat-next { display: none !important; }
}

/* =============================================
   BUILT FOR PASSION
   ============================================= */
.passion {  }

/* Top card: full-width, copy left + phone right */
.passion__top {
  position:relative;
  overflow:visible;
  padding:40px 36px;
  min-height:320px;
  border-radius:50px;
}
.passion__top-inner {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
}
.passion__copy { flex:1; max-width:68%; }
.passion__phone {
  flex-shrink:0;
  display:flex;
  justify-content:center;
  position:relative;
  z-index:2;
  margin-top:-20px;
}

/* Figma: "Lemon", 64px, weight 400 */
.passion__heading {
  font-family:var(--font-h);
  font-size:clamp(28px,4vw,54px);
  font-weight:400; line-height:1.1;
  color:var(--text); margin-bottom:16px;
  text-shadow: 6px 5px 4px rgba(0, 0, 0, 0.9);
}
/* Figma: 24px Montserrat */
.passion__body { font-size:clamp(15px,1.5vw,24px); color:var(--muted); line-height:1.65; }

/* Mobile: center-align the Built for passion copy */
@media (max-width: 639px) {
  .passion__top-inner { align-items: center; }
  .passion__copy { max-width: 100%; text-align: center; }
}

/* Testimonials row below */
.testimonials { display:grid; grid-template-columns:1fr; gap:16px; margin-top:32px; }
.testi { padding:24px 24px; display:flex; flex-direction:column; gap:10px; border-radius:50px; align-items: center; }
.testi__stars { font-size:25px; color:var(--gold); letter-spacing:4px; opacity:1; }
/* Figma: 24px Montserrat */
.testi__quote { font-size:clamp(15px, 1.5vw, 24px); line-height:1.55; color:var(--text); font-style:normal; text-align:center; }
/* Figma: 16px Montserrat Bold, gold */
.testi__author { font-size:clamp(12px, 1vw, 16px); font-weight:700; color:var(--gold); font-style:normal; }

.phone-mockup--dark .pm-frame { border-radius:36px; }

/* =============================================
   DOWNLOAD CTA
   ============================================= */
.download-cta { position:relative; overflow:hidden; padding:60px 24px;}
@media (min-width: 640px) {
  .download-cta { padding:60px 80px; }
}
.download-cta__bg { position:absolute; inset:0; z-index:0; }
.download-cta__bg img { width:100%; height:100%; object-fit:cover; }
.download-cta__inner { position:relative; z-index:1; display:flex; justify-content:center; align-items:center; }
.download-cta__card { text-align:center; width:100%; max-width:100%; padding:48px 40px; border-radius:50px; }
/* Figma: 64px Montserrat Bold */
.download-cta__heading {
  font-family:var(--font-b); font-size:clamp(26px,5vw,58px);
  font-weight:900; line-height:1.1;
  color:var(--text); margin-bottom:36px;
  text-shadow: 6px 5px 4px rgba(0, 0, 0, 0.9);
}
.download-cta__heading span { font-weight:400; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { border-top:1px solid var(--border); padding-top:40px; }
.site-footer__main { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:24px; padding-bottom:32px; }
.site-footer__left { display:flex; flex-direction:column; gap:16px; }
.footer-logo { height:36px; width:auto; }
.site-footer__social { display:flex; gap:20px; align-items:center; }
.soc { color:var(--muted); display:flex; align-items:center; transition:color .2s,transform .2s; padding: 5px; background: #383D38; border-radius: 100%; }
.soc:hover { color:var(--gold); transform:translateY(-2px); }
.site-footer__copy { border-top:1px solid var(--border); padding-block:16px; text-align:center; color:#fff; background:#F9FAFF }
.site-footer__copy { border-top:1px solid var(--border); padding-block:16px; text-align:center; color:#1F2139; background:#F9FAFF }
/* Figma: 14px Gotham — fallback to Montserrat */
.site-footer__copy p { font-size:12px; color:#1F2139; line-height:1.5; }

/* =============================================
   TABLET 640px+
   ============================================= */
@media (min-width: 640px) {
  .auction-cards { grid-template-columns:repeat(3,1fr); }
  .testimonials { grid-template-columns:repeat(3,1fr); }
  .passion__top-inner { flex-direction:row; }
}

/* =============================================
   DESKTOP 1024px+
   ============================================= */
@media (min-width: 1024px) {
  .wrap { padding-inline:60px; }
  .hamburger { display:none; }
  .site-header__nav { display:flex; }
  .mobile-nav { display:none !important; }

  /* Hero */
  .hero__inner { grid-template-columns:1fr 1fr; gap:60px;padding: 80px 80px 0px 0px; }
  .hero__phone { justify-content:flex-end;         align-items: flex-end; }
  .phone-mockup { width:360px; }
  .css-phone__shell { width:320px; }

  /* Trade */
  .trade__inner { grid-template-columns:1.8fr 1fr; gap:60px; }
  .cc-stage { height:420px; max-width:100%; }

  /* Buy and Sell */
  .buysell__inner { grid-template-columns:1fr 1.5fr; gap:60px; align-items:center; }
  .buysell__cards { flex-wrap:nowrap; overflow-x:visible; }
  .buysell__cards .bs-card { flex:1 1 0; min-width:0; }

  /* Collector Rating — 2 columns: visual left, copy right */
  .cr-section__inner { grid-template-columns:1.6fr 1fr; gap:40px; }
  .cr-avatar { width:112px; height:112px; }
  .cr-star svg { width:40px; height:38px; }
  .cr-profile__name { font-size:18px; }
  .cr-profile__handle { font-size:12px; }
  .cr-profile__loc { font-size:11px; }

  /* Live Auctions: copy left narrow, cards right wide */
  .auctions__inner { grid-template-columns:2fr 4fr; gap:48px; }
  .auction-cards { grid-template-columns:repeat(3,1fr); }
  .ac__img { aspect-ratio:3/4; max-height:320px; }

  /* Collections — floating card overlaps right edge of grid */
  .col-row { grid-template-columns:220px 1fr; gap:20px; }
  .collections__inner { position:relative; }
  .col-float-card {
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:380px;
    margin-top:0;
    padding:70px 50px;
    z-index:5;
  }
  .col-overlay__h { font-size:clamp(22px,2.8vw,36px); }

  /* Confidence */
  .confidence__inner { grid-template-columns:1.3fr 1fr; gap:60px; }

  /* Passion — full-width top card, testimonials row below */
  .passion__top-inner { align-items:flex-start; }
  .passion__phonescreenshot { position: absolute; right: 0; width: 450px; margin-top: -400px; }
  .passion__phone { margin-top:-40px; }
  .passion__phone .css-phone__shell { width:280px; }
  .testimonials { padding-right:165px; grid-template-columns:repeat(4,1fr); }
}

/* =============================================
   WIDE 1280px+
   ============================================= */
@media (min-width: 1280px) {
  .phone-mockup { width:400px; }
  .css-phone__shell { width:400px; }
  .col-row { grid-template-columns:400px 1fr; }
  .col-float-card { width:500px; }
  .ac__img { max-height:360px; }
  .passion__phone .css-phone__shell { width:320px; }
}
