/* InstaSupply — monochrome marketplace landing system */
*{ box-sizing:border-box; }
:root{
  --ink:#0A0A0A;
  --ink-2:#5e5e5e;
  --ink-3:#8a8a8a;
  --line:#E8E8E8;
  --line-2:#EFEFEE;
  --surface:#F7F7F5;
  --chip:#F4F4F2;
  --radius:22px;
  --maxw:1180px;
  --nav-gap:22px;
  --accent:#0A0A0A;
  --font:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  --mono:'Space Mono',ui-monospace,monospace;
}
html{ scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--font); color:var(--ink);
  background:#fff; -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4,p{ margin:0; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }
section{ scroll-margin-top:90px; }

/* ---------- placeholder ---------- */
.ph{
  background:repeating-linear-gradient(45deg,#ececec 0 11px,#f6f6f6 11px 22px);
  color:#9a9a9a; font-family:var(--mono); font-size:11.5px; letter-spacing:.01em;
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:14px; border:1px solid var(--line);
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:inherit; font-weight:700; font-size:15px; cursor:pointer;
  border-radius:999px; padding:14px 26px; border:1.5px solid transparent;
  transition:transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn-dark{ background:var(--accent,var(--ink)); color:#fff; }
.btn-dark:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.22); }
.btn-ghost{ background:#fff; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }
.btn-lg{ padding:17px 32px; font-size:16px; }

/* ---------- nav ---------- */
.nav{
  position:sticky; top:0; z-index:50; background:#0A0A0A;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.nav .brand-logo{ color:#fff; }
.nav .brand-name{ color:#fff; }
.nav .nav-toggle span{ background:#fff; }
.nav .nav-toggle:hover span{ background:#fff; opacity:.8; }

/* white header variant (Tweak: Header theme) */
[data-header="white"] .nav{ background:#fff; border-bottom:1px solid var(--line-2); }
[data-header="white"] .nav .brand-logo{ color:var(--ink); }
[data-header="white"] .nav .brand-name{ color:var(--ink); }
[data-header="white"] .nav .nav-toggle span{ background:var(--ink); }
[data-header="white"] .nav .nav-toggle:hover span{ background:var(--ink); opacity:.7; }
[data-header="white"] .nav-right .nav-login{ color:#3a3a3a; }
[data-header="white"] .nav-right .nav-login:hover{ color:var(--ink); }
[data-header="white"] .nav-cta{ background:#0A0A0A; color:#fff; }
[data-header="white"] .nav-cta:hover{ background:#0A0A0A; box-shadow:0 12px 28px rgba(0,0,0,.25); }
.nav-in{ display:flex; align-items:center; gap:var(--nav-gap,22px); height:74px; position:relative; }

/* sticky in-header search: appears centered between the logo and Open App once the
   hero search bar scrolls up under the header. Shows the search icon + placeholder
   only — no "Search" button. Absolutely centered so it never shifts brand/nav-right. */
.nav-search{
  position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%) translateY(6px);
  display:flex; align-items:center; gap:10px; width:min(560px,52vw);
  padding:9px 18px; border-radius:999px; cursor:text; text-align:left;
  background:#fff; border:1px solid var(--line-2);
  color:var(--ink); font-family:inherit;
  opacity:0; pointer-events:none; visibility:hidden;
  transition:opacity .26s ease, transform .26s cubic-bezier(.22,1,.36,1), background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.nav-search svg{ flex-shrink:0; color:#4a4a4a; }
.nav-search-input{ flex:1; min-width:0; border:none; background:transparent; outline:none;
  font-family:inherit; font-size:14px; font-weight:500; color:var(--ink); padding:0; }
.nav-search-input::placeholder{ color:#6a6a6a; opacity:1; }
.nav-search-ph{ font-size:14px; font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  color:#6a6a6a; }
.nav-search:hover{ background:#fff; border-color:#d6d6d2; box-shadow:0 6px 18px rgba(0,0,0,.18); }
/* revealed state (JS adds .search-stuck on scroll) */
.nav.search-stuck .nav-search{
  opacity:1; pointer-events:auto; visibility:visible;
  transform:translate(-50%,-50%) translateY(0);
}
/* white pill works on both header themes; on the light header give it a hairline edge */
[data-header="white"] .nav-search{ background:#fff; border-color:var(--line-2); color:var(--ink); }
[data-header="white"] .nav-search svg{ color:#4a4a4a; }
[data-header="white"] .nav-search-ph{ color:#6a6a6a; }
[data-header="white"] .nav-search:hover{ background:#fff; border-color:#d6d6d2; box-shadow:0 6px 18px rgba(0,0,0,.12); }
.brand{ display:flex; align-items:center; gap:11px; }
.brand-logo{ height:25px; width:auto; color:var(--ink); display:block; }
.brand-name{ font-weight:700; font-size:21px; letter-spacing:-0.03em; }
.brand-name b{ font-weight:inherit; }
.nav-right{ display:flex; align-items:center; gap:16px; margin-left:auto; }
.nav-right .nav-login{ font-size:14.5px; font-weight:600; color:rgba(255,255,255,.78); transition:color .15s; white-space:nowrap; }
.nav-right .nav-login:hover{ color:#fff; }
.nav-cta{ padding:11px 22px; font-size:14.5px; background:#fff; color:#0A0A0A; }
.nav-cta:hover{ background:#fff; box-shadow:0 12px 28px rgba(0,0,0,.30); }

/* hamburger — borderless, right-edge-aligned, opens the drawer.
   both bars are absolutely centred on the SAME point so the open-state X rotates around
   one shared centre — otherwise each bar pivots around its own offset and the tips leave
   stray "dots" at the corners. */
.nav-toggle{ position:relative; width:38px; height:38px;
  padding:0; margin-right:-7px; border:none; background:transparent; cursor:pointer; }
.nav-toggle span{ position:absolute; top:50%; left:50%; width:23px; height:2.4px;
  background:var(--ink); border-radius:2px;
  transform:translate(-50%,-50%) translateY(var(--y));
  transition:transform .26s ease, opacity .2s ease, border-radius .2s ease; }
.nav-toggle span:nth-child(1){ --y:-4px; }
.nav-toggle span:nth-child(2){ --y:4px; }
.nav-toggle:hover span{ background:#000; }
/* close (X): both bars cross at the shared centre, squared caps, no offset dots */
.drawer-open .nav-toggle span{ border-radius:1px; }
.drawer-open .nav-toggle span:nth-child(1){ transform:translate(-50%,-50%) rotate(45deg); }
.drawer-open .nav-toggle span:nth-child(2){ transform:translate(-50%,-50%) rotate(-45deg); }

/* ---------- slide-in drawer ---------- */
/* full-screen menu — drops down from under the sticky header (header stays on top) */
.drawer{ position:fixed; inset:0; background:#fff; z-index:40;
  display:flex; flex-direction:column; padding-top:75px;
  transform:translateY(-100%); visibility:hidden;
  transition:transform .42s cubic-bezier(.4,0,.2,1), visibility .42s;
  overflow-y:auto; -webkit-overflow-scrolling:touch; }
.drawer-open .drawer{ transform:translateY(0); visibility:visible; }
.drawer-open{ overflow:hidden; }
.drawer-inner{ width:100%; display:flex; flex-direction:column; flex:1 0 auto; padding-top:30px; padding-bottom:36px; }
.drawer-nav{ display:flex; flex-direction:column; flex:1 0 auto; }
.drawer-nav a{ display:block; padding:17px 0; font-size:clamp(30px,6.6vw,42px); font-weight:800;
  letter-spacing:-0.035em; line-height:1.04; color:var(--ink); transition:opacity .15s ease; }
.drawer-nav a:hover{ opacity:.5; }
/* current page in the menu — dimmed so the user knows where they are (still clickable) */
.drawer-nav a.is-current{ color:var(--ink-3); opacity:.5; }
.nav-right a.nav-link.is-current{ color:var(--ink-3); opacity:.55; }
.drawer-foot{ padding-top:28px; max-width:420px; }

@media (max-width:820px){
  .nav-right .nav-login{ display:none; }
  /* minimal mobile header (supplier, driver, legal/company pages): logo + hamburger only */
  .nav-min-mobile .nav-right .nav-link,
  .nav-min-mobile .nav-right .nav-cta{ display:none; }
}
@media (max-width:860px){
  .nav-search{ display:none; }
}
@media (max-width:430px){
  .nav-in{ gap:10px; }
  .nav-cta{ padding:9px 15px; font-size:13px; }
  .brand-name{ font-size:18px; }
  .brand-logo{ height:21px; }
  .nav-toggle span{ width:21px; }
}

/* ---------- hero ---------- */
.hero{ text-align:center; padding:48px 0 28px; transition:background .3s ease; }

/* Hero black panel (Tweak: Hero style) — the hero turns into a solid-black panel
   that reads as a downward continuation of the black header and rounds off at the
   bottom with the same radius as the supplier cards, so header + hero look like one
   connected piece. */
[data-hero="black"] .hero{
  background:var(--accent);
  border-radius:0 0 var(--radius) var(--radius);
  padding-bottom:54px !important;
}
[data-hero="black"] .hero h1{ color:#fff; }
[data-hero="black"] .offer-line{ color:#fff; }
[data-hero="black"] .chip-loc{ border-color:rgba(255,255,255,.28); }

/* ---- hero split layout ---- */
/* mobile-first: single centered column (unchanged). The eyebrow + product visual
   only appear on the desktop split, so phones keep the clean text-only hero. */
.hero-eyebrow{ display:none; }
.hero-visual{ display:none; }

/* phone + floating live chips (built once, shown on the desktop split) */
.hero-phone{ width:clamp(232px,19vw,272px); border-radius:38px; background:#0A0A0A;
  padding:4px; box-shadow:0 44px 90px -22px rgba(0,0,0,.42), 0 8px 24px rgba(0,0,0,.10); }
.hero-screen{ position:relative; border-radius:34px; overflow:hidden; background:#fff;
  aspect-ratio:264 / 560; }
.hero-screen img{ display:block; width:100%; position:absolute; top:0; left:0;
  will-change:transform; transform:translateY(0); }
.hv-chip{ position:absolute; display:flex; align-items:center; gap:9px;
  background:#fff; border:1px solid var(--line-2); border-radius:16px;
  padding:11px 15px; box-shadow:0 18px 40px -10px rgba(0,0,0,.22);
  font-family:var(--font); }
.hv-chip b{ display:block; font-size:14px; font-weight:700; letter-spacing:-0.01em; color:var(--ink); line-height:1.2; }
.hv-chip small{ display:block; font-size:11.5px; font-weight:500; color:var(--ink-3); margin-top:2px; }
.hv-bolt{ flex-shrink:0; fill:#E7A81B; }
.hv-chip--eta{ top:14%; left:-30px; }
.hv-chip--free{ bottom:13%; right:-26px; gap:11px; }
.hv-free-amt{ font-size:24px; font-weight:800; letter-spacing:-0.03em; color:#1E9E5A; line-height:1; }
.hv-free-txt{ font-size:13.5px; font-weight:700; color:var(--ink); line-height:1.15; }
.hv-free-txt small{ font-weight:500; color:var(--ink-3); font-size:11.5px; margin-top:1px; }
@media (prefers-reduced-motion:no-preference){
  .hv-chip{ animation:hvfloat 5.5s ease-in-out infinite; }
  .hv-chip--free{ animation-delay:-2.6s; }
}
@keyframes hvfloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
/* on the black hero panel the dark phone bezel needs a faint edge to read */
[data-hero="black"] .hero-phone{ outline:1px solid rgba(255,255,255,.10); box-shadow:0 44px 90px -20px rgba(0,0,0,.6); }

@media (min-width:981px){
  .hero{ text-align:left; }
  .hero-grid{ display:grid; grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr);
    align-items:center; gap:clamp(32px,5vw,72px); }
  .hero-eyebrow{ display:block; margin-bottom:18px; }
  .hero h1{ margin-left:0; margin-right:0; max-width:none; }
  /* left-align the offer, search and pills inside the copy column */
  .hero-copy .hero-offer{ align-items:flex-start; }
  .hero-copy .offer-line{ text-align:left; }
  .hero-copy .searchbar{ margin:8px 0 0; max-width:560px; }
  .hero-copy .chips{ justify-content:flex-start; margin-left:0; margin-right:0; }
  .hero-copy .hero-sub{ margin-left:0; margin-right:0; text-align:left; max-width:500px; }
  .hero-copy .hero-trust{ text-align:left; }
  .hero-visual{ display:block; position:relative; justify-self:center; }
}
/* keep the split from getting cramped just above the breakpoint */
@media (min-width:981px) and (max-width:1080px){
  .hero h1{ font-size:clamp(40px,4.6vw,52px); }
}

/* $0 delivery — bright-gold offer, sits as a subtitle directly under the H1 */
.hero-offer{ display:flex; flex-direction:column; align-items:center; margin:0 0 18px; }
.offer-line{ font-size:21px; font-weight:400; letter-spacing:-0.01em; color:var(--ink); margin:0; line-height:1.2; }
.offer-line b{ font-weight:800; color:#E7A81B; font-size:27px; letter-spacing:-0.02em; }
.hero h1{ font-size:clamp(42px,6vw,72px); line-height:1.0; font-weight:800;
  letter-spacing:-0.045em; max-width:1100px; margin:0 auto 14px; text-wrap:balance; }
.hero .sub{ font-size:20px; color:var(--ink-2); max-width:600px; margin:0 auto 34px; line-height:1.45; }
.hero .hero-sub{ margin:32px auto 26px; max-width:540px; }
.hero-trust{ display:inline-flex; align-items:center; gap:9px; margin-top:18px;
  font-size:14.5px; font-weight:500; color:var(--ink-2); line-height:1.4; text-wrap:balance; }
.hero-trust svg{ color:var(--green,#1F8A5B); flex-shrink:0; }
.hero-trust b{ font-weight:800; color:var(--ink); }
[data-hero="black"] .hero-sub{ color:rgba(255,255,255,.72); }
[data-hero="black"] .hero-trust{ color:rgba(255,255,255,.78); }
[data-hero="black"] .hero-trust b{ color:#fff; }
/* mobile-only delivery info (shown when the phone visual is hidden < 981px) */
.hero-meta-m{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:22px auto 0; }
.hm-pill{ display:inline-flex; align-items:center; gap:7px; font-size:14px; font-weight:600; white-space:nowrap;
  color:var(--ink); background:var(--surface); border:1px solid var(--line); border-radius:999px; padding:9px 16px; }
.hm-pill b{ color:var(--ink); font-weight:800; }
.hm-bolt{ flex-shrink:0; }
.hm-pill b.hm-free{ color:#1E9E5A; }
[data-hero="black"] .hm-pill{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); color:rgba(255,255,255,.8); }
[data-hero="black"] .hm-pill b{ color:#fff; }
@media (min-width:981px){ .hero-meta-m{ display:none; } }
.searchbar{
  display:flex; align-items:center; gap:8px; background:#fff; border-radius:999px;
  padding:8px 8px 8px 24px; border:1px solid var(--line);
  box-shadow:0 18px 50px rgba(0,0,0,.10); max-width:760px; margin:0 auto;
  transition:box-shadow .2s, border-color .2s;
}
.searchbar:focus-within{ border-color:var(--ink); box-shadow:0 22px 60px rgba(0,0,0,.16); }
.searchbar svg{ flex-shrink:0; }
.searchbar input{ flex:1; border:none; outline:none; font-family:inherit; font-size:16.5px;
  color:var(--ink); background:transparent; min-width:0; }
.searchbar input::placeholder{ color:#9a9a9a; }
.hero-actions{ display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:18px; }
.loc-btn{ display:inline-flex; align-items:center; gap:9px; font-family:inherit; cursor:pointer; white-space:nowrap;
  background:#fff; border:1px solid var(--line); color:var(--ink); font-size:14.5px; font-weight:700;
  padding:11px 20px; border-radius:999px; transition:border-color .16s ease, transform .16s ease, box-shadow .16s ease; }
.loc-btn:hover{ border-color:var(--ink); transform:translateY(-2px); box-shadow:0 12px 26px rgba(0,0,0,.10); }
.loc-btn svg{ color:#1a1a1a; }
/* location button when inline in the chips row */
.chip-loc{ font-size:14px; font-weight:700; padding:7px 16px 7px 0; gap:0; flex-shrink:0;
  background:#0A0A0A; color:#fff; border-color:#0A0A0A;
  transition:width .34s cubic-bezier(.22,1,.36,1), height .34s cubic-bezier(.22,1,.36,1), padding .34s cubic-bezier(.22,1,.36,1), border-radius .34s cubic-bezier(.22,1,.36,1), background .2s ease, border-color .2s ease, transform .16s ease, box-shadow .2s ease; }
/* fixed-width left zone: the icon is always centered in a 42px column flush to the
   pill's left edge, so its horizontal position is identical whether expanded or mini —
   only the SVG scales during collapse, it never slides left/right */
.chip-loc .loc-ic{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:16px; flex-shrink:0; }
.chip-loc .loc-ic svg{ color:#fff; display:block; width:16px; height:16px;
  transition:width .34s cubic-bezier(.22,1,.36,1), height .34s cubic-bezier(.22,1,.36,1); }
.chip-loc .loc-label{ white-space:nowrap; overflow:hidden; max-width:240px; opacity:1;
  transition:max-width .34s cubic-bezier(.22,1,.36,1), opacity .16s ease, margin .34s cubic-bezier(.22,1,.36,1); }
.chip-loc:hover{ background:#0A0A0A; transform:translateY(-2px); box-shadow:0 12px 26px rgba(0,0,0,.18); }
.chip-loc.located{ background:#1E9E5A; border-color:#1E9E5A; color:#fff; }
.chip-loc.located .loc-ic svg{ color:#fff; }
/* collapsed: icon-only circle (while chips are scrolled away from the start) */
.chip-loc.mini{ width:42px; height:42px; padding:0; gap:0; border-radius:50%; }
.chip-loc.mini .loc-ic{ height:100%; }
.chip-loc.mini .loc-ic svg{ width:21px; height:21px; }
.chip-loc.mini .loc-label{ max-width:0; opacity:0; margin-left:0; transition:max-width .34s cubic-bezier(.22,1,.36,1), opacity .12s ease, margin .34s cubic-bezier(.22,1,.36,1); }
@media (prefers-reduced-motion:reduce){
  .chip-loc, .chip-loc .loc-ic, .chip-loc .loc-label{ transition:none; }
}
.loc-btn.located{ border-color:#1E9E5A; color:#13703D; }
.loc-spin{ animation:locspin .8s linear infinite; }
@keyframes locspin{ to{ transform:rotate(360deg); } }
.search-btn-arrow{ display:none; }
@media (max-width:560px){
  .searchbar{ gap:6px; padding:7px 7px 7px 18px; }
  .hero .sub{ display:none; }
  .hero{ padding-bottom:14px; }
  #near{ padding-top:42px; }
  /* clean two-line stack on phones: gold offer on its own line, black follow-up below */
  .offer-line{ font-size:18px; line-height:1.25; }
  .offer-line b{ display:block; font-size:24px; margin-bottom:1px; }
  .search-btn{ padding:0; width:46px; height:46px; border-radius:50%; flex-shrink:0; }
  .search-btn-label{ display:none; }
  .search-btn-arrow{ display:block; }
}
.chips{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; max-width:100%; margin:24px auto 0; }
.chip{ display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600;
  padding:7px 16px 7px 9px; border-radius:999px;
  background:#fff; border:1px solid var(--line); cursor:pointer;
  transition:background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease; }
.chip img{ width:24px; height:24px; object-fit:contain; flex-shrink:0; }
/* sign-up chip: solid black pill with white text, sits beside the location chip */
.chip-signup{ display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;
  font-size:14px; font-weight:700; letter-spacing:-0.01em; white-space:nowrap;
  padding:11px 22px; border-radius:999px; cursor:pointer;
  background:#0A0A0A; color:#fff; border:1px solid #0A0A0A;
  transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease; }
@media (hover:hover){
  .chip-signup:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(0,0,0,.18); }
}
/* on the dark hero panel the black chip needs a light edge so it reads against black */
[data-hero="black"] .chip-signup{ border-color:rgba(255,255,255,.28); }
@media (hover:hover){
  .chip:hover{ background:var(--c,var(--surface)); color:var(--ink); border-color:transparent; transform:translateY(-2px); }
}
/* two-chip row (location + sign up): centered under the search bar on phones.
   no horizontal scroll, no sticky pin, no halo — just two pills centered. */
@media (max-width:640px){
  .chips{ flex-wrap:wrap; overflow:visible; justify-content:center;
    margin:18px auto 0; padding:0; }
  .chip{ flex:0 0 auto; }
  .chip-loc{ position:static; box-shadow:none; }
  .chip-loc:hover{ transform:none; box-shadow:none; }
}
.hero .micro{ font-size:14px; font-weight:500; color:var(--ink-3); margin-top:26px; }
.hero-strip{ max-width:1100px; margin:46px auto 0; }
.story-band{ background:linear-gradient(180deg,#FBFBF9 0%,#F4F5F1 100%); border:1px solid var(--line-2);
  border-radius:26px; box-shadow:0 22px 50px rgba(0,0,0,.06); overflow:hidden; }
.banner-marquee,.banner-steps,.banner-spread,.banner-jobsite,.banner-delivery,.banner-phone,.banner-map{ display:none; }
[data-banner="marquee"] .banner-marquee{ display:block; }
[data-banner="steps"] .banner-steps{ display:flex; }
[data-banner="spread"] .banner-spread{ display:flex; }
[data-banner="jobsite"] .banner-jobsite{ display:block; }
[data-banner="delivery"] .banner-delivery{ display:block; }
[data-banner="phone"] .banner-phone{ display:block; }
[data-banner="map"] .banner-map{ display:block; }

/* Option 1 · infinite material marquee */
.banner-marquee{ position:relative; padding:34px 0;
  -webkit-mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.marquee-track{ display:flex; gap:18px; width:max-content; animation:marquee 32s linear infinite; }
.banner-marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.m-card{ display:flex; align-items:center; gap:14px; padding:16px 28px 16px 16px; border-radius:22px;
  background:var(--c); flex-shrink:0; }
.m-card img{ width:60px; height:60px; object-fit:contain; }
.m-card span{ font-weight:700; font-size:18px; letter-spacing:-0.01em; white-space:nowrap; color:#1a1a1a; }
@media (prefers-reduced-motion:reduce){ .marquee-track{ animation:none; } }

/* Option 3 · how it works */
.banner-steps{ align-items:flex-start; padding:38px 26px; }
.step-item{ flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; gap:9px; padding:0 16px; }
.step-ic{ width:80px; height:80px; border-radius:50%; background:var(--c); display:flex;
  align-items:center; justify-content:center; margin-bottom:6px; }
.step-eyebrow{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; color:var(--ink-3); }
.step-item h4{ font-size:18px; font-weight:800; letter-spacing:-0.02em; }
.step-item p{ font-size:13.5px; color:var(--ink-2); line-height:1.45; max-width:210px; }
.step-arrow{ flex:0 0 auto; align-self:center; padding:0 4px; margin-top:30px; }

@media (max-width:700px){
  .banner-steps{ flex-direction:column; gap:18px; padding:30px 20px; }
  .step-arrow{ transform:rotate(90deg); margin:0; }
  .marquee-track{ animation-duration:24s; }
  .m-card{ padding:13px 22px 13px 13px; } .m-card img{ width:48px; height:48px; } .m-card span{ font-size:16px; }
}

.b-svg{ display:block; width:100%; height:auto; }
/* Option 1 spread */
.banner-spread{ flex-wrap:wrap; justify-content:center; align-items:flex-end; gap:20px; padding:30px 26px; }
.sp-item{ margin:0; display:flex; flex-direction:column; align-items:center; gap:10px; }
.sp-item image-slot{ width:150px; height:150px; display:block; }
.sp-item figcaption{ font-weight:600; font-size:14px; color:#2a2a2a; }
/* Option 3 delivery */
.banner-delivery{ position:relative; }
.dfloat{ position:absolute; width:62px; height:62px; object-fit:contain; filter:drop-shadow(0 8px 10px rgba(0,0,0,.12)); }
.df1{ left:27%; top:14%; animation:bob 3.4s ease-in-out infinite; }
.df2{ left:49%; top:7%; animation:bob 3.9s ease-in-out infinite .5s; }
.df3{ left:69%; top:16%; animation:bob 3.2s ease-in-out infinite .9s; }
@keyframes bob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
@media (prefers-reduced-motion:reduce){ .dfloat,.bp-float{ animation:none !important; } }
/* Option 4 phone */
.banner-phone{ position:relative; }
.bp-stage{ position:relative; display:flex; justify-content:center; padding:28px 0 24px; }
.bp-phone{ width:232px; background:#11151c; border-radius:32px; padding:8px; box-shadow:0 22px 46px rgba(0,0,0,.22); position:relative; z-index:2; }
.bp-notch{ position:absolute; top:8px; left:50%; transform:translateX(-50%); width:84px; height:16px; background:#11151c; border-radius:0 0 12px 12px; z-index:3; }
.bp-screen{ background:#fff; border-radius:25px; padding:22px 14px 16px; height:252px; overflow:hidden; }
.bp-head{ font-size:15px; font-weight:800; letter-spacing:-0.02em; margin-bottom:10px; }
.bp-search{ display:flex; align-items:center; gap:6px; background:var(--surface); border:1px solid var(--line-2); border-radius:999px; padding:8px 12px; font-size:11px; color:#9aa6b2; margin-bottom:13px; }
.bp-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.bp-grid span{ display:flex; flex-direction:column; align-items:center; gap:5px; background:var(--c); border-radius:13px; padding:9px 4px; font-size:8.5px; font-weight:700; color:#333; }
.bp-grid img{ width:34px; height:34px; object-fit:contain; }
.bp-float{ position:absolute; width:66px; height:66px; object-fit:contain; padding:12px; border-radius:50%; box-shadow:0 12px 26px rgba(0,0,0,.10); z-index:1; }
.bf1{ left:19%; top:16%; background:#F9E1EE; animation:bob 3.6s ease-in-out infinite; }
.bf2{ right:17%; top:11%; background:#FBEEC6; animation:bob 3.2s ease-in-out infinite .4s; }
.bf3{ left:23%; bottom:12%; background:#FBE0E0; animation:bob 4s ease-in-out infinite .8s; }
.bf4{ right:19%; bottom:16%; background:#D8EEF5; animation:bob 3.4s ease-in-out infinite .6s; }
/* Option 5 map */
.banner-map{ padding:22px 24px; }
.bm-stage{ position:relative; border-radius:20px; overflow:hidden; }
.sup-node{ position:absolute; transform:translate(-50%,-50%); width:5.6%; }
.sn-in{ width:100%; aspect-ratio:1; background:#fff; border-radius:50%; box-shadow:0 9px 18px rgba(0,0,0,.13);
  display:flex; align-items:center; justify-content:center; animation:bmfloat 4.2s ease-in-out infinite; }
.sn-in img{ width:74%; height:74%; object-fit:contain; }
.bm-svg{ display:block; width:100%; height:auto; }
.cline{ stroke-dasharray:760; stroke-dashoffset:760; animation:bmdraw 1.5s ease forwards; }
.l1{ animation-delay:.2s; } .l2{ animation-delay:.5s; } .l3{ animation-delay:.8s; } .l4{ animation-delay:1.1s; } .l5{ animation-delay:1.4s; }
@keyframes bmdraw{ to{ stroke-dashoffset:0; } }
.sn-in.s1{ animation-delay:0s; } .sn-in.s2{ animation-delay:.6s; } .sn-in.s3{ animation-delay:1.1s; } .sn-in.s4{ animation-delay:.3s; } .sn-in.s5{ animation-delay:.9s; }
@keyframes bmfloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }
.pulse{ transform-box:fill-box; transform-origin:center; animation:bmpulse 2.8s ease-out infinite; }
@keyframes bmpulse{ 0%{ transform:scale(.7); opacity:.55; } 100%{ transform:scale(1.85); opacity:0; } }
.livedot{ animation:bmblink 1.7s ease-in-out infinite; }
@keyframes bmblink{ 0%,100%{ opacity:1; } 50%{ opacity:.25; } }
@media (prefers-reduced-motion:reduce){
  .cline{ stroke-dashoffset:0; animation:none; } .sn-in,.pulse,.livedot{ animation:none; }
}
@media (max-width:700px){
  .sp-item image-slot{ width:104px; height:104px; }
  .bp-float{ display:none; }
}

/* ---------- section heading ---------- */
.sec{ padding:104px 0; }
.sec-tight{ padding:80px 0; }
.eyebrow{ font-family:var(--mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink-3); margin-bottom:16px; }
.sec h2{ font-size:clamp(32px,4.2vw,46px); font-weight:800; letter-spacing:-0.04em; line-height:1.05; }
.sec .lead{ font-size:18px; color:var(--ink-2); margin-top:14px; max-width:560px; line-height:1.5; }
.center{ text-align:center; }
.center .lead{ margin-left:auto; margin-right:auto; }

/* ---------- CTA cards ---------- */
.cta-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.cta-card{ background:#fff; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line-2); display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease; }
.cta-card:hover{ transform:translateY(-5px); box-shadow:0 20px 44px rgba(0,0,0,.09); }
/* illustration banner on a soft tint that matches the artwork's sky */
.cta-art{ width:100%; max-width:100%; aspect-ratio:3/2; background:#EAF1F8; border-bottom:1px solid var(--line-2); }
.cta-art image-slot, .cta-art img{ display:block; width:100%; height:100%; object-fit:contain; }
/* dark-ground cards: self-contained illustrations whose background is solid black —
   the panel matches so the art blends edge-to-edge. Match the divider to the panel
   so the light border doesn't read as a white line against the black art. */
.cta-art--dark{ background:#000; border-bottom:0; }
/* all three CTA illustrations share one frame: contain + bottom-aligned so the
   figure grounds on the base edge, with equal top/side padding for breathing room
   (touches only the bottom, centered horizontally). */
.cta-art--ground{ padding:14px 22px 0; }
.cta-body{ padding:28px 30px 32px; display:flex; flex-direction:column; flex:1; }
.cta-card h3{ font-size:23px; font-weight:800; letter-spacing:-0.02em; margin-bottom:10px; }
.cta-card p{ color:var(--ink-2); font-size:15.5px; line-height:1.5; margin-bottom:26px; flex:1; }

/* ---------- category grid ---------- */
.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:48px; }
.cat-card{ background:#fff; border:1px solid var(--line); border-radius:20px;
  padding:26px 18px 22px; display:flex; flex-direction:column; align-items:center; gap:14px;
  cursor:pointer; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.cat-card:hover{ transform:translateY(-4px); box-shadow:0 16px 34px rgba(0,0,0,.08); border-color:var(--line-2); }
.cat-card .ci{ position:relative; height:118px; width:100%; display:flex; align-items:center; justify-content:center; }
.cat-card .halo{ position:absolute; left:50%; top:50%; width:150px; height:150px;
  margin:-75px 0 0 -75px; border-radius:50%; background:var(--hl); opacity:0; transform:scale(.55);
  transition:opacity .25s ease, transform .3s cubic-bezier(.34,1.4,.5,1); z-index:0; }
.cat-card:hover .halo{ opacity:1; transform:scale(1); }
.no-halos .halo{ display:none; }
.cat-card .ci img, .cat-card .ci .allglyph{ position:relative; z-index:1; }
.cat-card .ci img{ max-height:112px; max-width:88%; width:auto; object-fit:contain;
  transition:transform .25s ease; }
.cat-card:hover .ci img{ transform:scale(1.05); }
.cat-card .allglyph{ width:84px; height:84px; display:block; transition:transform .25s ease; }
.cat-card:hover .allglyph{ transform:scale(1.05); }
.cat-card span{ font-weight:700; font-size:16px; letter-spacing:-0.01em; text-align:center; }
.cat-all span em{ display:block; font-style:normal; font-weight:600; font-size:12.5px;
  color:var(--ink-3); margin-top:3px; }

/* ---------- category marquee (single-line, auto-scroll + draggable) ---------- */
.cat-marquee{ margin-top:48px; overflow:hidden; cursor:grab; touch-action:pan-y;
  -webkit-user-select:none; user-select:none;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image:linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); }
.cat-marquee.dragging{ cursor:grabbing; }
.cat-track{ display:flex; width:max-content; will-change:transform; }
/* each card is fixed-width with its own right margin (no flex gap) so the duplicated
   halves butt together seamlessly at the loop point */
.cat-track .cat-card{ flex:0 0 auto; width:178px; margin-right:18px; padding:22px 16px 18px; }
.cat-track .cat-card .ci{ height:96px; }
.cat-track .cat-card .ci img{ max-height:90px; }
.cat-track .cat-card .allglyph{ width:68px; height:68px; }
/* compact halo sized to the icon so it stays behind it and never bleeds onto the label */
.cat-track .cat-card .halo{ width:104px; height:104px; margin:-52px 0 0 -52px; }
/* don't lift/transform cards while dragging (avoids jitter) */
.cat-marquee.dragging .cat-card{ pointer-events:none; }

/* ---------- how it works ---------- */
/* .wrap-scoped so it beats a stray global `.steps{grid-template-columns:1fr}` later in the file */
.wrap .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:54px; }
.step{ position:relative; cursor:pointer; }
/* a card lights up only when selected (.is-active). on desktop, hover gives a subtle
   preview lift on the image so the cards feel clickable, but the dark text state is
   reserved for the selected card. */
.step:hover .step-shot{ opacity:.7; }
.step .num{ font-family:var(--mono); font-weight:700; font-size:14px; color:#B2B2AD;
  width:34px; height:34px; border-radius:50%; background:#E9E9E6;
  display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  transition:background .25s ease, color .25s ease; }
/* one FULL app screen per step, shown as a portrait phone card. aspect matches the
   TALLEST screen (full3 checkout) so its bottom Pay bar is never cropped; the slightly
   wider home/map screens only lose a hair off their sides (edge padding absorbs it). */
/* show only the TOP slice of each phone screen (cropped from the bottom), with the
   bottom corners flat-cut so it reads as a screen continuing below the fold */
.step-shot{ width:100%; max-width:290px; margin:0 auto; aspect-ratio:1206 / 1480;
  border-radius:22px 22px 0 0; overflow:hidden; background:#fff;
  border:1px solid var(--line-2); border-bottom:none; box-shadow:0 8px 20px rgba(0,0,0,.06);
  opacity:.45; transition:opacity .25s ease, box-shadow .25s ease; }
.step-shot img{ width:100%; height:100%; object-fit:cover; object-position:top center; display:block;
  transform:scale(1.025); transform-origin:top center; }
.step-shot.is-empty{ display:flex; align-items:center; justify-content:center;
  background:repeating-linear-gradient(45deg,#EEE 0 11px,#F7F7F7 11px 22px); }
.step-shot.is-empty span{ font-family:var(--mono); font-size:12px; letter-spacing:.04em; color:#9a9a9a; }
/* title + subtitle sit ABOVE the phone (phone is the last element in each card) */
/* steps start muted; the hovered step (desktop) or active carousel step (mobile, .is-active)
   turns dark — number, title and subtitle all darken together */
.step h3{ font-size:20px; font-weight:800; letter-spacing:-0.02em; margin-bottom:8px; max-width:340px;
  color:#8E8E8A; transition:color .25s ease; }
.step p{ color:#A6A6A2; font-size:15px; line-height:1.5; margin-bottom:22px; max-width:340px;
  transition:color .25s ease; }
.step.is-active .num{ background:var(--ink); color:#fff; }
.step.is-active h3{ color:var(--ink); }
.step.is-active p{ color:var(--ink-2); }
.step.is-active .step-shot{ opacity:1; box-shadow:0 16px 38px rgba(0,0,0,.12), 0 3px 10px rgba(0,0,0,.06); }
@media (max-width:760px){
  /* swipe carousel: one step fills the view, the next peeks on the right.
     swipe left or tap a number (JS) to advance; the next step takes the front spot.
     extra vertical AND horizontal padding gives the card shadow room — without side
     padding the x-scroll overflow clips the first card's left shadow and the last
     card's right shadow into a hard line. scroll-padding keeps snap aligned. */
  .wrap .steps{ display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:18px;
    max-width:none; margin-left:-24px; margin-right:-24px; padding:6px 24px 40px;
    scroll-padding:0 24px; scrollbar-width:none; -webkit-overflow-scrolling:touch; }
  .wrap .steps::-webkit-scrollbar{ display:none; }
  .step{ flex:0 0 86%; scroll-snap-align:start; }
  .step .num{ cursor:pointer; }
  .step-shot{ max-width:none; }
}

/* ---------- problem ---------- */
.problem{ background:var(--ink); color:#fff; border-radius:36px; padding:84px 60px; }
.problem h2{ color:#fff; }
.problem .lead{ color:rgba(255,255,255,.6); }
.prob-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:50px; }
/* problem cards flip from the "old way" to the "InstaSupply way" on click.
   both faces share one grid cell and crossfade; the card sizes to the taller (new) face */
.prob-card{ position:relative; display:grid; cursor:pointer; text-align:left;
  background:#161616; border:1px solid #232323; border-radius:18px; padding:26px 24px;
  transition:transform .2s, background .3s, border-color .3s; }
.prob-card:hover, .prob-card:active{ transform:translateY(-4px); background:#1c1c1c;
  border-color:#43C07D; box-shadow:0 0 0 1px rgba(67,192,125,.5), 0 10px 30px rgba(67,192,125,.12); }
/* mobile: the card swiped to the front (.is-active) gets the same green edge as hover */
.prob-card.is-active{ border-color:#43C07D; box-shadow:0 0 0 1px rgba(67,192,125,.5), 0 10px 30px rgba(67,192,125,.12); }
.prob-card:focus-visible{ outline:2px solid #43C07D; outline-offset:2px; }
.prob-card.is-solved{ background:#0E2017; border-color:#235E3D; }
.pc-face{ grid-area:1 / 1; transition:opacity .3s ease; }
.pc-new{ opacity:0; pointer-events:none; }
.prob-card.is-solved .pc-old{ opacity:0; pointer-events:none; }
.prob-card.is-solved .pc-new{ opacity:1; pointer-events:auto; }
.prob-card .pn{ font-family:var(--mono); font-size:13px; color:#7d7d7d; margin-bottom:42px; }
.prob-card .pn-new{ color:#43C07D; letter-spacing:.08em; }
.prob-card h4{ font-size:18px; font-weight:700; letter-spacing:-0.02em; line-height:1.25; color:#fff; }
.prob-card .pc-new p{ margin-top:10px; font-size:13.5px; line-height:1.5; color:rgba(255,255,255,.62); }
.pc-toggle{ position:absolute; top:23px; right:24px; width:25px; height:25px; border-radius:50%;
  background:#262626; color:#8a8a8a; display:grid; place-items:center;
  transition:background .3s, color .3s; }
.pc-toggle .ti{ grid-area:1 / 1; width:13px; height:13px; }
.pc-toggle .ti-check{ display:none; }
.prob-card.is-solved .pc-toggle .ti-plus{ display:none; }
.prob-card.is-solved .pc-toggle .ti-check{ display:block; }
.prob-card.is-solved .pc-toggle{ background:#235E3D; color:#fff; }

/* ---------- app showcase ---------- */
.app{ background:var(--surface); border-radius:36px; padding:80px 60px; overflow:hidden; }
.app-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.stores{ display:flex; gap:12px; }
/* official-style app-store badges (img). sized by height; width auto-keeps ratio */
.store-badge{ display:inline-block; line-height:0; transition:transform .18s; }
.store-badge:hover{ transform:translateY(-2px); }
.store-badge img{ height:50px; width:auto; display:block; }
.store{ display:inline-flex; align-items:center; gap:10px; background:var(--ink); color:#fff;
  border-radius:13px; padding:11px 18px; transition:transform .18s; }
.store:hover{ transform:translateY(-2px); }
.store .lab small{ display:block; font-size:10px; opacity:.7; font-weight:500; line-height:1.25; }
.store .lab b{ font-size:15px; font-weight:700; line-height:1.1; }
.phones{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:58px; justify-items:center; }

/* phone frame */
.phone{ width:268px; background:#0A0A0A; border-radius:42px; padding:11px;
  box-shadow:0 30px 60px rgba(0,0,0,.18); transition:transform .25s ease; }
.phone:hover{ transform:translateY(-8px); }
.phone-scr{ background:#fff; border-radius:32px; overflow:hidden; height:540px; position:relative; }
.phcap{ text-align:center; margin-top:22px; font-weight:700; font-size:15px; }
.phcap small{ display:block; color:var(--ink-3); font-weight:500; font-size:13px; margin-top:3px; }
.notch{ position:absolute; top:0; left:50%; transform:translateX(-50%); width:120px; height:26px;
  background:#0A0A0A; border-radius:0 0 16px 16px; z-index:5; }

/* app screen internals */
.scr{ padding:42px 16px 16px; height:100%; font-size:12px; }
.scr-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.scr-top b{ font-size:15px; font-weight:800; letter-spacing:-0.02em; }
.scr-search{ display:flex; align-items:center; gap:7px; background:var(--surface); border-radius:999px;
  padding:9px 13px; color:#9a9a9a; font-size:11.5px; margin-bottom:14px; border:1px solid var(--line-2); }
.scr-mini-cats{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.scr-mini-cats .mc{ background:var(--surface); border-radius:12px; aspect-ratio:1; display:flex;
  flex-direction:column; align-items:center; justify-content:center; gap:6px; font-size:9px; font-weight:600; color:#3a3a3a; }
.scr-banner{ height:84px; border-radius:14px; margin:14px 0; }
.scr-rowtitle{ font-weight:800; font-size:13px; margin:6px 0 10px; letter-spacing:-0.01em; }
.scr-item{ display:flex; gap:11px; padding:10px 0; border-bottom:1px solid var(--line-2); align-items:center; }
.scr-thumb{ width:48px; height:48px; border-radius:11px; flex-shrink:0; }
.scr-item .info b{ display:block; font-size:12.5px; font-weight:700; }
.scr-item .info small{ color:var(--ink-3); font-size:10.5px; }
.scr-item .price{ margin-left:auto; font-weight:800; font-size:13px; }
.scr-map{ height:230px; border-radius:0; margin:-42px -16px 0; }
.scr-track{ padding:18px 4px 0; }
.scr-track .tline{ display:flex; gap:12px; padding-bottom:18px; position:relative; }
.scr-track .dot{ width:18px; height:18px; border-radius:50%; border:2px solid var(--line); flex-shrink:0; background:#fff; margin-top:1px; }
.scr-track .tline.done .dot{ background:var(--ink); border-color:var(--ink); }
.scr-track .tline:not(:last-child)::before{ content:''; position:absolute; left:8px; top:20px; bottom:0; width:2px; background:var(--line); }
.scr-track .tline.done:not(:last-child)::before{ background:var(--ink); }
.scr-track .tt b{ display:block; font-size:12.5px; font-weight:700; }
.scr-track .tt small{ color:var(--ink-3); font-size:10.5px; }

/* ---------- supplier / driver split ---------- */
/* grid areas: desktop keeps copy+button stacked in one column beside the art;
   mobile reorders to title/subtitle → image → button (see media query) */
.split{ display:grid; grid-template-columns:1fr 1fr; column-gap:54px; align-items:center;
  grid-template-areas:"copy art" "cta art"; }
.split .copy{ grid-area:copy; }
.split-art{ grid-area:art; }
.split-cta{ grid-area:cta; margin-top:30px; align-self:start; }
.split.rev{ grid-template-areas:"art copy" "art cta"; }
.split .art{ height:380px; border-radius:24px; }
/* supplier/driver illustration panels: black ground (matches the art's background)
   with the full illustration shown — black letterbox blends invisibly */
.split-art{ height:380px; border-radius:24px; overflow:hidden; background:#0A0A0A;
  display:flex; align-items:center; justify-content:center; transition:background .3s ease; }
.split-art img{ width:100%; height:100%; object-fit:contain; display:block; }
/* Tweak: Supplier & driver art — preview the illustrations on a white panel */
[data-splitart="white"] .split-art{ background:#fff; border:1px solid var(--line-2); }
.split .copy h2{ font-size:clamp(30px,3.6vw,42px); }

/* ---------- download app ---------- */
.appdl{ background:var(--surface); border-radius:36px; padding:64px 60px;
  display:grid; grid-template-columns:1.25fr 1fr; gap:50px; align-items:center; }
.appdl .app-icon{ width:64px; height:64px; border-radius:16px; margin-bottom:24px; }
.appdl .app-icon svg{ width:34px; }
.appdl-copy h2{ font-size:clamp(28px,3.4vw,42px); font-weight:800; letter-spacing:-0.03em; margin-bottom:14px; }
.appdl-copy p{ color:var(--ink-2); font-size:17px; line-height:1.55; max-width:430px; margin-bottom:28px; }
.appdl .stores{ display:flex; gap:12px; flex-wrap:wrap; }
.appdl .store-badge img{ height:52px; }
.appdl-qr{ display:flex; flex-direction:column; align-items:center; gap:14px; justify-self:end; }
.qr-card{ background:#fff; border:1px solid var(--line-2); border-radius:22px; padding:18px;
  box-shadow:0 18px 44px rgba(0,0,0,.10); }
.qr-card img{ width:188px; height:188px; display:block; }
.qr-cap{ font-family:var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-3); }
@media (max-width:820px){
  .appdl{ grid-template-columns:1fr; gap:34px; padding:46px 26px; }
  .appdl-qr{ justify-self:center; }
}
@media (max-width:560px){
  /* phone: QR is pointless (you're already on the phone) — hide it and tighten the
     section so it isn't a tall block of empty space */
  .appdl{ gap:0; padding:38px 24px; }
  .appdl .app-icon{ width:54px; height:54px; margin-bottom:18px; }
  .appdl-copy p{ margin-bottom:22px; }
  .appdl .stores{ flex-wrap:nowrap; }
  .appdl .store-badge{ flex:1; }
  .appdl .store-badge img{ height:46px; width:100%; }
  .appdl-qr{ display:none; }
}
/* compact app banner under "Suppliers near you" */
.appdl-mini{ background:var(--surface); border:1px solid var(--line-2); border-radius:24px;
  padding:20px 26px; display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap; }
.adm-info{ display:flex; align-items:center; gap:16px; }
.adm-icon{ width:50px; height:50px; border-radius:13px; margin:0; }
.adm-icon svg{ width:27px; }
.adm-txt{ display:flex; flex-direction:column; gap:3px; }
.adm-txt b{ font-size:17px; font-weight:800; letter-spacing:-0.02em; }
.adm-txt span{ font-size:14px; color:var(--ink-2); }
.adm-actions{ display:flex; align-items:center; gap:16px; }
.adm-actions .stores{ gap:10px; }
.adm-actions .store-badge img{ height:42px; }
.adm-qr{ padding:6px; border-radius:12px; flex-shrink:0; }
.adm-qr img{ width:64px; height:64px; }
@media (max-width:880px){
  .appdl-mini{ flex-direction:column; align-items:flex-start; gap:18px; }
  .adm-actions{ flex-wrap:wrap; gap:14px; }
}
@media (max-width:430px){
  .adm-qr{ display:none; }
}

/* ---------- final cta ---------- */
.final{ text-align:center; padding:120px 0; }
.final h2{ font-size:clamp(36px,5vw,60px); font-weight:800; letter-spacing:-0.045em; line-height:1.02;
  max-width:820px; margin:0 auto 18px; text-wrap:balance; }
.final p{ font-size:19px; color:var(--ink-2); max-width:560px; margin:0 auto 32px; line-height:1.45; }
.final-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- suppliers near you ---------- */
.app-brand{ display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.app-icon{ width:58px; height:58px; border-radius:15px; background:#0A0A0A; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 22px rgba(0,0,0,.18); }
.app-icon svg{ width:30px; height:auto; display:block; }
.app-brand-txt{ display:flex; flex-direction:column; gap:3px; }
.app-stars{ display:flex; gap:2px; }
.app-trust{ font-size:13.5px; font-weight:700; color:var(--ink-2); letter-spacing:-0.01em; white-space:nowrap; }
.near-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px; }
.near-head h2{ font-size:clamp(24px,3vw,32px); font-weight:800; letter-spacing:-0.03em; }
.near-loc{ color:var(--ink-2); }
.near-all{ display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:14.5px;
  color:var(--ink); white-space:nowrap; flex-shrink:0; }
.near-all:hover svg{ transform:translateX(3px); }
.near-all svg{ transition:transform .16s ease; }
.near-filters{ display:flex; gap:9px; margin-bottom:22px; overflow-x:auto; scrollbar-width:none; padding-bottom:2px; }
.near-filters::-webkit-scrollbar{ display:none; }
.nf{ flex:0 0 auto; font-family:inherit; cursor:pointer; font-size:14px; font-weight:600; white-space:nowrap;
  padding:9px 18px; border-radius:999px; background:var(--surface); border:1px solid transparent; color:#444;
  transition:background .15s, color .15s; }
.nf:hover{ background:#ECECE9; }
.nf.active{ background:#0A0A0A; color:#fff; }
#near{ overflow-x:clip; }

/* Suppliers band black variant (Tweak: Suppliers section) — the section becomes a
   full-bleed dark panel with rounded TOP corners only, so it reads as a distinct zone
   rising from the page while staying square at the bottom. Cards stay white and pop. */
[data-near="black"] #near{
  background:var(--accent);
  border-radius:var(--radius) var(--radius) 0 0;
  margin-top:10px;
  padding-bottom:34px !important;
}
[data-near="black"] .near-head h2{ color:#fff; }
[data-near="black"] .near-loc{ color:rgba(255,255,255,.55); }
[data-near="black"] .near-all{ color:#fff; }
/* the row bleeds outward so card shadows aren't clipped by the x-scroll;
   #near clips the bleed at the section edge (far from cards) to stop page scroll.
   scroll-padding keeps snap from scrolling the protective side padding out of view
   (otherwise scroll-snap-align:start flushes card 1 to the edge and clips its shadow). */
.near-row{ display:grid; grid-auto-flow:column; grid-auto-columns:minmax(264px,1fr);
  gap:16px; overflow-x:auto; padding:28px 44px 28px; margin:-20px -44px -24px;
  scroll-snap-type:x proximity; scroll-padding:0 44px; scrollbar-width:none; }
.near-row::-webkit-scrollbar{ display:none; }
.sup-card{ position:relative; scroll-snap-align:start; background:#fff; border:1px solid var(--line);
  border-radius:18px; padding:18px; display:block;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.sup-card:hover{ transform:translateY(-4px);
  box-shadow:0 2px 4px rgba(0,0,0,.04), 0 8px 16px rgba(0,0,0,.05), 0 18px 36px rgba(0,0,0,.06);
  border-color:var(--line-2); }
.sc-photo{ position:relative; height:132px; border-radius:12px; overflow:hidden;
  background:var(--c,#EEE); margin-bottom:14px; }
.sc-photo image-slot{ display:block; width:100%; height:100%; }
.sc-logoimg{ display:block; width:100%; height:100%; object-fit:cover; }
.sc-badge{ position:absolute; top:12px; right:12px; background:#FCEFD0; color:#9A6A06;
  font-size:12px; font-weight:800; padding:5px 11px; border-radius:999px;
  box-shadow:0 2px 8px rgba(0,0,0,.16); }
.sc-badge.alt{ background:#E3F1E7; color:#1B7A45; }
.sc-name{ font-size:16.5px; font-weight:700; letter-spacing:-0.02em; margin-bottom:3px; }
.sc-cat{ font-size:13px; font-weight:600; color:var(--ink-3); margin-bottom:8px; }
.sc-meta{ font-size:13.5px; color:var(--ink-3); display:flex; align-items:center; gap:5px; flex-wrap:wrap; }
.sc-eta{ color:#1E9E5A; font-weight:700; }
.bolt{ flex-shrink:0; }
@media (max-width:560px){
  .near-row{ grid-auto-columns:minmax(228px,78%); }
}

/* ---------- sticky bottom CTA ---------- */
.sticky-cta{ position:fixed; left:0; right:0; bottom:0; z-index:45;
  padding:12px 18px calc(12px + env(safe-area-inset-bottom,0px));
  display:flex; justify-content:center; pointer-events:none;
  transform:translateY(140%); opacity:0;
  transition:transform .32s cubic-bezier(.22,.61,.36,1), opacity .25s ease; }
.sticky-cta.is-visible{ transform:translateY(0); opacity:1; pointer-events:auto; }
.sticky-cta-btn{ pointer-events:auto; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  width:100%; max-width:520px; background:var(--accent); color:#fff;
  font-size:16px; font-weight:700; letter-spacing:-0.01em;
  padding:17px 28px; border-radius:999px;
  box-shadow:0 12px 34px rgba(0,0,0,.26), 0 2px 8px rgba(0,0,0,.16);
  transition:transform .16s ease; }
.sticky-cta-btn:hover{ transform:translateY(-2px); }
.sticky-cta-btn svg{ flex-shrink:0; }
/* disabled via Tweak */
.no-sticky-cta .sticky-cta{ display:none; }
/* desktop: hide the floating "Find materials" bar — it's a mobile-only affordance */
@media (min-width:861px){
  .sticky-cta{ display:none; }
}

/* ---------- footer ---------- */
/* rounded top + a sliver of the lighter page above it makes the footer read as a
   distinct panel — so it doesn't merge into the same-black sticky header on scroll */
.foot{ background:#0A0A0A; color:#fff; border-radius:34px 34px 0 0; margin-top:10px;
  padding:60px 0 40px; }
.foot .brand-logo{ color:#fff; }
.foot .brand-name{ color:#fff; }
.foot-stores{ margin:34px 0 8px; display:flex; gap:14px; }
/* decent, non-stretched badges (height-driven) */
.foot-stores .store-badge img{ height:48px; width:auto; }
@media (max-width:560px){
  .foot-stores{ flex-direction:row; gap:12px; }
  .foot-stores .store-badge{ flex:1; max-width:200px; }
  .foot-stores .store-badge img{ height:auto; width:100%; }
}
.foot-top{ display:grid; grid-template-columns:1.7fr 1fr 1fr 1fr; gap:40px; }
.foot h5{ font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.5); margin-bottom:18px; }
.foot ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px; }
.foot ul a{ font-size:14.5px; color:rgba(255,255,255,.72); }
.foot ul a:hover{ color:#fff; }
.foot .blurb{ color:rgba(255,255,255,.62); font-size:14.5px; line-height:1.5; max-width:280px; margin-top:16px; }
.foot-bot{ display:flex; justify-content:space-between; align-items:center; margin-top:54px;
  padding-top:26px; border-top:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.5); font-size:13.5px; flex-wrap:wrap; gap:12px; }

/* ---------- icons ---------- */
.ic svg, .ci svg{ display:block; }

@media (max-width:1000px){
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .cta-grid{ grid-template-columns:1fr; }

  /* clear separation between the suppliers row and the CTA deck on phones */
  .sec:has(.cta-grid){ padding-top:72px !important; }
  .near-row{ padding-bottom:24px !important; }

  /* swipeable deck on phones (JS adds .is-stack): cards stack in place, one in
     front and the rest fanned to the top-right. Swipe left/right or tap a dot to
     cycle. z-index:0 makes the whole deck one stacking context that sits UNDER the
     sticky header; margin-top/right give the fanned cards room to peek without clip. */
  .cta-grid.is-stack{
    display:block; position:relative; z-index:0;
    max-width:340px; margin:0 auto 0; margin-right:auto;
    padding-right:34px;          /* room for the rightward peek */
    touch-action:pan-y;          /* allow vertical page scroll, we handle horizontal */
  }
  .cta-grid.is-stack .cta-card{
    position:absolute; top:0; left:0; right:34px;
    transform-origin:center center;
    border:0;                    /* clean borderless cards — separation by shadow only */
    box-shadow:0 10px 28px rgba(0,0,0,.13), 0 2px 6px rgba(0,0,0,.06);
    -webkit-user-select:none; user-select:none;
  }
  .cta-grid.is-stack .cta-card:hover{ transform:none; }  /* disable desktop lift */
  .cta-dots{ display:flex; justify-content:center; gap:9px; margin-top:20px; }
  .cta-dot{ width:8px; height:8px; border-radius:999px; border:0; padding:0;
    background:rgba(10,10,10,.22); cursor:pointer; transition:background .2s, width .2s; }
  .cta-dot.active{ width:22px; background:var(--accent); }
  .prob-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:1fr; }
  .phones{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; grid-template-areas:"copy" "art" "cta"; row-gap:26px; }
  .split.rev{ grid-template-areas:"copy" "art" "cta"; }
  .split-cta{ margin-top:0; }
  .foot-top{ grid-template-columns:1fr 1fr; }
}

@media (max-width:560px){
  /* problem section on phones: single column, tighter padding so cards fit the panel */
  .problem{ padding:46px 20px; border-radius:26px; }
  .prob-grid{ grid-template-columns:1fr; gap:12px; margin-top:34px; }
  .prob-card{ padding:22px 22px; }
  .prob-card .pn{ margin-bottom:24px; }
}

/* ---------- FAQ accordion (shared across pages) ---------- */
.faq{ max-width:840px; margin:50px auto 0; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:0; cursor:pointer; font-family:inherit;
  padding:26px 0; display:flex; align-items:center; justify-content:space-between; gap:24px;
  font-size:clamp(17px,2vw,20px); font-weight:700; letter-spacing:-0.02em; color:var(--ink); }
.faq-ic{ position:relative; width:22px; height:22px; flex-shrink:0; }
.faq-ic::before, .faq-ic::after{ content:''; position:absolute; background:var(--ink); border-radius:2px;
  top:50%; left:50%; transition:transform .28s ease; }
.faq-ic::before{ width:16px; height:2.4px; transform:translate(-50%,-50%); }
.faq-ic::after{ width:2.4px; height:16px; transform:translate(-50%,-50%); }
.faq-item.open .faq-ic::after{ transform:translate(-50%,-50%) scaleY(0); }
.faq-a{ overflow:hidden; max-height:0; transition:max-height .3s ease; }
.faq-a p{ padding:0 0 28px; color:var(--ink-2); font-size:16px; line-height:1.65; max-width:720px; }

/* ---------- "mobile app coming soon" badges ---------- */
.store-soon{ margin-top:4px; }
.soon-label{ display:inline-block; font-family:var(--mono); font-size:11px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--ink-3); margin-bottom:11px; }
.store-badge--soon{ position:relative; opacity:.4; filter:grayscale(1); cursor:default; pointer-events:none; }
.foot .soon-label{ color:rgba(255,255,255,.5); }
.foot-contact{ margin-top:14px; font-size:14.5px; color:rgba(255,255,255,.72); display:flex; flex-wrap:wrap; gap:6px 14px; }
.foot-contact a{ color:rgba(255,255,255,.72); }
.foot-contact a:hover{ color:#fff; }
