/* ============================================================
   LINEUP — APPLE-STYLE FULL REBUILD
   Scoped under body.lineup-page
   Color-shifting sections. Full-bleed product showcases.
   No outlined cards anywhere.
   ============================================================ */

@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@300,400,500,700&f[]=satoshi@400,500,700&display=swap");

:root {
  --lp-bg-light: #fbfbfd;
  --lp-bg-white: #ffffff;
  --lp-bg-gray:  #f5f5f7;
  --lp-bg-dark:  #0a0a0a;
  --lp-ink:      #1d1d1f;
  --lp-muted:    #86868b;
  --lp-hair:     #d2d2d7;
  --lp-lime:     #C8FF00;
  --lp-display:  "Cabinet Grotesk", "Inter", system-ui, sans-serif;
  --lp-body:     "Satoshi", "Inter", system-ui, sans-serif;
  --lp-ease:     cubic-bezier(.22,.61,.36,1);
  --lp-ease-out: cubic-bezier(.16,1,.3,1);
}

/* ─── Scoped base ─── */
body.lineup-page {
  background: var(--lp-bg-light);
  color: var(--lp-ink);
  font-family: var(--lp-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02";
}
body.lineup-page main { display: block; }

/* ─── Reveal ─── */
.lp2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--lp-ease-out), transform 1s var(--lp-ease-out);
  will-change: opacity, transform;
}
.lp2-reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .lp2-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── Shared bits ─── */
.lp2-eyebrow {
  font-family: var(--lp-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin: 0 0 18px;
}
.lp2-eyebrow--lime { color: var(--lp-lime); }
.lp2-muted { color: var(--lp-muted); font-weight: 400; }
.lp2-muted-dark { color: rgba(255,255,255,.55); font-weight: 400; }

.lp2-section-title {
  font-family: var(--lp-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -.028em;
  margin: 0;
}

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.lp2-hero {
  background: var(--lp-bg-light);
  padding: clamp(140px, 16vw, 200px) clamp(20px, 4vw, 48px) clamp(80px, 10vw, 120px);
  text-align: center;
  overflow: hidden;
}
.lp2-hero__head { max-width: 1100px; margin: 0 auto; }
.lp2-hero__eyebrow {
  font-family: var(--lp-body); font-weight: 500; font-size: 15px;
  letter-spacing: -.01em; color: var(--lp-ink); margin: 0 0 22px;
}
.lp2-hero__title {
  font-family: var(--lp-display); font-weight: 500;
  font-size: clamp(44px, 6.6vw, 92px); line-height: 1.04;
  letter-spacing: -.025em; color: var(--lp-ink); margin: 0 0 28px;
}
.lp2-hero__accent { color: var(--lp-muted); font-weight: 400; }
.lp2-hero__meta {
  font-family: var(--lp-body); font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px); color: var(--lp-ink);
  margin: 0 auto clamp(60px, 8vw, 100px);
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 16px;
}
.lp2-hero__dot { color: var(--lp-muted); }
.lp2-hero__cue {
  font-family: var(--lp-body); font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lp-muted); margin: clamp(48px, 6vw, 72px) 0 0;
}

/* Fan — 3D opening animation */
.lp2-fan {
  position: relative; width: 100%; max-width: 1100px;
  margin: 0 auto; height: clamp(360px, 44vw, 600px);
  display: flex; justify-content: center; align-items: flex-end;
  perspective: 1800px;
  perspective-origin: 50% 80%;
}
.lp2-fan__card {
  position: absolute; bottom: 0;
  width: clamp(180px, 22vw, 290px); aspect-ratio: 4 / 5;
  border-radius: clamp(14px, 1.6vw, 22px);
  overflow: hidden; background: #111;
  box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 30px 70px rgba(0,0,0,.18);
  transform-origin: bottom center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  /* Stacked closed state — all cards centered, face-on */
  opacity: 0;
  transform: translate3d(0, 8%, 0) rotateZ(0deg) rotateY(0deg);
}
.lp2-fan__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp2-fan__card--1 { z-index: 1; }
.lp2-fan__card--2 { z-index: 2; }
.lp2-fan__card--3 { z-index: 5; }
.lp2-fan__card--4 { z-index: 2; }
.lp2-fan__card--5 { z-index: 1; }

/* Open states — animate to final fan positions with 3D Y-tilt */
.lp2-fan.is-in .lp2-fan__card--1 { animation: lp2-fan-open-1 1.4s var(--lp-ease-out) .35s forwards; }
.lp2-fan.is-in .lp2-fan__card--2 { animation: lp2-fan-open-2 1.3s var(--lp-ease-out) .25s forwards; }
.lp2-fan.is-in .lp2-fan__card--3 { animation: lp2-fan-open-3 1.2s var(--lp-ease-out) .10s forwards; }
.lp2-fan.is-in .lp2-fan__card--4 { animation: lp2-fan-open-4 1.3s var(--lp-ease-out) .25s forwards; }
.lp2-fan.is-in .lp2-fan__card--5 { animation: lp2-fan-open-5 1.4s var(--lp-ease-out) .35s forwards; }

@keyframes lp2-fan-open-1 {
  0%   { opacity: 0; transform: translate3d(0, 8%, 0)    rotateY(0deg)  rotateZ(0deg); }
  35%  { opacity: 1; transform: translate3d(-12%, 6%, 60px) rotateY(8deg)  rotateZ(-6deg); }
  100% { opacity: 1; transform: translate3d(-46%, 10%, 0) rotateY(-14deg) rotateZ(-22deg); }
}
@keyframes lp2-fan-open-2 {
  0%   { opacity: 0; transform: translate3d(0, 6%, 0)    rotateY(0deg)  rotateZ(0deg); }
  40%  { opacity: 1; transform: translate3d(-8%, 4%, 80px) rotateY(4deg)  rotateZ(-4deg); }
  100% { opacity: 1; transform: translate3d(-26%, 5%, 0) rotateY(-7deg)  rotateZ(-11deg); }
}
@keyframes lp2-fan-open-3 {
  0%   { opacity: 0; transform: translate3d(0, 4%, -40px) rotateY(0deg) rotateZ(0deg) scale(.94); }
  100% { opacity: 1; transform: translate3d(0, -3%, 0)   rotateY(0deg) rotateZ(0deg) scale(1); }
}
@keyframes lp2-fan-open-4 {
  0%   { opacity: 0; transform: translate3d(0, 6%, 0)    rotateY(0deg)  rotateZ(0deg); }
  40%  { opacity: 1; transform: translate3d(8%, 4%, 80px) rotateY(-4deg) rotateZ(4deg); }
  100% { opacity: 1; transform: translate3d(26%, 5%, 0)  rotateY(7deg)  rotateZ(11deg); }
}
@keyframes lp2-fan-open-5 {
  0%   { opacity: 0; transform: translate3d(0, 8%, 0)    rotateY(0deg)  rotateZ(0deg); }
  35%  { opacity: 1; transform: translate3d(12%, 6%, 60px) rotateY(-8deg) rotateZ(6deg); }
  100% { opacity: 1; transform: translate3d(46%, 10%, 0) rotateY(14deg)  rotateZ(22deg); }
}

/* Hover — gentle 3D lift on the center peak */
.lp2-fan:hover .lp2-fan__card--3 {
  transform: translate3d(0, -7%, 30px) rotateY(0deg) rotateZ(0deg) scale(1.02);
  transition: transform .5s var(--lp-ease-out);
}

@media (max-width: 720px) {
  .lp2-fan { height: clamp(280px, 70vw, 380px); perspective: 1200px; }
  .lp2-fan__card { width: clamp(140px, 38vw, 200px); }
  @keyframes lp2-fan-open-1 {
    0%   { opacity: 0; transform: translate3d(0, 8%, 0) rotateY(0deg) rotateZ(0deg); }
    100% { opacity: 1; transform: translate3d(-52%, 10%, 0) rotateY(-12deg) rotateZ(-20deg); }
  }
  @keyframes lp2-fan-open-2 {
    0%   { opacity: 0; transform: translate3d(0, 6%, 0) rotateY(0deg) rotateZ(0deg); }
    100% { opacity: 1; transform: translate3d(-28%, 4%, 0) rotateY(-6deg) rotateZ(-10deg); }
  }
  @keyframes lp2-fan-open-4 {
    0%   { opacity: 0; transform: translate3d(0, 6%, 0) rotateY(0deg) rotateZ(0deg); }
    100% { opacity: 1; transform: translate3d(28%, 4%, 0) rotateY(6deg) rotateZ(10deg); }
  }
  @keyframes lp2-fan-open-5 {
    0%   { opacity: 0; transform: translate3d(0, 8%, 0) rotateY(0deg) rotateZ(0deg); }
    100% { opacity: 1; transform: translate3d(52%, 10%, 0) rotateY(12deg) rotateZ(20deg); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp2-fan__card { opacity: 1 !important; animation: none !important; }
  .lp2-fan__card--1 { transform: translate3d(-46%, 10%, 0) rotateZ(-22deg) !important; }
  .lp2-fan__card--2 { transform: translate3d(-26%, 5%, 0)  rotateZ(-11deg) !important; }
  .lp2-fan__card--3 { transform: translate3d(0, -3%, 0)    rotateZ(0deg)   !important; }
  .lp2-fan__card--4 { transform: translate3d(26%, 5%, 0)   rotateZ(11deg)  !important; }
  .lp2-fan__card--5 { transform: translate3d(46%, 10%, 0)  rotateZ(22deg)  !important; }
}

/* ============================================================ */
/* VIBE BLOCKS — all-text                                        */
/* ============================================================ */
.lp2-vibe {
  padding: clamp(110px, 14vw, 180px) clamp(20px, 4vw, 48px);
}
.lp2-vibe--white { background: var(--lp-bg-white); }
.lp2-vibe--gray  { background: var(--lp-bg-gray); }
.lp2-vibe__inner { max-width: 1280px; margin: 0 auto; }
.lp2-vibe__title {
  font-family: var(--lp-display); font-weight: 500;
  font-size: clamp(40px, 6.4vw, 88px); line-height: 1.02;
  letter-spacing: -.028em; color: var(--lp-ink);
  margin: 0 0 clamp(40px, 6vw, 80px); max-width: 16ch;
}
.lp2-vibe__accent { color: var(--lp-muted); font-weight: 400; }
.lp2-vibe__row {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: start;
}
@media (min-width: 880px) { .lp2-vibe__row { grid-template-columns: 1.15fr 1fr; } }
.lp2-vibe__body {
  font-family: var(--lp-display); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.32;
  letter-spacing: -.012em; color: var(--lp-ink);
  margin: 0; max-width: 22ch;
}
.lp2-vibe__body-wide {
  font-family: var(--lp-display); font-weight: 300;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.4;
  letter-spacing: -.012em; color: var(--lp-ink);
  margin: 0; max-width: 50ch;
}
.lp2-vibe__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 540px) { .lp2-vibe__stats { grid-template-columns: 1fr; gap: 28px; } }
.lp2-stat { display: flex; flex-direction: column; gap: 6px; }
.lp2-stat__num {
  font-family: var(--lp-display); font-weight: 500;
  font-size: clamp(46px, 5vw, 64px); line-height: 1;
  letter-spacing: -.03em; color: var(--lp-ink);
  display: inline-flex; align-items: baseline;
}
.lp2-stat__sub { font-size: .55em; color: var(--lp-muted); font-weight: 400; margin-left: 2px; }
.lp2-stat__label {
  font-family: var(--lp-body); font-weight: 500;
  font-size: clamp(14px, 1.1vw, 15px); letter-spacing: -.005em;
  color: var(--lp-muted);
}

/* ============================================================ */
/* LINEUP INTRO                                                  */
/* ============================================================ */
.lp2-lineup-intro {
  background: var(--lp-bg-white);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px) clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--lp-hair);
}
.lp2-lineup-intro__inner { max-width: 1280px; margin: 0 auto; }

/* ============================================================ */
/* SHOW — product showcases (full-bleed, alternating bg)         */
/* ============================================================ */
.lp2-show {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
}
.lp2-show--light { background: var(--lp-bg-gray); }
.lp2-show--white { background: var(--lp-bg-white); }
.lp2-show--dark  { background: var(--lp-bg-dark); color: #fff; }

.lp2-show__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
@media (min-width: 880px) {
  .lp2-show__inner { grid-template-columns: 1fr 1fr; }
  .lp2-show--reverse .lp2-show__inner > .lp2-show__copy  { order: 2; }
  .lp2-show--reverse .lp2-show__inner > .lp2-show__media { order: 1; }
}

.lp2-show__copy { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.lp2-show__eyebrow {
  font-family: var(--lp-body); font-weight: 500; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lp-muted); margin: 0;
}
.lp2-show__title {
  font-family: var(--lp-display); font-weight: 500;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.02;
  letter-spacing: -.025em; color: inherit; margin: 0;
}
.lp2-show__body {
  font-family: var(--lp-display); font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.4;
  letter-spacing: -.01em; color: var(--lp-ink); margin: 0;
  max-width: 32ch;
}
.lp2-show__body--dark { color: rgba(255,255,255,.78); }
.lp2-show__price {
  font-family: var(--lp-body); font-weight: 500; font-size: 14px;
  letter-spacing: .005em; color: var(--lp-muted); margin: 4px 0 0;
}
.lp2-show__price strong { color: var(--lp-ink); font-weight: 700; }
.lp2-show__price--dark { color: rgba(255,255,255,.55); }
.lp2-show__price--dark strong { color: #fff; }

.lp2-show__ctas { display: flex; align-items: center; gap: 28px; margin-top: 8px; }

.lp2-show__media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: clamp(16px, 1.8vw, 24px);
  overflow: hidden;
  background: #111;
  box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 30px 80px rgba(0,0,0,.18);
}
.lp2-show__media img,
.lp2-show__media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Buttons + links */
.lp2-link {
  font-family: var(--lp-body); font-weight: 500;
  font-size: 16px; color: #0066cc; text-decoration: none;
  letter-spacing: -.005em;
  transition: color .2s var(--lp-ease);
}
.lp2-link:hover { color: #004ea1; }
.lp2-link--dark { color: var(--lp-lime); }
.lp2-link--dark:hover { color: #d8ff33; }

.lp2-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #0066cc; color: #fff;
  font-family: var(--lp-body); font-weight: 600;
  font-size: 14px; padding: 12px 22px; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .25s var(--lp-ease), background .25s var(--lp-ease);
}
.lp2-btn:hover { transform: translateY(-2px); background: #004ea1; }
.lp2-btn--lime { background: var(--lp-lime); color: var(--lp-ink); font-weight: 700; }
.lp2-btn--lime:hover { background: #d8ff33; }
.lp2-btn--big { font-size: 16px; padding: 18px 32px; }

/* ============================================================ */
/* COMPARE CTA                                                   */
/* ============================================================ */
.lp2-compare-cta {
  background: var(--lp-bg-light);
  padding: clamp(100px, 13vw, 160px) clamp(20px, 4vw, 48px);
  text-align: center;
  border-top: 1px solid var(--lp-hair);
}
.lp2-compare-cta__inner { max-width: 900px; margin: 0 auto; }
.lp2-compare-cta__title {
  font-family: var(--lp-display); font-weight: 500;
  font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02;
  letter-spacing: -.025em; margin: 0 0 36px;
}

/* ============================================================ */
/* QUOTE BAND                                                    */
/* ============================================================ */
.lp2-quote {
  background: var(--lp-bg-white);
  padding: clamp(100px, 13vw, 170px) clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--lp-hair);
}
.lp2-quote__inner {
  max-width: 1100px; margin: 0 auto; text-align: center;
  position: relative; min-height: 320px;
}
.lp2-quote__item {
  margin: 0; opacity: 0;
  position: absolute; inset: 40px 0 0; padding: 0;
  transition: opacity .8s var(--lp-ease-out);
  pointer-events: none;
}
.lp2-quote__item.is-active { opacity: 1; position: relative; inset: auto; pointer-events: auto; }
.lp2-quote__text {
  font-family: var(--lp-display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 48px); line-height: 1.18;
  letter-spacing: -.02em; color: var(--lp-ink);
  margin: 0 auto 28px; max-width: 22ch;
}
.lp2-quote__by {
  font-family: var(--lp-body); font-size: 15px; color: var(--lp-muted);
  letter-spacing: -.005em;
}
.lp2-quote__by strong { color: var(--lp-ink); font-weight: 700; }
.lp2-quote__dots {
  display: flex; gap: 10px; justify-content: center;
  margin-top: clamp(36px, 5vw, 56px);
}
.lp2-quote__dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--lp-hair); border: none; padding: 0; cursor: pointer;
  transition: background .25s var(--lp-ease), transform .25s var(--lp-ease);
}
.lp2-quote__dot.is-on { background: var(--lp-ink); transform: scale(1.3); }

/* ============================================================ */
/* SUBSCRIBE — dark band                                         */
/* ============================================================ */
.lp2-sub {
  background: var(--lp-bg-dark); color: #fff;
  padding: clamp(100px, 13vw, 170px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.lp2-sub__inner { max-width: 760px; margin: 0 auto; }
.lp2-sub__title {
  font-family: var(--lp-display); font-weight: 500;
  font-size: clamp(36px, 5.4vw, 72px); line-height: 1.02;
  letter-spacing: -.025em; color: #fff; margin: 0 0 24px;
}
.lp2-sub__body {
  font-family: var(--lp-display); font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px); line-height: 1.4;
  color: rgba(255,255,255,.65); margin: 0 0 40px;
  max-width: 44ch; margin-left: auto; margin-right: auto;
}
.lp2-sub__form {
  display: flex; align-items: stretch; gap: 0;
  max-width: 520px; margin: 0 auto 18px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: border-color .25s var(--lp-ease);
}
.lp2-sub__form:focus-within { border-bottom-color: var(--lp-lime); }
.lp2-sub__form input {
  flex: 1; background: transparent; border: none;
  color: #fff; font-family: var(--lp-body); font-weight: 500;
  font-size: 18px; padding: 16px 0; outline: none;
}
.lp2-sub__form input::placeholder { color: rgba(255,255,255,.35); }
.lp2-sub__form button {
  background: transparent; border: none;
  color: var(--lp-lime); font-family: var(--lp-body);
  font-weight: 700; font-size: 16px; cursor: pointer;
  padding: 16px 0 16px 24px;
  transition: color .2s var(--lp-ease);
}
.lp2-sub__form button:hover { color: #d8ff33; }
.lp2-sub__success {
  font-family: var(--lp-display); font-weight: 500;
  font-size: 20px; color: var(--lp-lime); margin: 0;
}
.lp2-sub__fine {
  font-family: var(--lp-body); font-size: 12px;
  color: rgba(255,255,255,.4); margin: 18px 0 0;
}

/* ============================================================ */
/* Footer scoping                                                */
/* ============================================================ */
body.lineup-page .footer    { background: #0a0a0a; color: #fff; }
body.lineup-page .copyright { background: #0a0a0a; color: rgba(255,255,255,.55); }
body.lineup-page .copyright strong { color: #fff; }

/* ============================================================ */
/* LP3 — APPLE /ipad/ STYLE LINEUP INDEX                         */
/* Title → icon nav row → tile grid with colored backgrounds     */
/* ============================================================ */

/* Top band — white, generous padding above and below */
.lp3-top {
  background: var(--lp-bg-white);
  padding: clamp(100px, 12vw, 160px) clamp(20px, 4vw, 48px) clamp(60px, 7vw, 90px);
}
.lp3-top__inner { max-width: 1240px; margin: 0 auto; }
.lp3-top__title {
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--lp-ink);
  margin: 0 0 clamp(60px, 7vw, 96px);
  text-align: left;
}

/* Icon row — wraps to 2 lines on narrow screens */
.lp3-iconrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px) clamp(28px, 3.5vw, 56px);
  padding: 0 clamp(10px, 2vw, 32px);
}
.lp3-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-ink);
  position: relative;
  min-width: 80px;
  transition: transform .25s var(--lp-ease-out);
}
.lp3-icon:hover { transform: translateY(-2px); }
.lp3-icon__thumb {
  width: clamp(56px, 6vw, 78px);
  height: clamp(70px, 7.5vw, 98px);
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 6px 18px rgba(0,0,0,.08);
}
.lp3-icon__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp3-icon__thumb--compare {
  display: flex; align-items: center; justify-content: center;
  background: var(--lp-bg-gray);
  box-shadow: none;
}
.lp3-icon__thumb--compare svg { width: 60%; height: 60%; }
.lp3-icon__label {
  font-family: var(--lp-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -.005em;
  color: var(--lp-ink);
  text-align: center;
  line-height: 1.25;
}
.lp3-icon__badge {
  font-family: var(--lp-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ff8a00; /* Apple-style "New" orange */
  margin-top: -4px;
}

/* Explore the lineup — gray band */
.lp3-explore {
  background: var(--lp-bg-gray);
  padding: clamp(80px, 9vw, 120px) clamp(20px, 4vw, 48px) clamp(80px, 9vw, 120px);
}
.lp3-explore__inner { max-width: 1240px; margin: 0 auto; }
.lp3-explore__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
}
.lp3-explore__title {
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.022em;
  color: var(--lp-ink);
  margin: 0;
}
.lp3-explore__link {
  font-family: var(--lp-body);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 17px);
  color: #0066cc;
  text-decoration: none;
  transition: color .2s;
}
.lp3-explore__link:hover { text-decoration: underline; }

/* Tile grid */
.lp3-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}
@media (max-width: 1100px) { .lp3-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .lp3-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .lp3-tiles { grid-template-columns: 1fr; } }

.lp3-tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 22px;
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 32px) clamp(28px, 3vw, 40px);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--lp-ease-out), box-shadow .35s var(--lp-ease-out);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.lp3-tile:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(0,0,0,.12); }

/* Apple-style soft gradient backgrounds, one per tile */
.lp3-tile--c1 { background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%); color: #fff; }
.lp3-tile--c2 { background: linear-gradient(180deg, #cfe8ff 0%, #a8d4ff 100%); }
.lp3-tile--c3 { background: linear-gradient(180deg, #f0f0f3 0%, #d8d8de 100%); }
.lp3-tile--c4 { background: linear-gradient(180deg, #e8e2f5 0%, #c9b8e8 100%); }
.lp3-tile--c5 { background: linear-gradient(180deg, #ffe7d4 0%, #ffc89a 100%); }
.lp3-tile--c6 { background: linear-gradient(180deg, #0a0a0a 0%, #1d1d1f 100%); color: #fff; }
.lp3-tile--c7 { background: linear-gradient(180deg, #d4f5e0 0%, #a8e6c0 100%); }

.lp3-tile__ribbon {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--lp-lime);
  color: #0a0a0a;
  font-family: var(--lp-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.lp3-tile__art {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(10px, 1.5vw, 18px) 0 clamp(20px, 2.4vw, 28px);
  min-height: 240px;
}
.lp3-tile__art img,
.lp3-tile__art video {
  max-width: 80%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.lp3-tile__art--video video { background: #000; }

.lp3-tile__meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.lp3-tile__name {
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -.018em;
  margin: 0;
  line-height: 1.1;
}
.lp3-tile__tag {
  font-family: var(--lp-body);
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.4;
  margin: 0;
  opacity: .78;
  max-width: 28ch;
}
.lp3-tile__price {
  font-family: var(--lp-body);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  margin: 8px 0 0;
}
.lp3-tile__price strong { font-weight: 700; }
.lp3-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0066cc;
  color: #fff;
  font-family: var(--lp-body);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-top: 10px;
  transition: background .2s;
}
.lp3-tile:hover .lp3-tile__cta { background: #004ea1; }

/* Dark tiles — lime CTA */
.lp3-tile--c1 .lp3-tile__cta,
.lp3-tile--c6 .lp3-tile__cta {
  background: var(--lp-lime);
  color: #0a0a0a;
}
.lp3-tile--c1:hover .lp3-tile__cta,
.lp3-tile--c6:hover .lp3-tile__cta {
  background: #b8e600;
}
