/* ============================================================
   Homepage layout
   Section order follows the standard e-commerce funnel:
   offer → browse → find-my-model → new stock → proof → contact.
   ============================================================ */

/* ---------- FULL-BLEED HERO ---------- */

.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.stage {
  position: relative;
  min-height: clamp(360px, 46vw, 560px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(40px, 6vw, 80px) var(--pad);
}
.stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,16,.42) 0%, rgba(10,12,16,.30) 45%, rgba(10,12,16,.62) 100%);
  z-index: -1;
}
.stage--plain::after {
  background: radial-gradient(110% 120% at 50% 0%, color-mix(in srgb, var(--volt) 48%, transparent), transparent 62%),
              linear-gradient(160deg, #12151B 30%, #23282F 100%);
}

.stage__inner { max-width: 780px; }

.stage h1 {
  font-size: clamp(30px, 6vw, 62px);
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(0,0,0,.42);
  margin-bottom: 12px;
}
.stage__sub {
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: 26px;
  text-shadow: 0 1px 14px rgba(0,0,0,.5);
}

/* countdown, centred under the headline */
.clock {
  display: flex;
  gap: clamp(10px, 2.4vw, 26px);
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}
.clock__unit { min-width: 58px; }
.clock__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.03em;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.clock__unit small {
  display: block;
  margin-top: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.clock__sep {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  opacity: .5;
  line-height: 1;
}
.stage--over .clock { display: none; }

.stage .btn {
  background: #fff;
  color: var(--ink);
  padding: 15px 34px;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.stage .btn:hover { background: #F2F4F7; }

/* ---------- DEVICE ZONE (dark, full width) ---------- */

.zone {
  background: #12151B;
  color: #fff;
  padding-block: clamp(38px, 5vw, 66px);
}
.zone__block { margin-bottom: 38px; }
.zone__block:last-child { margin-bottom: 0; }
.zone h2 { color: #fff; font-size: clamp(19px, 2.4vw, 25px); margin-bottom: 4px; }
.zone__note { color: rgba(255,255,255,.56); font-size: 13.5px; margin-bottom: 16px; }

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 16px;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s;
}
.tabs button:hover { border-color: rgba(255,255,255,.42); color: #fff; }
.tabs button.is-on { background: #fff; color: var(--ink); border-color: #fff; font-weight: 600; }

.models {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 10px;
}
.model {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 10px 14px;
  border-radius: var(--r);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-align: center;
  transition: background .18s, border-color .18s, transform .18s;
}
.model:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}
.model__glyph {
  width: 26px; height: 40px;
  border-radius: 6px;
  border: 1.6px solid rgba(255,255,255,.45);
}

/* "beyond phones" cards */
.beyond {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.beyond a {
  padding: 26px 18px;
  border-radius: var(--r);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  text-align: center;
  transition: background .18s, border-color .18s, transform .18s;
}
.beyond a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}
.beyond svg { color: rgba(255,255,255,.72); margin-bottom: 12px; }
.beyond strong { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.beyond span { font-size: 12.5px; color: rgba(255,255,255,.52); }

/* ---------- CAROUSEL CONTROLS ---------- */

.carousel { position: relative; }

.carousel__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.carousel__track-line {
  flex: 1;
  height: 2px;
  background: var(--haze-2);
  position: relative;
  overflow: hidden;
}
.carousel__track-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--ink);
  transition: width .25s, transform .25s;
}
.carousel__btns { display: flex; gap: 8px; }
.carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: var(--surface);
  transition: border-color .2s, background .2s;
}
.carousel__btn:hover { border-color: var(--ink); }
.carousel__btn[disabled] { opacity: .35; pointer-events: none; }

/* the scroller itself */
.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller > * { scroll-snap-align: start; }

@media (max-width: 760px) {
  .scroller { grid-auto-columns: minmax(46%, 1fr); gap: 10px; }
  .carousel__btns { display: none; }
}

/* "browse all" card that sits first in a carousel */
.browse-all {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--haze);
  min-height: 100%;
}
.browse-all img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.browse-all span {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* ---------- CATEGORY FEATURE BLOCKS ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.feature + .feature { margin-top: clamp(30px, 5vw, 60px); }
.feature--flip .feature__media { order: -1; }

.feature__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink-3);
  line-height: 1.25;
  margin-bottom: 18px;
}
.feature__eyebrow strong { display: block; color: var(--ink); }

.feature__thumbs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.feature__thumbs img {
  width: 62px; height: 62px;
  object-fit: contain;
  background: var(--haze);
  border-radius: var(--r-sm);
  padding: 6px;
}
.feature p { color: var(--ink-2); margin-bottom: 20px; max-width: 38ch; }

.feature__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--haze);
  aspect-ratio: 4 / 3;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* ---------- WHY SHOP WITH US ---------- */

.why {
  display: grid;
  grid-template-columns: .85fr 2fr;
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
}
.why__lead span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: block;
  margin-bottom: 10px;
}
.why__lead h2 { margin-bottom: 12px; }
.why__lead p { color: var(--ink-2); margin-bottom: 20px; }

.why__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.why__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}
.why__card svg { color: var(--ink); margin-bottom: 16px; }
.why__card strong { font-size: 15px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.why__card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 12px; }
.why__card a { font-size: 13px; font-weight: 600; color: var(--volt); margin-top: auto; }

@media (max-width: 860px) { .why { grid-template-columns: 1fr; } }

/* ---------- REVIEW STRIP ---------- */

.rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 14px;
}
.rating-line__word {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.rating-line__stars { color: #F5A524; font-size: 17px; letter-spacing: -1px; }
.rating-line strong { font-family: var(--font-display); font-weight: 600; }

.review {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.review__top { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.review__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.review__who strong { display: block; font-size: 14px; font-weight: 600; }
.review__who span { font-size: 12px; color: var(--ink-3); }
.review__stars { color: #F5A524; font-size: 13px; letter-spacing: -.5px; margin-bottom: 8px; }
.review p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
.review__item {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12.5px;
  color: var(--ink-3);
}

/* ---------- SHARED ---------- */

.center-head { text-align: center; margin-bottom: 24px; }
.center-head h2 { margin-bottom: 6px; }
.center-head p { color: var(--ink-2); font-size: 14px; }
