/* =========================================================
   JAYLOGS — design tokens
   ========================================================= */
:root{
  --ink:#0A0D17;
  --surface:#12162A;
  --surface-2:#171D34;
  --border:#232842;
  --indigo:#5B4FF5;
  --violet:#8C6CF7;
  --mint:#45D9B4;
  --paper:#F5F6FA;
  --muted:#9CA0B8;
  --muted-2:#6C7191;
  --danger:#F26D6D;

  --grad: linear-gradient(135deg, var(--indigo), var(--violet));

  --font-display: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-lift: 0 20px 50px -20px rgba(91,79,245,0.35);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--paper);
  font-family:var(--font-body);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:700;
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color:var(--muted); }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
img{ max-width:100%; display:block; }
:focus-visible{ outline:2px solid var(--mint); outline-offset:2px; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 24px; }
.wrap-narrow{ max-width:760px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:14px 26px; border-radius:999px;
  font-weight:600; font-size:15px; border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--grad); color:#fff; box-shadow:var(--shadow-lift); }
.btn-primary:hover{ box-shadow:0 24px 50px -16px rgba(91,79,245,0.55); }
.btn-outline{ border-color:var(--border); color:var(--paper); background:transparent; }
.btn-outline:hover{ border-color:var(--violet); }
.btn-outline-light{ border-color:rgba(255,255,255,.35); color:#fff; background:transparent; }
.btn-outline-light:hover{ border-color:#fff; }
.btn-sm{ padding:10px 18px; font-size:14px; }
.btn.full{ width:100%; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--mint); margin-bottom:14px;
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--mint); }
.eyebrow-dark{ color:var(--violet); }
.eyebrow-dark .dot{ background:var(--violet); }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:40; height:66px;
  background:rgba(10,13,23,.85); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; height:100%; padding:0 24px; gap:24px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ width:34px; height:34px; min-width:34px; max-width:34px; flex-shrink:0; display:block; }
.brand-word{ font-family:var(--font-display); font-weight:700; font-size:20px; }
.brand-jay{ color:var(--mint); }
.brand-logs{ color:var(--paper); }

.main-nav{ display:flex; gap:28px; }
.main-nav a{ font-size:14.5px; font-weight:500; color:var(--muted); transition:color .15s; }
.main-nav a:hover{ color:var(--paper); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  background:var(--surface); border:1px solid var(--border); color:var(--paper);
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  position:relative;
}
.cart-count{
  position:absolute; top:-6px; right:-6px; background:var(--mint); color:#0A0D17;
  font-size:11px; font-weight:700; min-width:18px; height:18px; border-radius:9px;
  display:flex; align-items:center; justify-content:center; padding:0 4px;
}
.nav-login-link{ font-size:14px; font-weight:600; color:var(--paper); }
.nav-login-link:hover{ color:var(--mint); }
.hamburger{
  display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  background:none; border:none; width:40px; height:40px; flex-shrink:0; position:relative;
}
.hamburger span{
  width:22px; height:2px; background:var(--paper); border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
body.nav-open .hamburger span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2){ opacity:0; }
body.nav-open .hamburger span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero{ position:relative; padding-top:64px; overflow:hidden; }
.hero::before{
  content:''; position:absolute; inset:-20% -10% auto -10%; height:600px;
  background:radial-gradient(60% 60% at 30% 20%, rgba(91,79,245,.25), transparent 70%),
             radial-gradient(50% 50% at 80% 10%, rgba(69,217,180,.15), transparent 70%);
  pointer-events:none;
}
.hero-inner{ position:relative; display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; padding-bottom:64px; }
.hero h1{ font-size:clamp(34px, 4.6vw, 56px); }
.hero-sub{ font-size:17px; max-width:520px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }
.trust-strip{ display:flex; flex-wrap:wrap; gap:10px 20px; font-size:13.5px; color:var(--muted-2); }

.hero-visual{ position:relative; display:flex; justify-content:center; }
.orbit-card{ position:relative; width:100%; max-width:360px; }
.orbit-svg{ width:100%; height:auto; animation:spin 40s linear infinite; }
@keyframes spin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }
.orbit-svg g{ animation:counter-spin 40s linear infinite; transform-origin:center; }
@keyframes counter-spin{ from{ transform:rotate(0deg);} to{ transform:rotate(-360deg);} }
.floating-badge{
  position:absolute; background:var(--surface); border:1px solid var(--border);
  padding:8px 14px; border-radius:999px; font-size:12.5px; font-weight:600;
  box-shadow:0 12px 30px -12px rgba(0,0,0,.5);
}
.badge-top{ top:6%; left:-6%; }
.badge-bottom{ bottom:6%; right:-6%; }

@media (prefers-reduced-motion: reduce){
  .orbit-svg, .orbit-svg g{ animation:none; }
}

.stats-bar{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--surface); }
.stats-inner{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; padding:28px 24px; }
.stat{ display:flex; flex-direction:column; gap:4px; }
.stat strong{ font-family:var(--font-display); font-size:26px; color:var(--paper); }
.stat span{ font-size:12.5px; color:var(--muted-2); }

/* =========================================================
   Sections
   ========================================================= */
.section{ padding:88px 0; }
.section-alt{ background:var(--surface); }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(26px,3vw,36px); }

/* Categories */
.category-grid{
  display:grid; grid-template-columns:repeat(6,1fr); gap:16px; margin-bottom:44px;
}

/* Sub-page intro banner (Accounts, Sell, Wallet, Login, Signup) */
.page-intro{ padding:52px 0 8px; }
.page-intro .wrap{ text-align:center; max-width:640px; }
.page-intro h1{ font-size:clamp(28px,3.6vw,42px); }
.breadcrumb-nav{ font-size:13px; color:var(--muted-2); margin-bottom:16px; }
.breadcrumb-nav a:hover{ color:var(--mint); }

/* Wallet */
.wallet-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:32px; align-items:start; }
.wallet-balance-card{
  background:var(--grad); border-radius:var(--radius-lg); padding:32px; color:#fff; position:relative; overflow:hidden;
}
.wallet-balance-card span{ font-size:13px; opacity:.85; text-transform:uppercase; letter-spacing:.06em; }
.wallet-balance-card strong{ display:block; font-family:var(--font-display); font-size:40px; margin:8px 0 20px; }
.wallet-balance-card .btn-outline-light{ border-color:rgba(255,255,255,.5); }
.wallet-note{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:22px; font-size:13.8px; color:var(--muted); margin-top:20px;
}
.wallet-note strong{ color:var(--paper); display:block; margin-bottom:6px; font-size:14.5px; }
.wallet-txns{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px; }
.wallet-txns h3{ font-size:16px; }

/* Auth pages */
.auth-wrap{ max-width:420px; margin:0 auto; }
.auth-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; }
.auth-card label{ display:flex; flex-direction:column; gap:6px; font-size:13.5px; font-weight:500; color:var(--muted); margin-bottom:16px; }
.auth-card input{
  background:var(--surface-2); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:12px 14px; color:var(--paper); font-family:inherit; font-size:14.5px;
}
.auth-card input:focus{ border-color:var(--violet); outline:none; }
.auth-switch{ text-align:center; font-size:13.5px; color:var(--muted); margin-top:18px; }
.auth-switch a{ color:var(--mint); font-weight:600; }
.backend-note{
  display:flex; gap:10px; font-size:12.5px; color:var(--muted-2);
  background:rgba(140,108,247,.08); border:1px solid rgba(140,108,247,.3);
  padding:12px 14px; border-radius:var(--radius-sm); margin-top:16px;
}
.category-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:22px 16px; text-align:center; cursor:pointer; transition:transform .15s, border-color .15s;
}
.category-card:hover{ transform:translateY(-4px); border-color:var(--violet); }
.category-card-soon{ opacity:.6; cursor:not-allowed; }
.category-card-soon:hover{ transform:none; border-color:var(--border); }
.category-card.shake{ animation:shake .4s ease; }
@keyframes shake{
  0%,100%{ transform:translateX(0); }
  25%{ transform:translateX(-4px); }
  75%{ transform:translateX(4px); }
}
.auth-error{
  font-size:13px; color:#F26D6D; background:rgba(242,109,109,.1);
  border:1px solid rgba(242,109,109,.3); border-radius:var(--radius-sm);
  padding:10px 12px; margin:-6px 0 14px;
}
.category-icon{
  width:48px; height:48px; margin:0 auto 12px; border-radius:14px; display:flex; align-items:center; justify-content:center;
}
.category-card h4{ font-size:14.5px; margin-bottom:4px; }
.category-card span{ font-size:12px; color:var(--muted-2); }

/* Listings toolbar */
.listings-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:24px; }
.filter-tabs{ display:flex; gap:8px; flex-wrap:wrap; }
.filter-tab{
  background:var(--surface); border:1px solid var(--border); color:var(--muted);
  padding:8px 16px; border-radius:999px; font-size:13.5px; font-weight:500;
}
.filter-tab.active{ background:var(--grad); color:#fff; border-color:transparent; }
.listings-note{ font-size:12.5px; color:var(--muted-2); }
.listings-note code{ background:var(--surface); padding:2px 6px; border-radius:4px; }

/* Listing cards */
.listing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.listing-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column; transition:transform .15s, border-color .15s;
}
.listing-card:hover{ transform:translateY(-4px); border-color:var(--violet); }
.listing-thumb{
  height:150px; display:flex; align-items:center; justify-content:center; position:relative;
}
.listing-thumb .platform-tag{
  position:absolute; top:12px; left:12px; background:rgba(10,13,23,.6); backdrop-filter:blur(4px);
  padding:5px 10px; border-radius:999px; font-size:11.5px; font-weight:600;
  display:inline-flex; align-items:center; gap:6px;
}
.listing-thumb .platform-tag svg{ flex-shrink:0; filter:invert(1); }
.listing-thumb .verified-tag{
  position:absolute; top:12px; right:12px; background:rgba(69,217,180,.15); color:var(--mint);
  padding:5px 10px; border-radius:999px; font-size:11.5px; font-weight:600; border:1px solid rgba(69,217,180,.4);
}
.listing-body{ padding:18px; display:flex; flex-direction:column; gap:10px; flex:1; }
.listing-body h3{ font-size:16px; margin:0; }
.listing-meta{ display:flex; gap:14px; font-size:12.5px; color:var(--muted-2); }
.listing-price{ font-family:var(--font-display); font-size:20px; color:var(--paper); margin-top:auto; }
.listing-actions{ display:flex; gap:10px; padding:0 18px 18px; }
.listing-actions .btn{ flex:1; padding:10px; font-size:13.5px; }

/* Steps */
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step-card{ background:var(--ink); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 22px; }
.step-num{ font-family:var(--font-display); font-size:14px; color:var(--mint); font-weight:700; }
.step-card h3{ font-size:18px; margin-top:10px; }
.step-card p{ font-size:14px; margin:0; }

/* Why us */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.why-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px 22px; }
.why-icon{ font-size:26px; margin-bottom:14px; }
.why-card h3{ font-size:16.5px; }
.why-card p{ font-size:13.8px; margin:0; }
.why-card em{ color:var(--muted-2); font-style:normal; }

/* Sell */
.sell-wrap{ display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:start; }
.sell-copy h2{ font-size:clamp(24px,3vw,32px); }
.sell-form{
  background:var(--ink); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:28px; display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.sell-form label{ display:flex; flex-direction:column; gap:6px; font-size:13.5px; font-weight:500; color:var(--muted); }
.sell-form input, .sell-form select, .sell-form textarea{
  background:var(--surface-2); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:11px 12px; color:var(--paper); font-family:inherit; font-size:14px;
}
.sell-form input:focus, .sell-form select:focus, .sell-form textarea:focus{ border-color:var(--violet); }
.sell-form .full{ grid-column:1 / -1; }
.hidden-field{ position:absolute; left:-9999px; }
.form-footnote{ font-size:12px; color:var(--muted-2); margin:0; }

/* Testimonials */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; }
.testimonial-card p{ font-size:14.5px; color:var(--paper); margin-bottom:16px; }
.testimonial-person{ display:flex; flex-direction:column; font-size:13px; }
.testimonial-person strong{ color:var(--paper); }
.testimonial-person span{ color:var(--muted-2); }

/* FAQ */
.faq-item{ border-bottom:1px solid var(--border); padding:18px 0; }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; cursor:pointer;
  font-weight:600; font-size:15.5px; background:none; border:none; color:var(--paper); width:100%; text-align:left; padding:0;
}
.faq-q::after{ content:'+'; font-size:20px; color:var(--muted-2); transition:transform .2s; }
.faq-item.open .faq-q::after{ content:'–'; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; font-size:14.5px; }
.faq-item.open .faq-a{ max-height:200px; margin-top:10px; }

/* CTA band */
.cta-band{ background:var(--grad); padding:64px 0; }
.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.cta-band h2{ font-size:clamp(22px,3vw,30px); color:#fff; margin:0; }
.cta-band p{ color:rgba(255,255,255,.85); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background:var(--ink); border-top:1px solid var(--border); padding-top:56px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 0.9fr 0.9fr 1.1fr 0.9fr; gap:28px; padding-bottom:36px; }
.footer-brand p{ font-size:13.5px; margin-top:14px; max-width:260px; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--muted-2); margin-bottom:14px; }
.footer-col a{ display:block; font-size:13.8px; color:var(--muted); margin-bottom:10px; }
.footer-col a:hover{ color:var(--paper); }
.footer-col a.footer-icon-link{ display:flex; align-items:center; gap:9px; }
.footer-icon-link svg{ flex-shrink:0; opacity:.85; }
.footer-col em{ color:var(--muted-2); font-style:normal; font-size:12px; }
.footnote{ display:block; font-size:12px; color:var(--muted-2); margin-top:10px; }
.footer-bottom{
  border-top:1px solid var(--border); padding:20px 24px; display:flex; justify-content:space-between;
  font-size:12.5px; color:var(--muted-2); flex-wrap:wrap; gap:8px;
}

/* =========================================================
   Cart drawer
   ========================================================= */
.drawer-backdrop, .modal-backdrop{
  position:fixed; inset:0; background:rgba(5,6,12,.65); backdrop-filter:blur(2px);
  opacity:0; pointer-events:none; transition:opacity .2s; z-index:60;
}
.drawer-backdrop.open, .modal-backdrop.open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px,100%);
  background:var(--surface); border-left:1px solid var(--border);
  transform:translateX(100%); transition:transform .25s ease; z-index:61;
  display:flex; flex-direction:column;
}
.cart-drawer.open{ transform:translateX(0); }
.drawer-head{ display:flex; justify-content:space-between; align-items:center; padding:20px; border-bottom:1px solid var(--border); }
.drawer-body{ flex:1; overflow-y:auto; padding:16px 20px; display:flex; flex-direction:column; gap:14px; }
.cart-empty{ color:var(--muted-2); font-size:14px; text-align:center; padding:40px 0; }
.cart-item{ display:flex; gap:12px; align-items:center; border-bottom:1px solid var(--border); padding-bottom:14px; }
.cart-item-thumb{ width:52px; height:52px; border-radius:12px; flex-shrink:0; }
.cart-item-info{ flex:1; }
.cart-item-info h4{ font-size:13.8px; margin:0 0 4px; }
.cart-item-info span{ font-size:12.5px; color:var(--muted-2); }
.cart-item-remove{ background:none; border:none; color:var(--muted-2); font-size:13px; }
.cart-item-remove:hover{ color:var(--danger); }
.drawer-foot{ padding:20px; border-top:1px solid var(--border); }
.cart-total-row{ display:flex; justify-content:space-between; margin-bottom:14px; font-size:15px; }
.drawer-footnote{ font-size:12px; color:var(--muted-2); text-align:center; margin:12px 0 0; }

/* =========================================================
   Modal
   ========================================================= */
.modal{
  position:fixed; top:50%; left:50%; transform:translate(-50%,-46%);
  width:min(440px, calc(100% - 40px)); max-height:86vh; overflow-y:auto;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:28px; z-index:62; opacity:0; pointer-events:none; transition:opacity .2s, transform .2s;
}
.modal.open{ opacity:1; pointer-events:auto; transform:translate(-50%,-50%); }
.modal-close{ position:absolute; top:16px; right:16px; }
.modal-sub{ font-size:13.8px; }
.checkout-summary{ background:var(--ink); border:1px solid var(--border); border-radius:var(--radius-sm); padding:14px; margin-bottom:18px; font-size:13.5px; }
.checkout-summary .row{ display:flex; justify-content:space-between; padding:4px 0; color:var(--muted); }
.checkout-summary .row strong{ color:var(--paper); }
#checkout-form{ display:flex; flex-direction:column; gap:14px; }
#checkout-form label{ display:flex; flex-direction:column; gap:6px; font-size:13.5px; font-weight:500; color:var(--muted); }
#checkout-form input{
  background:var(--surface-2); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:11px 12px; color:var(--paper); font-family:inherit; font-size:14px;
}
.modal-footnote{ font-size:11.5px; color:var(--muted-2); margin-top:14px; }
.modal-scroll{ font-size:13.8px; color:var(--muted); max-height:50vh; overflow-y:auto; }
.modal-scroll p{ font-size:13.8px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:280px; margin:0 auto; }
  .category-grid{ grid-template-columns:repeat(3,1fr); }
  .listing-grid{ grid-template-columns:repeat(2,1fr); }
  .steps-grid, .why-grid{ grid-template-columns:repeat(2,1fr); }
  .sell-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 680px){
  .main-nav{ display:none; }
  .hamburger{ display:flex; }
  .header-actions .btn{ display:none; }
  .category-grid{ grid-template-columns:repeat(2,1fr); }
  .listing-grid{ grid-template-columns:1fr; }
  .steps-grid, .why-grid{ grid-template-columns:1fr; }
  .sell-form{ grid-template-columns:1fr; }
  .stats-inner{ grid-template-columns:1fr; text-align:center; }
  .testimonial-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .cta-inner{ flex-direction:column; text-align:center; }
}

body.nav-open .main-nav{
  display:flex; position:fixed; top:66px; left:0; right:0; bottom:0;
  background:var(--ink); flex-direction:column; padding:32px 24px; gap:22px; z-index:50;
  overflow-y:auto;
}
body.nav-open .main-nav a{ font-size:18px; }
body.nav-open .main-nav a#nav-auth-link{
  margin-top:8px; padding:14px 20px; text-align:center; border-radius:var(--radius-sm);
  background:var(--grad); color:#fff; font-weight:600;
}

/* =========================================================
   MOBILE IMPROVEMENTS & TAP TARGETS
   ========================================================= */

/* Keep the real animated orbit/J-logo graphic on mobile too — same as
   desktop — just sized down. (Previously this hid it and swapped in a
   plain circle, which is the "oval blob" bug — removed.) */
@media (max-width: 768px) {
  .hero-visual{ max-width:220px; }
  .orbit-card{ max-width:220px; }

  /* Improve stats bar for mobile */
  .stats-bar { padding: 24px 0; }
  .stats-inner { grid-template-columns: 1fr; gap: 20px; }
  .stat { text-align: center; padding: 16px 0; }
  .stat strong { font-size: 28px; }
  
  /* Better category grid on mobile */
  .category-grid { grid-template-columns: 2fr; gap: 12px; }
  .category-card { padding: 16px; }
  .category-card h4 { font-size: 14px; }
  
  /* Better listing cards on mobile */
  .listing-grid { grid-template-columns: 1fr; gap: 14px; }
  .listing-card { flex-direction: column; }
  
  /* Larger tap targets */
  .btn { padding: 14px 20px; min-height: 48px; display: inline-flex; align-items: center; }
  .category-card { min-height: 100px; display: flex; flex-direction: column; justify-content: center; }
  
  /* Better form inputs on mobile */
  input, select, textarea {
    min-height: 44px;
    font-size: 16px !important;
    padding: 12px 14px !important;
  }
  
  /* Footer grid on mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col { text-align: center; }
  .footer-col a { display: block; margin: 6px 0; }
  
  /* Better FAQ on mobile */
  .faq-item { padding: 16px 0; }
  .faq-q { font-size: 14px; padding: 8px 0; }
}

@media (max-width: 480px) {
  /* Extra small screens */
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .btn-sm { padding: 10px 16px; font-size: 12px; }
  .category-grid { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; gap: 8px; }
  .stats-inner { grid-template-columns: 1fr; }
}

/* Tap feedback on interactive elements */
@media (hover: none) and (pointer: coarse) {
  .btn, .category-card, .platform-card, .listing-card {
    -webkit-tap-highlight-color: rgba(69, 217, 180, 0.2);
  }
}

/* Dark mode preference (optional, for future) */
@media (prefers-color-scheme: dark) {
  /* Already dark, no changes needed */
}

/* Landscape mode on mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero { padding: 32px 0 20px; }
  .stats-bar { padding: 12px 0; }
  h1 { font-size: 20px; }
  .hero-cta { gap: 8px; }
}
