/* ============================================================
   MOBILIUS — corporate landing
   Brand: Intro font · #EB6420 orange · #4E565A gray · #EBECEC light
   ============================================================ */

@font-face {
  font-family: 'Intro';
  src: url('../fonts/Intro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Intro';
  src: url('../fonts/Intro-Book.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Intro';
  src: url('../fonts/Intro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #EB6420;
  --orange-2: #F7941D;
  --orange-text: #BC4A0D; /* darkened brand orange: >=4.5:1 on white for small text */
  --orange-soft: #FDEFE6;
  --black: #0C0C0D;
  --ink: #1C1E1F;
  --gray: #4E565A;
  --light: #EBECEC;
  --paper: #FFF9F5;
  --white: #FFFFFF;
  --radius: 22px;
  --shadow-lg: 0 30px 70px -20px rgba(12, 12, 13, .25);
  --shadow-sm: 0 12px 30px -12px rgba(12, 12, 13, .18);
  --grad: linear-gradient(96deg, #EB6420 0%, #F7941D 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Intro', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { width: min(1200px, 92vw); margin-inline: auto; }

::selection { background: var(--orange); color: #fff; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}
section[id] { scroll-margin-top: 90px; }

/* ---------- section label with brand square dots ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange-text);
}
.dark .tag { color: var(--orange-2); }
.tag::before, .tag::after {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  flex: none;
}

h1, h2, h3 { font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
h2 { font-size: clamp(30px, 4.4vw, 52px); margin: 18px 0 16px; }
.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--gray); max-width: 60ch; }

section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }

/* ============================ NAV ============================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 22px 0;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(12, 12, 13, .08);
  padding: 12px 0;
}
.nav-in { display: flex; align-items: center; gap: 34px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--ink);
  position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--grad); transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff;
  font-family: inherit; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border: 0; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 12px 30px -10px rgba(235, 100, 32, .55);
  transition: transform .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(235, 100, 32, .65); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 2px solid rgba(12,12,13,.16); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--orange); color: var(--orange); }
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 2px solid rgba(12,12,13,.16); border-radius: 12px;
  background: #fff; cursor: pointer;
  place-items: center; color: var(--ink);
}
.burger svg { width: 22px; height: 22px; }
.burger .x { display: none; }
.nav.open .burger .bars { display: none; }
.nav.open .burger .x { display: block; }

/* ============================ HERO ============================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 0;
  background: var(--paper);
  overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .5; pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}
.blob.b1 { width: 46vw; height: 46vw; background: radial-gradient(circle, #F7941D, transparent 65%); top: -14vw; right: -10vw; }
.blob.b2 { width: 34vw; height: 34vw; background: radial-gradient(circle, #EB6420, transparent 65%); bottom: -8vw; left: -12vw; animation-delay: -8s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4vw, 3vw) scale(1.12); }
}

.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(235,100,32,.25);
  border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 400; color: var(--gray);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(235,100,32,.5); }
  60% { box-shadow: 0 0 0 9px rgba(235,100,32,0); }
}
.hero h1 { font-size: clamp(36px, 5vw, 64px); }
.hero h1 .flip {
  display: block; color: var(--orange); min-height: 1.15em; position: relative;
}
.hero h1 .flip span {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(60%) rotateX(60deg);
  transition: opacity .5s, transform .5s;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.hero h1 .flip span.on {
  opacity: 1; transform: translateY(0) rotateX(0);
}
.hero .lead { margin: 22px 0 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.paths { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.path-chip {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px;
  background: #fff; border: 1.5px solid rgba(78,86,90,.2);
  border-radius: 999px; padding: 9px 20px;
  font-size: 13.5px; font-weight: 700; color: var(--ink);
  transition: border-color .25s, color .25s, transform .25s;
  cursor: pointer;
}
.path-chip svg { width: 15px; height: 15px; flex: none; color: var(--orange-text); transition: transform .25s; }
.path-chip:hover { border-color: var(--orange); color: var(--orange-text); transform: translateY(-2px); }
.path-chip:hover svg { transform: translateX(3px); }

/* hero photo card */
.hero-photo {
  position: relative;
  width: min(440px, 88%);
  justify-self: center;
}
.hero-photo figure {
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(2.2deg);
  box-shadow: 0 40px 90px -25px rgba(12, 12, 13, .4);
  border: 6px solid #fff;
  aspect-ratio: 3 / 4;
  transition: transform .5s;
}
.hero-photo:hover figure { transform: rotate(.6deg) translateY(-4px); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hp-chip {
  position: absolute;
  background: #fff; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  padding: 12px 22px;
  font-weight: 700; font-size: 14px;
  animation: float 5.5s ease-in-out infinite;
  white-space: nowrap;
}
.hp-chip.h1c { top: 6%; left: -9%; color: var(--orange-text); }
.hp-chip.h2c { bottom: 9%; right: -7%; animation-delay: -2.4s; }

/* floating cases collage (legacy) */
.hero-visual { position: relative; height: min(600px, 72vw); }
.hero-visual .case {
  position: absolute; border-radius: 18%;
  filter: drop-shadow(0 30px 40px rgba(12,12,13,.28));
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
.hero-visual .case img { width: 100%; height: auto; }
.case.k1 { width: 46%; left: 26%; top: 4%; z-index: 3; animation-delay: -1s; }
.case.k2 { width: 34%; left: 0;  top: 26%; z-index: 2; animation-delay: -2.5s; }
.case.k3 { width: 34%; right: 0; top: 22%; z-index: 2; animation-delay: -4s; }
.case.k4 { width: 30%; left: 12%; bottom: 2%; z-index: 1; animation-delay: -3s; }
.case.k5 { width: 30%; right: 10%; bottom: 0; z-index: 1; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--rot, 0deg)); }
}
.case.k2 { --rot: -8deg; } .case.k3 { --rot: 8deg; }
.case.k4 { --rot: -14deg; } .case.k5 { --rot: 14deg; }

/* stats strip */
.hero-stats {
  position: relative; z-index: 2;
  margin-top: clamp(40px, 6vw, 80px);
  background: var(--black); color: #fff;
  border-top: 4px solid var(--orange);
}
.hero-stats .row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 10px; padding: 30px 0;
}
.stat { text-align: center; padding: 8px 6px; }
.stat b {
  display: block; font-size: clamp(26px, 3vw, 42px);
  font-weight: 700; color: var(--orange-2); line-height: 1;
}
.stat small { display: block; margin-top: 8px; font-size: 12.5px; letter-spacing: .06em; color: #B9BEC1; text-transform: uppercase; }

/* ======================= MARQUEE BILLBOARD ======================= */
.marquee {
  background: var(--grad); color: #fff;
  padding: 16px 0; overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: slide 26s linear infinite;
  font-weight: 700; font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.marquee-track .sq { color: rgba(255,255,255,.7); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================ ABOUT ============================ */
.about-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 22px; margin-top: 48px;
}
.card {
  background: var(--paper); border: 1px solid rgba(78,86,90,.12);
  border-radius: var(--radius); padding: 34px 30px;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(235,100,32,.35); }
.card .num {
  font-size: 13px; font-weight: 700; color: var(--orange-text);
  letter-spacing: .2em; margin-bottom: 16px; display: block;
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--gray); }
.card.span4 { grid-column: span 4; }
.card.span6 { grid-column: span 6; }
.card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform .45s;
}
.card:hover::after { transform: scaleX(1); }

/* endless photo strip under About */
.photo-strip {
  margin-top: clamp(44px, 6vw, 70px);
  overflow: hidden; position: relative;
}
.photo-strip::before, .photo-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.photo-strip::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.photo-strip::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.strip-track {
  display: flex; gap: 18px; width: max-content;
  animation: slide 48s linear infinite;
}
.photo-strip:hover .strip-track { animation-play-state: paused; }
.strip-track figure {
  height: clamp(220px, 26vw, 320px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden; flex: none;
  box-shadow: var(--shadow-sm);
}
.strip-track img { height: 100%; width: 100%; object-fit: cover; display: block; }

.about-photos {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; margin-top: 22px;
}
.about-photos figure {
  border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); min-height: 260px;
}
.about-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.about-photos figure:hover img { transform: scale(1.05); }
.about-photos figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(12,12,13,.72); color: #fff; backdrop-filter: blur(6px);
  font-size: 13px; padding: 8px 16px; border-radius: 999px;
}

/* ========================= PRINT ON DEMAND ========================= */
.pod { background: var(--paper); position: relative; overflow: hidden; }
.pod::after {
  content: ''; position: absolute; right: -14vw; top: -14vw;
  width: 44vw; height: 44vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,.18), transparent 65%);
  pointer-events: none;
}
.pod-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 40px; margin-top: 54px; align-items: start;
  position: relative; z-index: 1;
}
.pod-steps { display: grid; gap: 16px; }
.pod-step {
  display: flex; gap: 22px; align-items: flex-start;
  background: #fff; border: 1px solid rgba(78,86,90,.12);
  border-radius: var(--radius); padding: 26px 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.pod-step:hover { transform: translateX(6px); border-color: rgba(235,100,32,.4); box-shadow: var(--shadow-sm); }
.pod-step > b {
  flex: none; width: 52px; height: 52px; border-radius: 16px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 700;
  box-shadow: 0 10px 22px -8px rgba(235,100,32,.55);
}
.pod-step h3 { font-size: 19px; margin-bottom: 6px; }
.pod-step p { font-size: 14.5px; color: var(--gray); }
.pod-hl {
  position: sticky; top: 110px;
  background: var(--black); color: #fff;
  border-radius: var(--radius); padding: 40px 36px;
  border-bottom: 5px solid var(--orange);
  box-shadow: var(--shadow-lg);
}
.pod-hl h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
.pod-hl p { margin: 16px 0 20px; font-size: 15px; color: #A6ACB0; }
.pod-hl .brands { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pod-hl .brands span {
  font-size: 12.5px; font-weight: 700;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 7px 14px; color: #EBECEC;
}
.btn.light { background: #fff; color: var(--ink); box-shadow: none; }
.btn.light:hover { background: var(--orange-soft); }

/* ========================= DARK / BRANDS ========================= */
.dark { background: var(--black); color: #fff; }
.dark h2 { color: #fff; }
.dark .lead { color: #A6ACB0; }

.brand-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 50px;
}
.brand-card {
  background: #fff; border-radius: var(--radius);
  padding: 34px 26px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  min-height: 190px; justify-content: center;
  transition: transform .35s, box-shadow .35s;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -18px rgba(247,148,29,.45); }
.brand-card img { max-height: 88px; max-width: 78%; object-fit: contain; }
.brand-card small {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gray);
}
.brand-card.dark-chip { background: #161719; border: 1px solid rgba(255,255,255,.12); }
.brand-card.dark-chip small { color: #A6ACB0; }
img.inv { filter: brightness(0); }

.franchise-row {
  margin-top: 44px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.fr-label {
  font-size: 12px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--orange-2); flex: none;
}
.fr-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.fr-chip {
  background: #fff; border-radius: 14px;
  height: 58px; min-width: 96px; padding: 10px 18px;
  display: grid; place-items: center;
}
.fr-chip img { max-height: 34px; max-width: 110px; object-fit: contain; }
.fr-chip.txt {
  font-size: 13.5px; font-weight: 700; color: var(--ink);
  letter-spacing: .04em; white-space: nowrap;
}

.license-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 50px;
}
.license-card {
  background: #161719; border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: transform .35s, border-color .35s;
  transform-style: preserve-3d; will-change: transform;
}
.license-card:hover { border-color: rgba(235,100,32,.6); }
.license-card .mark {
  font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; line-height: 1.15;
  letter-spacing: .02em;
  background: linear-gradient(100deg, #fff 20%, #F7941D 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.license-card .kind {
  display: inline-block; margin-bottom: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange-2); border: 1px solid rgba(235,100,32,.5);
  padding: 5px 12px; border-radius: 999px;
}
.license-card p { margin-top: 12px; font-size: 14.5px; color: #A6ACB0; }
.license-card .glow {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(235,100,32,.35), transparent 70%);
  top: -80px; right: -80px; pointer-events: none;
}
.license-note { margin-top: 34px; font-size: 13.5px; color: #7d858a; }

/* ========================= CAROUSEL ========================= */
.car-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.car-nav { display: flex; gap: 12px; }
.car-btn {
  width: 54px; height: 54px; border-radius: 50%;
  border: 2px solid rgba(12,12,13,.15); background: #fff;
  font-size: 20px; cursor: pointer; color: var(--ink);
  transition: all .25s; display: grid; place-items: center;
}
.car-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.carousel { margin-top: 44px; overflow: hidden; cursor: grab; }
.carousel.dragging { cursor: grabbing; }
.car-track {
  display: flex; gap: 22px;
  transition: transform .65s cubic-bezier(.22, .8, .27, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 clamp(260px, 30vw, 400px);
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 3 / 4; background: var(--light);
  user-select: none;
}
.slide.wide { flex-basis: clamp(340px, 44vw, 600px); aspect-ratio: 3 / 2.35; }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s; pointer-events: none;
}
.slide:hover img { transform: scale(1.06); }
.slide figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 44px 20px 18px;
  background: linear-gradient(transparent, rgba(12,12,13,.78));
  color: #fff; font-size: 14px; font-weight: 400;
}
.car-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.car-dots button {
  width: 44px; height: 44px; border: 0; background: none;
  display: grid; place-items: center; cursor: pointer; padding: 0;
}
.car-dots button::after {
  content: ''; width: 9px; height: 9px; border-radius: 99px;
  background: rgba(12,12,13,.22); transition: all .3s;
}
.car-dots button.on::after { width: 30px; background: var(--orange); }

/* ========================= MERCH ========================= */
.merch { background: var(--paper); }
.merch-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.merch-list { margin-top: 26px; display: grid; gap: 14px; }
.merch-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid rgba(78,86,90,.12);
  padding: 16px 20px; border-radius: 16px; font-size: 15px;
  transition: transform .3s, border-color .3s;
}
.merch-list li:hover { transform: translateX(6px); border-color: rgba(235,100,32,.4); }
.merch-list b { color: var(--orange-text); font-size: 18px; line-height: 1.2; }
.merch-visual { position: relative; }
.merch-visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.merch-visual .float-chip {
  position: absolute; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 14px 22px;
  font-weight: 700; font-size: 15px;
  animation: float 5s ease-in-out infinite;
}
.float-chip.f1 { top: 8%; left: -6%; color: var(--orange); }
.float-chip.f2 { bottom: 10%; right: -4%; animation-delay: -2s; }

.pack-note {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px;
  background: #fff; border: 1.5px dashed rgba(235,100,32,.55);
  border-radius: 16px; padding: 16px 20px;
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.pack-note svg { width: 26px; height: 26px; flex: none; color: var(--orange-text); }

/* good merch vs bad merch */
.compare {
  margin-top: 70px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 26px; align-items: stretch;
}
.cmp-card {
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; gap: 28px; align-items: center;
  border: 1px solid rgba(78,86,90,.14);
}
.cmp-card.bad { background: #fff; }
.cmp-card.good {
  background: var(--black); color: #fff;
  border-color: transparent;
  border-bottom: 5px solid var(--orange);
}
.cmp-arrow {
  align-self: center; font-size: 40px; font-weight: 700; color: var(--orange);
}
.cmp-phone {
  flex: none; width: 108px; height: 196px;
  border-radius: 26px; position: relative;
  background: #DDE0E2; overflow: hidden;
  box-shadow: inset 0 0 0 5px rgba(12,12,13,.14), 0 14px 30px -12px rgba(12,12,13,.35);
}
.cmp-phone .cam {
  position: absolute; top: 12px; left: 12px;
  width: 34px; height: 34px; border-radius: 12px;
  background: rgba(12,12,13,.22);
}
.cmp-phone .logo-blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #9AA0A4; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 7px 12px; border-radius: 4px;
}
.cmp-phone.art { background: linear-gradient(160deg, #EB6420 0%, #F7941D 55%, #FDC57B 100%); }
.cmp-phone.art i {
  position: absolute; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.5);
}
.cmp-phone.art .p1 { width: 120px; height: 120px; right: -44px; bottom: -44px; }
.cmp-phone.art .p2 { width: 74px; height: 74px; right: -20px; bottom: -20px; border-color: rgba(255,255,255,.75); }
.cmp-phone.art .p3 { width: 44px; height: 44px; left: -14px; top: 52px; border-color: rgba(12,12,13,.3); }
.cmp-phone .logo-int {
  position: absolute; left: 12px; bottom: 16px;
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .14em;
  border-left: 3px solid #fff; padding-left: 8px; line-height: 1.3;
}
/* real Vision case inside the "good" card */
.cmp-card.good.vision {
  flex-direction: column; align-items: stretch; gap: 20px;
}
.cmp-card.good.vision .cmp-text { display: flex; flex-direction: column; }
.cmp-card.good.vision .cmp-text p { max-width: none; }
.v-collage {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; width: 100%;
}
.v-collage img {
  height: clamp(120px, 11vw, 168px); width: auto; border-radius: 14px;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.55);
  transition: transform .3s;
}
.v-collage img:hover { transform: translateY(-6px); }
.v-logo-t { height: 56px; width: auto; display: block; margin-bottom: 14px; align-self: flex-start; }

.cmp-text b { display: block; font-size: 18px; margin-bottom: 8px; }
.cmp-card.bad .cmp-text b { color: #B9494F; }
.cmp-card.good .cmp-text b { color: var(--orange-2); }
.cmp-text p { font-size: 14.5px; color: var(--gray); max-width: 34ch; }
.cmp-card.good .cmp-text p { color: #C9CDCF; }

/* client logo wall (marquee of typographic chips) */
.logo-wall { margin-top: 70px; overflow: hidden; position: relative; }
.logo-wall::before, .logo-wall::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-wall::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.logo-wall::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.logo-track {
  display: flex; gap: 18px; width: max-content;
  animation: slide 34s linear infinite;
  padding: 4px 0;
}
.logo-wall:hover .logo-track { animation-play-state: paused; }
.logo-chip {
  background: #fff; border: 1px solid rgba(78,86,90,.14);
  padding: 18px 34px; border-radius: 16px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  min-width: 170px; transition: all .3s;
}
.logo-chip:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.logo-chip b { font-size: 17px; letter-spacing: .04em; white-space: nowrap; }
.logo-chip small { font-size: 11px; color: var(--gray); letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; white-space: nowrap; }
.logo-chip.img img { max-height: 44px; max-width: 140px; object-fit: contain; }
.logo-chip.dark-chip { background: var(--black); border-color: var(--black); }
.logo-chip.dark-chip small { color: #A6ACB0; }

/* ========================= CHANNELS ========================= */
.chan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.chan {
  border-radius: var(--radius); padding: 38px 32px;
  background: var(--paper); border: 1px solid rgba(78,86,90,.12);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s, box-shadow .35s;
}
.chan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.chan .ico {
  width: 58px; height: 58px; border-radius: 18px;
  background: var(--grad); display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(235,100,32,.5);
}
.chan .ico svg { width: 27px; height: 27px; }
.chan h3 { font-size: 21px; }
.chan p { font-size: 14.5px; color: var(--gray); flex: 1; }
.chan .brands { display: flex; flex-wrap: wrap; gap: 8px; }
.chan .brands span {
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  background: #fff; border: 1px solid rgba(78,86,90,.16);
  border-radius: 999px; padding: 7px 14px;
  transition: all .25s;
}
.chan .brands span:hover { border-color: var(--orange); color: var(--orange); }

/* ========================= CTA ========================= */
.cta {
  background: var(--black); color: #fff;
  overflow: hidden;
}
.cta .in {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center;
  position: relative; z-index: 2;
}
.cta h2 { color: #fff; }
.cta .lead { color: #A6ACB0; }
.cta-box {
  background: #161719; border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 40px 36px;
}
.cta-box .line { display: flex; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.cta-box .line:last-child { border: 0; }
.cta-box .line .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: rgba(235,100,32,.15); color: var(--orange-2);
  display: grid; place-items: center;
}
.cta-box .line .ic svg { width: 20px; height: 20px; }
.cta-box .line a:hover { color: var(--orange-2); }
.cta-box small { display: block; color: #7d858a; font-size: 12px; }
.cta-box .line b { font-weight: 400; font-size: 15.5px; }

/* ========================= FOOTER ========================= */
footer {
  background: var(--black); color: #7d858a;
  padding: 34px 0; font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
}
footer::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: var(--grad);
}
.foot { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.foot img { height: 34px; filter: brightness(0) invert(1); opacity: .9; }
.foot .legal { margin-left: auto; text-align: right; }

/* ========================= REVEAL ========================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s, transform .8s; }
.reveal.vis { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; width: min(330px, 74%); margin-top: -12px; }
  .hp-chip.h1c { left: -4%; }
  .hp-chip.h2c { right: -4%; }
  .hero-visual { order: -1; height: 52vw; max-height: 420px; margin-top: -20px; }
  .license-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .pod-grid { grid-template-columns: 1fr; }
  .pod-hl { position: static; }
  .compare { grid-template-columns: 1fr; }
  .cmp-arrow { transform: rotate(90deg); justify-self: center; }
  .chan-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta .in { grid-template-columns: 1fr; }
  .card.span4, .card.span6 { grid-column: span 12; }
  .about-photos { grid-template-columns: 1fr; }
  .hero-stats .row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .brand-grid { grid-template-columns: 1fr; }
  .cmp-card { flex-direction: column; text-align: center; }
  .cmp-text p { max-width: none; }
  .v-collage { justify-content: center; flex-wrap: wrap; }
  .v-collage img { height: 120px; }
  .cmp-card.good.vision .cmp-text { display: flex; flex-direction: column; align-items: center; }
  .v-logo-t { height: 44px; align-self: center; }
  .franchise-row { gap: 14px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    flex-direction: column; gap: 0; padding: 10px 4vw 18px;
    box-shadow: 0 24px 40px -18px rgba(12,12,13,.25);
    border-bottom: 3px solid var(--orange);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid rgba(12,12,13,.06); }
  .burger { display: grid; margin-left: auto; }
  .nav-in > .btn { display: none; }
  .license-grid { grid-template-columns: 1fr; }
  .hero-stats .row { grid-template-columns: repeat(2, 1fr); }
  .foot .legal { margin-left: 0; text-align: left; }
}
