/* Qlinx official landing — Brand site Take 2 */
:root {
  --qlinx-primary: #2563eb;
  --qlinx-primary-deep: #1d4ed8;
  --qlinx-primary-darker: #1e40af;
  --qlinx-sky: #0ea5e9;
  --qlinx-sky-soft: #7dd3fc;
  --qlinx-sky-pale: #e0f2fe;
  --qlinx-background: #f5f7fb;
  --qlinx-surface: #ffffff;
  --qlinx-text: #0f172a;
  --qlinx-text-secondary: #55647a;
  --qlinx-text-muted: #93a1b5;
  --qlinx-border: #e8edf4;
  --qlinx-success: #22c55e;
  --qlinx-learn: #818cf8;
  --qlinx-learn-deep: #4f46e5;
  --qlinx-learn-tint: #eef2ff;
  --qlinx-life: #5eead4;
  --qlinx-life-deep: #0f766e;
  --qlinx-life-tint: #f0fdfa;
  --qlinx-career: #c4b5fd;
  --qlinx-career-deep: #6d28d9;
  --qlinx-career-tint: #f5f3ff;
  --qlinx-qp: #9333ea;
  --qlinx-know: #fdba74;
  --qlinx-know-deep: #c2410c;
  --qlinx-know-tint: #fff7ed;
  --qlinx-bezel: #111827;
  --qlinx-warning: #f97316;
  --qlinx-error: #ef4444;
  --qlinx-footer: #0b1220;
  --qlinx-content-width: 1200px;
  --qlinx-radius-sm: 16px;
  --qlinx-radius-md: 24px;
  --qlinx-radius-lg: 32px;
  --qlinx-radius-hero: 40px;
  --qlinx-radius-pill: 9999px;
  --qlinx-space-1: 8px;
  --qlinx-space-2: 16px;
  --qlinx-space-3: 24px;
  --qlinx-space-4: 32px;
  --qlinx-space-5: 48px;
  --qlinx-space-6: 64px;
  --qlinx-space-7: 80px;
  --qlinx-space-8: 120px;
  --qlinx-space-hero: 160px;
  --qlinx-shadow-sm: 0 4px 14px rgba(20, 67, 120, 0.05);
  --qlinx-shadow-md: 0 12px 32px rgba(20, 67, 120, 0.09);
  --qlinx-shadow-hero: 0 20px 48px rgba(20, 67, 120, 0.12);
  --qlinx-header-height: 72px;
  --qlinx-phone-ratio: 810 / 1656;
  --qlinx-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--qlinx-font);
  color: var(--qlinx-text);
  background: var(--qlinx-surface);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--qlinx-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--qlinx-primary-deep);
}

:focus-visible {
  outline: 3px solid var(--qlinx-sky);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--qlinx-space-2);
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--qlinx-primary);
  color: #fff;
  border-radius: var(--qlinx-radius-sm);
  text-decoration: none;
  min-height: 44px;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--qlinx-space-2);
}

.staging-banner {
  background: #fff7ed;
  color: #9a3412;
  border-bottom: 1px solid #fed7aa;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.45;
  padding: 10px 16px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(232, 237, 244, 0.8);
  backdrop-filter: saturate(1.2) blur(16px);
  -webkit-backdrop-filter: saturate(1.2) blur(16px);
}

.site-header__inner {
  max-width: var(--qlinx-content-width);
  margin: 0 auto;
  min-height: var(--qlinx-header-height);
  padding: 12px var(--qlinx-space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--qlinx-space-2);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo img {
  height: 28px;
  width: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--qlinx-radius-pill);
  background: var(--qlinx-primary);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  max-width: 9.5rem;
}

.header-cta:hover {
  background: var(--qlinx-primary-deep);
  color: #fff !important;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  color: var(--qlinx-text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-desktop a:hover {
  color: var(--qlinx-primary);
}

.container {
  width: 100%;
  max-width: var(--qlinx-content-width);
  margin-inline: auto;
  padding-inline: var(--qlinx-space-3);
  box-sizing: border-box;
}

.section {
  padding: var(--qlinx-space-7) 0;
  background: var(--qlinx-surface);
}

.section--calm {
  background: #f8fbff;
}

.section--tint {
  background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.section--bg,
.section--soft {
  background: var(--qlinx-background);
}

.section--surface {
  background: var(--qlinx-surface);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 var(--qlinx-space-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--qlinx-primary);
  text-transform: none;
}

.eyebrow--learn,
.chapter[data-stage-chapter="learn"] .eyebrow {
  color: var(--qlinx-learn-deep);
}

.eyebrow--live,
.chapter[data-stage-chapter="live"] .eyebrow {
  color: var(--qlinx-life-deep);
}

.eyebrow--know,
.chapter[data-stage-chapter="know"] .eyebrow {
  color: var(--qlinx-know-deep);
}

.eyebrow--ahead,
.eyebrow--connect,
.chapter[data-stage-chapter="work"] .eyebrow {
  color: var(--qlinx-career-deep);
}

.section-title {
  margin: 0 0 var(--qlinx-space-3);
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 18em;
}

.section-lead {
  margin: 0;
  max-width: 40rem;
  color: var(--qlinx-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

.story-line {
  margin: var(--qlinx-space-4) 0 0;
  max-width: 28rem;
  color: var(--qlinx-text-secondary);
  font-weight: 600;
}

.muted,
.note-gap {
  color: var(--qlinx-text-muted);
  font-size: 15px;
}

.note-gap {
  margin-top: var(--qlinx-space-3);
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.hero .cta-row.store-badges,
.store-mid .cta-row.store-badges,
.finale .cta-row.store-badges,
.hero .store-badges,
.store-mid .store-badges,
.finale .store-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 10px;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--qlinx-radius-pill);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--qlinx-border);
  background: var(--qlinx-surface);
  color: var(--qlinx-text);
}

.store-cta--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  user-select: none;
  pointer-events: none;
}

.store-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 10px;
  align-items: center;
  background: transparent;
  padding: 4px 0 2px;
}

.store-cta.store-badge,
.store-cta.store-cta--disabled.store-badge,
.finale .store-cta.store-badge,
.finale .store-cta.store-cta--disabled.store-badge {
  min-width: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
  line-height: 0;
}

.store-badge__img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(148px, 42vw);
}

.store-note {
  margin: var(--qlinx-space-2) 0 0;
  font-size: 13px;
  color: var(--qlinx-text-muted);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: var(--qlinx-space-4);
}

.inline-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

/* Hero */
.hero {
  --cast-y: 0px;
  --cast-rot: 0deg;
  position: relative;
  isolation: isolate;
  padding: clamp(20px, 4vw, 56px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(920px 480px at 88% 12%, rgba(14, 165, 233, 0.16), transparent 62%),
    radial-gradient(720px 420px at 8% 88%, rgba(37, 99, 235, 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  right: -4%;
  top: 8%;
  border: 1.5px solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
}

.hero::after {
  content: "Q";
  left: 4%;
  bottom: 2%;
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  color: rgba(37, 99, 235, 0.05);
}

.has-q-mark {
  position: relative;
  overflow: hidden;
}

.q-mark {
  position: absolute;
  left: -28px;
  bottom: 24px;
  z-index: 0;
  display: block;
  font-size: clamp(152px, 42vw, 230px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.84;
  padding: 0;
  color: rgba(37, 99, 235, 0.08);
  pointer-events: none;
  user-select: none;
}

.q-mark::before {
  content: "Q";
}

.has-q-mark > *:not(.q-mark) {
  position: relative;
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--qlinx-space-6);
  align-items: center;
}

.hero__copy {
  max-width: 36rem;
}

.hero__label {
  margin: 0 0 10px;
  color: var(--qlinx-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__kicker {
  margin: 0 0 var(--qlinx-space-3);
  color: var(--qlinx-text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0 0 var(--qlinx-space-3);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero-h1-line {
  display: inline;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero__body {
  margin: 0 0 var(--qlinx-space-4);
  color: var(--qlinx-text-secondary);
  max-width: 34rem;
}

.hero__visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  background: transparent;
}

.cast {
  position: relative;
  height: min(88vw, 480px);
  max-width: 560px;
  margin: 0 auto;
  transform: translate3d(0, var(--cast-y), 0);
  background: transparent;
}

.phone {
  margin: 0;
  background: transparent;
  box-shadow: none;
  --qlinx-phone-ratio: 810 / 1656;
}

.phone picture,
.app-shot picture,
.stage-shot picture {
  display: block;
  width: 100%;
  line-height: 0;
  background: transparent;
  overflow: visible;
}

.phone img,
.stage-shot img,
.app-shot img {
  width: 100%;
  height: auto;
  background: transparent;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.16));
}

.phone--main {
  position: absolute;
  width: min(58%, 236px);
  left: 24%;
  top: 4%;
  z-index: 3;
  transform: translate3d(0, calc(var(--cast-y) * -0.28), 0);
}

.phone--back {
  position: absolute;
  width: min(44%, 176px);
  right: 2%;
  top: 18%;
  z-index: 1;
  transform: translate3d(12px, calc(var(--cast-y) * 0.22), 0) scale(0.9);
}

.phone--float {
  position: absolute;
  width: min(36%, 140px);
  left: 2%;
  bottom: 8%;
  z-index: 2;
  transform: translate3d(-8px, calc(var(--cast-y) * 0.16), 0) scale(0.82);
}

.qurio {
  pointer-events: none;
}

.qurio img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.18));
}

.qurio--hero {
  position: absolute;
  width: 48px;
  left: 8%;
  top: 18%;
  z-index: 4;
  animation: qurio-float 4.8s ease-in-out infinite;
}

.brand-nav {
  padding: 12px 0 28px;
  background: var(--qlinx-surface);
}

.brand-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px;
  border-radius: var(--qlinx-radius-pill);
  text-decoration: none;
  color: var(--qlinx-text);
  font-weight: 700;
  background: var(--qlinx-background);
}

.brand-nav__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-nav__icon--learn {
  background: var(--qlinx-learn-tint);
  color: var(--qlinx-learn-deep);
}

.brand-nav__icon--live {
  background: var(--qlinx-life-tint);
  color: var(--qlinx-life-deep);
}

.brand-nav__icon--know {
  background: var(--qlinx-know-tint);
  color: var(--qlinx-know-deep);
}

.brand-nav__icon--connect {
  background: var(--qlinx-career-tint);
  color: var(--qlinx-career-deep);
}

.about-block {
  max-width: 720px;
}

.story {
  padding: var(--qlinx-space-6) 0 var(--qlinx-space-7);
  background:
    radial-gradient(520px 280px at 12% 18%, rgba(20, 184, 166, 0.08), transparent 70%),
    radial-gradient(480px 260px at 88% 82%, rgba(79, 70, 229, 0.07), transparent 68%),
    #ffffff;
}

.story__grid {
  display: grid;
  gap: var(--qlinx-space-5);
}

.story__visual {
  display: none;
}

.story__copy > .section-title {
  max-width: 12em;
  margin-bottom: var(--qlinx-space-5);
}

.story__title {
  max-width: 12em;
  margin: 0 0 var(--qlinx-space-5);
}

.story-chapter {
  padding: var(--qlinx-space-5) 0;
}

.story-chapter + .story-chapter {
  border-top: 1px solid var(--qlinx-border);
}

.story-figure {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 0 var(--qlinx-space-4);
  padding: 0;
  background: transparent;
}

.story-figure picture {
  display: contents;
}

.story-figure img {
  display: block;
  width: min(85vw, 100%);
  max-width: 100%;
  min-width: 0;
  height: auto;
  margin-inline: auto;
  filter: none;
  box-shadow: none;
}

.qurio-story-slide {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.qurio-story-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.story-shot img {
  width: 100%;
  height: auto;
  filter: none;
}

.store-mid {
  padding: var(--qlinx-space-5) 0;
  background: #fff;
}

.store-mid .cta-row.store-badges,
.store-mid .store-badges {
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.stage {
  padding: var(--qlinx-space-6) 0 var(--qlinx-space-8);
  background: #fff;
}

.stage__grid {
  display: grid;
  gap: var(--qlinx-space-6);
}

.chapter {
  padding: var(--qlinx-space-6) 0;
  border-top: 1px solid var(--qlinx-border);
}

.chapter:first-of-type {
  border-top: 0;
}

.phone--chapter {
  width: min(68vw, 260px);
  margin: var(--qlinx-space-5) auto 0;
}

.stage__visual {
  display: none;
}

.orbit {
  position: relative;
  padding: 24px 0 64px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef4ff 48%, #ffffff 100%);
  overflow: hidden;
  max-width: 100%;
}

.orbit::before {
  content: "›";
  position: absolute;
  right: 12px;
  top: 46%;
  z-index: 2;
  color: rgba(37, 99, 235, 0.35);
  font-size: 2rem;
  pointer-events: none;
}

.shot-gallery {
  position: relative;
}

.app-shot-stack,
.feature-visual--stack {
  display: flex;
  gap: clamp(44px, 12vw, 68px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 28px 24px 40px;
  background: transparent;
  scrollbar-width: none;
  max-width: 100%;
}

.app-shot-stack::-webkit-scrollbar,
.feature-visual--stack::-webkit-scrollbar {
  display: none;
}

.app-shot {
  flex: 0 0 clamp(180px, 54vw, 220px);
  width: clamp(180px, 54vw, 220px);
  scroll-snap-align: center;
  margin: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: var(--qlinx-phone-ratio);
  transform: none;
}

.phone--orbit,
.phone--chapter,
.phone--finale,
.phone--finale-ghost {
  background: transparent;
}

.phone--crop {
  overflow: visible;
}

.phone--lift-a,
.phone--lift-b,
.phone--lift-c,
.phone--lift-d,
.phone--lift-e {
  width: 100%;
  height: auto;
  transform: none;
}

.shot-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  align-items: center;
}

.shot-pager__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.shot-pager__dot.is-active {
  background: var(--qlinx-primary);
  transform: scale(1.2);
}

.qp-flow {
  display: grid;
  gap: 18px;
  margin: var(--qlinx-space-5) 0;
}

.qp-step {
  padding: 8px 0 4px;
}

.qp-step__n {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--qlinx-sky-pale);
  color: var(--qlinx-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.qp-step h3 {
  margin: 8px 0 4px;
  font-size: 1.05rem;
}

.qp-step p {
  margin: 0;
  color: var(--qlinx-text-secondary);
}

.qp-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--qlinx-space-5);
}

.qp-marks p {
  margin: 0;
  padding: 10px 14px;
  border: 1px dashed var(--qlinx-border);
  border-radius: 999px;
  color: var(--qlinx-text-muted);
  font-size: 0.82rem;
}

.qp-marks small {
  margin-left: 6px;
  opacity: 0.7;
}

.chip-row {
  list-style: none;
  margin: var(--qlinx-space-4) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row li {
  padding: 10px 14px;
  border-radius: var(--qlinx-radius-pill);
  background: var(--qlinx-background);
  font-weight: 600;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: var(--qlinx-space-4);
}

.faq-list details {
  border-bottom: 1px solid var(--qlinx-border);
  padding: 4px 0 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.faq-list details p {
  margin: 0 0 8px;
  color: var(--qlinx-text-secondary);
}

.qurio-intro .qurio-intro__inner {
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.qurio-intro__visual {
  width: min(148px, 38vw);
  margin: 0;
}

.qurio-intro__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.qurio-intro__copy {
  max-width: 28rem;
}

.qurio-intro__copy .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.qurio-intro__link {
  margin: 16px 0 0;
  font-weight: 700;
}

.news-list {
  list-style: none;
  margin: var(--qlinx-space-4) 0 0;
  padding: 0;
}

.news-item {
  margin: 0;
  border-top: 1px solid var(--qlinx-border);
}

.news-item:last-child {
  border-bottom: 1px solid var(--qlinx-border);
}

.news-item a {
  display: block;
  padding: 20px 0;
  color: inherit;
  text-decoration: none;
}

.news-item__date {
  display: block;
  margin: 0 0 4px;
  color: var(--qlinx-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-item__cat {
  display: inline-block;
  margin: 0 0 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--qlinx-sky-pale);
  color: var(--qlinx-primary-deep);
}

.news-item__cat--about {
  background: var(--qlinx-learn-tint);
  color: var(--qlinx-learn-deep);
}

.news-item__cat--service {
  background: var(--qlinx-life-tint);
  color: var(--qlinx-life-deep);
}

.news-item__title {
  margin: 0 0 6px;
  color: var(--qlinx-text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.news-item__summary {
  margin: 0;
  color: var(--qlinx-text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.news-empty {
  margin: var(--qlinx-space-4) 0 0;
  color: var(--qlinx-text-secondary);
}

.news-more {
  margin: var(--qlinx-space-4) 0 0;
  font-weight: 700;
}

.finale {
  position: relative;
  overflow: hidden;
  padding: var(--qlinx-space-8) 0;
  background:
    radial-gradient(700px 360px at 80% 20%, rgba(14, 165, 233, 0.16), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #12203a 100%);
  color: #fff;
}

.finale .section-title,
.finale .eyebrow,
.finale .section-lead,
.finale .store-note {
  color: #fff;
}

.finale .eyebrow {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--qlinx-sky-soft);
}

.finale .section-lead,
.finale .store-note {
  color: rgba(255, 255, 255, 0.82);
}

.finale .store-cta.store-badge,
.finale .store-cta.store-cta--disabled.store-badge {
  background: transparent;
  border: 0;
  opacity: 1;
}

.finale__grid {
  display: grid;
  gap: var(--qlinx-space-6);
  align-items: center;
}

.finale__visual {
  position: relative;
  min-height: 360px;
}

.phone--finale {
  width: min(58vw, 280px);
  margin: 0 auto;
}

.qurio--cta {
  position: absolute;
  width: 72px;
  right: 8%;
  top: 12%;
  animation: qurio-float 5.2s ease-in-out infinite;
}

.phone--finale-ghost,
.stage-shot--depth {
  display: none;
}

.site-footer {
  background: var(--qlinx-footer);
  color: #dbe4f0;
  padding: var(--qlinx-space-7) 0 var(--qlinx-space-5);
}

.site-footer a {
  color: #dbe4f0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  margin-bottom: var(--qlinx-space-5);
}

.footer-brand__name {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand__desc {
  margin: 0;
  max-width: 28rem;
  color: #93a1b5;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-brand__operator {
  margin: 8px 0 0;
  color: #93a1b5;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  gap: var(--qlinx-space-5);
}

.footer-col h2 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93a1b5;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-bottom {
  margin-top: var(--qlinx-space-5);
  padding-top: var(--qlinx-space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #93a1b5;
  font-size: 0.85rem;
}

[data-reveal],
[data-reveal-group] {
  opacity: 1;
  transform: none;
}

html.qlinx-motion [data-reveal] .eyebrow,
html.qlinx-motion [data-reveal] .hero__label,
html.qlinx-motion [data-reveal] .hero__kicker,
html.qlinx-motion [data-reveal] .section-title,
html.qlinx-motion [data-reveal] h1,
html.qlinx-motion [data-reveal] .section-lead,
html.qlinx-motion [data-reveal] .hero__body,
html.qlinx-motion [data-reveal] .store-note,
html.qlinx-motion [data-reveal] .story-line,
html.qlinx-motion [data-reveal] .story-figure,
html.qlinx-motion [data-reveal] .phone--chapter,
html.qlinx-motion [data-reveal] .cta-row,
html.qlinx-motion [data-reveal] .store-badges,
html.qlinx-motion .store-mid[data-reveal],
html.qlinx-motion [data-reveal] .faq-list,
html.qlinx-motion [data-reveal] .chip-row,
html.qlinx-motion [data-reveal] .inline-links,
html.qlinx-motion [data-reveal-group] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.64s cubic-bezier(0.22, 1, 0.36, 1);
}

html.qlinx-motion [data-reveal] .story-figure,
html.qlinx-motion [data-reveal] .phone--chapter,
html.qlinx-motion .app-shot-stack[data-reveal-group],
html.qlinx-motion .hero__visual[data-reveal-group],
html.qlinx-motion .finale__visual[data-reveal-group] {
  transform: translate3d(0, 24px, 0) scale(0.985);
}

html.qlinx-motion [data-reveal].is-inview .eyebrow,
html.qlinx-motion [data-reveal].is-inview .hero__label {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

html.qlinx-motion [data-reveal].is-inview .hero__kicker {
  opacity: 1;
  transform: none;
  transition-delay: 50ms;
}

html.qlinx-motion [data-reveal].is-inview .section-title,
html.qlinx-motion [data-reveal].is-inview h1 {
  opacity: 1;
  transform: none;
  transition-delay: 80ms;
}

html.qlinx-motion [data-reveal].is-inview .section-lead,
html.qlinx-motion [data-reveal].is-inview .hero__body,
html.qlinx-motion [data-reveal].is-inview .story-line {
  opacity: 1;
  transform: none;
  transition-delay: 150ms;
}

html.qlinx-motion [data-reveal].is-inview .store-note,
html.qlinx-motion [data-reveal].is-inview .faq-list,
html.qlinx-motion [data-reveal].is-inview .chip-row,
html.qlinx-motion [data-reveal].is-inview .inline-links {
  opacity: 1;
  transform: none;
  transition-delay: 170ms;
}

html.qlinx-motion [data-reveal].is-inview .story-figure {
  opacity: 1;
  transform: none;
  transition-delay: 40ms;
}

html.qlinx-motion [data-reveal].is-inview .phone--chapter,
html.qlinx-motion [data-reveal].is-inview .cta-row,
html.qlinx-motion [data-reveal].is-inview .store-badges,
html.qlinx-motion .store-mid[data-reveal].is-inview {
  opacity: 1;
  transform: none;
  transition-delay: 200ms;
}

html.qlinx-motion [data-reveal-group].is-inview {
  opacity: 1;
  transform: none;
}

@keyframes qurio-float {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(4px, -10px, 0); }
}

@media (min-width: 768px) {
  .q-mark {
    font-size: clamp(180px, 24vw, 280px);
    color: rgba(37, 99, 235, 0.055);
  }

  .qurio-story-copy {
    display: contents;
  }

  .brand-nav__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .qp-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .news-row,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Chrome only — composition lives in orientation / 1440px queries */
@media (min-width: 1024px) {
  .hero > .q-mark {
    display: none;
  }

  .hero-h1-line {
    white-space: normal;
  }

  .nav-desktop a:not(.header-cta) {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    max-width: 9.5rem;
  }

  .shot-pager {
    display: none !important;
  }

  .orbit::before {
    content: none;
  }

  .site-header__inner {
    padding: 14px 32px;
    min-height: 76px;
    gap: 10px 12px;
    flex-wrap: nowrap;
  }

  .header-cta--bar {
    margin-left: 4px;
    padding: 12px clamp(12px, 1.4vw, 20px);
    max-width: 11rem;
  }

  .brand-logo img {
    height: 30px;
  }
}

@media (min-width: 1024px) and (max-width: 1179px) {
  .site-header__inner {
    padding: 12px 20px;
    gap: 8px;
  }

  .nav-desktop {
    gap: 2px 10px;
    margin-left: 8px;
  }

  .nav-desktop a:not(.header-cta) {
    font-size: 0.84rem;
    max-width: 7.5rem;
    min-height: 40px;
  }

  .header-cta--bar {
    padding: 10px 12px;
    font-size: 0.82rem;
    max-width: 8.5rem;
  }
}

/* Contract: mobile + tablet-portrait rails stay snap */
@media (max-width: 1023px) {
  html {
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  .hero::before,
  .hero::after {
    content: none;
  }

  .q-mark {
    left: -28px;
    bottom: 24px;
    font-size: clamp(152px, 42vw, 230px);
    line-height: 0.84;
    padding: 0;
    color: rgba(37, 99, 235, 0.08);
  }

  .hero.has-q-mark .q-mark {
    left: -28px;
    bottom: 24px;
    font-size: clamp(152px, 42vw, 230px);
    color: rgba(37, 99, 235, 0.08);
  }

  .app-shot-stack,
  .feature-visual--stack {
    scroll-snap-type: x mandatory;
    background: transparent;
  }

  .feature-visual__support {
    display: contents;
  }
}

/*
 * Tablet portrait (iPad 768×1024, 820×1180, 1024×1366).
 * Copy + 1–2 large devices. No sticky lock. No stretched mobile stack.
 */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: portrait) {
  .hero {
    padding: 28px 0 8px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 48%);
    gap: 28px 36px;
    align-items: center;
    min-height: 0;
    padding-bottom: 12px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__body {
    display: block;
    max-width: 34rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 4.6vw, 3.35rem);
    letter-spacing: -0.04em;
  }

  .hero__visual {
    min-height: min(58vh, 620px);
    margin: 0 -8px 0 0;
  }

  .cast {
    height: min(58vh, 620px);
    max-width: none;
  }

  .phone--main {
    width: min(72%, 320px);
    left: 18%;
    top: 4%;
    transform: translate3d(0, calc(var(--cast-y) * -0.2), 0);
  }

  .phone--back {
    width: min(52%, 230px);
    height: auto;
    right: 0;
    top: 16%;
    transform: translate3d(18px, calc(var(--cast-y) * 0.18), 0) scale(0.88);
  }

  .phone--float {
    display: none;
  }

  .qurio--hero {
    width: 52px;
    left: 4%;
    top: 22%;
  }

  .about-block {
    max-width: 40rem;
  }

  .chapter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    grid-template-areas:
      "kicker phone"
      "title phone"
      "lead phone";
    column-gap: 32px;
    row-gap: 6px;
    align-items: center;
    min-height: 0;
    padding: 36px 0;
  }

  .chapter .eyebrow { grid-area: kicker; }
  .chapter .section-title { grid-area: title; }
  .chapter .section-lead { grid-area: lead; }

  .phone--chapter {
    grid-area: phone;
    width: 100%;
    margin: 0;
  }

  .chapter:nth-of-type(even) {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    grid-template-areas:
      "phone kicker"
      "phone title"
      "phone lead";
  }

  .stage__visual {
    display: none;
  }

  .app-shot {
    flex: 0 0 clamp(220px, 30vw, 280px);
    width: clamp(220px, 30vw, 280px);
  }

  .story-figure {
    margin: 0 0 28px;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .story-figure img {
    width: min(78vw, 640px);
    max-width: 100%;
    min-width: 0;
  }

  .finale__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 38%);
    gap: 28px;
    align-items: center;
  }

  .finale__visual {
    min-height: 420px;
  }

  .phone--finale {
    width: min(100%, 300px);
    margin: 0 auto 0 8%;
  }

  .qurio--cta {
    width: 64px;
    right: 6%;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 50%);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 4.2vw, 3.8rem);
  }

  .cast {
    height: min(62vh, 720px);
  }

  .phone--main {
    width: 340px;
    left: 16%;
    transform: translate3d(0, calc(var(--cast-y) * -0.18), 0);
  }

  .phone--back {
    width: 240px;
    height: auto;
    right: 2%;
    transform: translate3d(24px, calc(var(--cast-y) * 0.16), 0) scale(0.86);
  }

  .app-shot-stack,
  .feature-visual--stack {
    overflow: hidden;
    scroll-snap-type: none;
    justify-content: center;
    align-items: flex-end;
    padding: 40px 0 64px;
    gap: 0;
    contain: none;
  }

  .app-shot {
    flex: 0 0 250px;
    width: 250px;
    margin: 0 -36px;
  }
}

/*
 * Tablet landscape / small desktop (1180×820, 1280×800, 1366×768).
 * One viewport cut. 1–2 devices. No long sticky.
 */
@media (min-width: 768px) and (max-width: 1439px) and (orientation: landscape) and (min-height: 600px) {
  .hero {
    padding: 8px 0 0;
  }

  .hero__layout {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 24px 32px;
    min-height: calc(100svh - 84px);
    align-items: center;
    padding-bottom: 0;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__body {
    display: block;
    max-width: 32rem;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    margin-bottom: 12px;
  }

  .hero__kicker {
    margin-bottom: 10px;
  }

  .hero__visual {
    min-height: calc(100svh - 96px);
    margin: 0 -24px 0 0;
    overflow: hidden;
  }

  .cast {
    height: calc(100svh - 88px);
    max-width: none;
  }

  .phone--main {
    width: min(42vw, 380px);
    left: 12%;
    top: 4%;
    transform: translate3d(0, calc(var(--cast-y) * -0.16), 0);
  }

  .phone--back {
    width: min(30vw, 260px);
    height: auto;
    right: 2%;
    top: 18%;
    transform: translate3d(20px, calc(var(--cast-y) * 0.14), 0) scale(0.88);
  }

  .phone--float {
    display: none;
  }

  .qurio--hero {
    width: 48px;
    left: 2%;
    top: 28%;
  }

  .chapter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
    grid-template-areas:
      "kicker phone"
      "title phone"
      "lead phone";
    column-gap: 24px;
    row-gap: 4px;
    align-items: center;
    min-height: 0;
    padding: 18px 0;
  }

  .chapter .eyebrow { grid-area: kicker; }
  .chapter .section-title { grid-area: title; font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
  .chapter .section-lead { grid-area: lead; }
  .phone--chapter {
    grid-area: phone;
    width: 100%;
    margin: 0;
  }

  .chapter:nth-of-type(even) {
    grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
    grid-template-areas:
      "phone kicker"
      "phone title"
      "phone lead";
  }

  .stage {
    padding: 8px 0 28px;
  }

  .stage__copy > .section-lead {
    margin-bottom: 4px;
  }

  .stage__visual {
    display: none;
  }

  .app-shot-stack,
  .feature-visual--stack {
    overflow: hidden;
    scroll-snap-type: none;
    justify-content: center;
    align-items: flex-end;
    padding: 28px 0 48px;
    gap: 0;
    contain: none;
  }

  .app-shot {
    flex: 0 0 min(22vw, 230px);
    width: min(22vw, 230px);
    margin: 0 -30px;
  }

  .story-chapter {
    display: grid;
    grid-template-columns: minmax(240px, 42%) minmax(0, 1fr);
    grid-template-areas:
      "art kicker"
      "art title"
      "art lead";
    column-gap: 28px;
    row-gap: 4px;
    align-items: center;
    padding: 20px 0;
  }

  .story-figure { grid-area: art; margin: 0; width: auto; max-width: none; }

  .story-figure img {
    width: min(100%, 520px);
  }
  .story-chapter .eyebrow { grid-area: kicker; }
  .story-chapter .section-title { grid-area: title; font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
  .story-chapter .section-lead { grid-area: lead; }

  .finale {
    padding: 48px 0;
  }

  .finale__grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 36%);
    min-height: 0;
    align-items: center;
  }

  .finale__visual {
    min-height: 360px;
    overflow: hidden;
  }

  .phone--finale {
    width: min(32vw, 280px);
    margin: 0 0 0 12%;
  }

  .qurio--cta {
    width: 60px;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) and (orientation: landscape) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .phone--main {
    width: 400px;
  }

  .phone--back {
    width: 290px;
  }
}

/*
 * Desktop campaign stage — 1440×900 and up.
 * Huge type, overlapping devices, crop, depth, sticky product visual.
 */
@media (min-width: 1440px) {
  .nav-desktop {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    align-items: center;
    gap: 4px clamp(8px, 1.2vw, 22px);
    min-width: 0;
    margin-left: 12px;
  }

  .container {
    padding: 0 48px;
  }

  .hero {
    padding: 0;
    min-height: calc(100svh - 76px);
    overflow: hidden;
  }

  .hero .container {
    max-width: none;
    padding: 0 56px 0 72px;
  }

  .hero__layout {
    grid-template-columns: minmax(400px, 40%) minmax(0, 1fr);
    min-height: calc(100svh - 76px);
    align-items: center;
    gap: 0;
    position: relative;
  }

  .hero__copy {
    max-width: 28rem;
    position: relative;
    z-index: 3;
    padding: 8vh 24px 8vh 0;
  }

  .hero__label {
    font-size: 1rem;
  }

  .hero__kicker {
    font-size: 1.125rem;
    max-width: 22rem;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 6.2vw, 7rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    max-width: 7.5em;
    margin-bottom: 20px;
  }

  .hero-h1-line {
    display: block;
    font-size: 0.4em;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-top: 10px;
    line-height: 1.22;
  }

  .hero__body {
    display: block;
    font-size: 1.125rem;
    max-width: 26rem;
  }

  .hero__visual {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 76px);
    margin: -4vh -10vw -8vh 0;
    overflow: visible;
  }

  .cast {
    height: calc(100svh - 24px);
    max-width: none;
    width: 100%;
  }

  .phone--main {
    width: min(34vw, 580px);
    left: 22%;
    top: 2%;
    transform: translate3d(0, calc(var(--cast-y) * -0.18), 0);
    z-index: 3;
  }

  .phone--back {
    width: min(24vw, 360px);
    height: auto;
    right: 4%;
    top: 12%;
    transform: translate3d(28px, calc(var(--cast-y) * 0.16), 0) scale(0.86);
    z-index: 1;
  }

  .phone--float {
    display: block;
    width: min(18vw, 280px);
    height: auto;
    left: 4%;
    bottom: 2%;
    transform: translate3d(-12px, calc(var(--cast-y) * 0.12), 0) scale(0.8);
    z-index: 2;
  }

  .qurio--hero {
    width: 64px;
    left: auto;
    right: 42%;
    top: 10%;
  }

  .about-block {
    max-width: 46rem;
    padding: 48px 0 24px;
  }

  .about-block .section-title {
    font-size: clamp(3.1rem, 4.2vw, 4.5rem);
    line-height: 1.12;
    max-width: 10em;
  }

  .story {
    padding: 24px 0 8px;
  }

  .story .container {
    max-width: none;
    padding: 0 72px;
  }

  .story__grid {
    grid-template-columns: minmax(0, 46%) minmax(28rem, 48%);
    gap: 48px;
    align-items: start;
  }

  .story__visual {
    display: block;
    position: sticky;
    top: 88px;
    height: calc(100svh - 120px);
  }

  .story-stage {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-shot {
    position: absolute;
    inset: 8% 8%;
    margin: 0;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .story-shot.is-active {
    opacity: 1;
    transform: none;
  }

  .story-shot img {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .story-figure {
    display: none;
  }

  .story__title {
    font-size: clamp(2.6rem, 3.6vw, 3.8rem);
    max-width: 10em;
    margin: 8px 0 12px;
  }

  .story-chapter {
    min-height: 88svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
    border-top: 0;
  }

  .story-chapter + .story-chapter {
    border-top: 0;
  }

  .story-chapter .section-title {
    font-size: clamp(2.2rem, 3vw, 3.1rem);
    max-width: 10em;
  }

  .stage {
    padding: 8px 0 64px;
    overflow: hidden;
  }

  .stage .container {
    max-width: none;
    padding: 0 0 0 72px;
  }

  .stage__grid {
    grid-template-columns: minmax(30rem, 40%) minmax(0, 1fr);
    align-items: start;
    gap: 0;
  }

  .stage__visual {
    display: block;
    position: sticky;
    top: 72px;
    height: calc(100svh - 80px);
    width: auto;
    margin-right: -12vw;
    margin-left: 0;
    overflow: visible;
  }

  .phone--chapter {
    display: none;
  }

  .stage-phone {
    position: relative;
    height: 100%;
    transform: none;
  }

  .stage-shot--depth {
    display: block;
    position: absolute;
    width: min(28vw, 380px);
    right: 2%;
    top: 14%;
    opacity: 0.88;
    transform: translate3d(36px, 24px, 0) scale(0.86);
    z-index: 1;
  }

  .stage-shot:not(.stage-shot--depth) {
    position: absolute;
    inset: -6% auto auto 10%;
    width: min(38vw, 540px);
    margin: 0;
    opacity: 0;
    z-index: 2;
    transform: translate3d(28px, 36px, 0) scale(0.94);
    transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .stage-shot.is-active {
    opacity: 1;
    transform: none;
  }

  .qurio--stage {
    position: absolute;
    width: 62px;
    left: 0;
    bottom: 8%;
    z-index: 3;
    animation: qurio-float 5s ease-in-out infinite;
  }

  .chapter {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
  }

  .chapter .section-title {
    font-size: clamp(2.8rem, 3.8vw, 4rem);
    line-height: 1.12;
    max-width: 8.5em;
  }

  .orbit {
    padding: 24px 0 88px;
    overflow: hidden;
  }

  .app-shot-stack,
  .feature-visual--stack {
    overflow: visible;
    scroll-snap-type: none;
    justify-content: center;
    align-items: flex-end;
    padding: 48px 0 72px;
    gap: 0;
    contain: none;
    width: 136vw;
    margin-left: -18vw;
  }

  .app-shot {
    flex: 0 0 min(26vw, 400px);
    width: min(26vw, 400px);
    margin: 0 -64px;
  }

  .finale {
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  .finale .container {
    max-width: none;
    padding: 0 72px;
  }

  .finale__grid {
    grid-template-columns: minmax(400px, 40%) minmax(0, 1fr);
    min-height: 100svh;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .finale .section-title {
    font-size: clamp(3.4rem, 5vw, 5.6rem);
    line-height: 1.05;
    max-width: 7.5em;
  }

  .finale__copy {
    position: relative;
    z-index: 2;
  }

  .finale__visual {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    margin: -6vh -12vw -10vh 0;
    overflow: visible;
  }

  .phone--finale-ghost {
    display: block;
    position: absolute;
    width: min(24vw, 360px);
    right: 2%;
    top: 12%;
    transform: translate3d(32px, 20px, 0) scale(0.86);
    z-index: 1;
  }

  .phone--finale {
    width: min(32vw, 480px);
    margin: 8% 0 0 16%;
    transform: none;
    position: relative;
    z-index: 2;
  }

  .qurio--cta {
    width: 72px;
    right: 30%;
    top: 16%;
    z-index: 3;
  }

  html.qlinx-motion [data-reveal] .eyebrow,
  html.qlinx-motion [data-reveal] .hero__label,
  html.qlinx-motion [data-reveal] .hero__kicker,
  html.qlinx-motion [data-reveal] .section-title,
  html.qlinx-motion [data-reveal] h1,
  html.qlinx-motion [data-reveal] .section-lead,
  html.qlinx-motion [data-reveal] .hero__body,
  html.qlinx-motion [data-reveal] .store-note,
  html.qlinx-motion [data-reveal] .story-line,
  html.qlinx-motion [data-reveal] .story-figure,
  html.qlinx-motion [data-reveal] .phone--chapter,
  html.qlinx-motion [data-reveal] .cta-row,
  html.qlinx-motion [data-reveal] .store-badges,
  html.qlinx-motion [data-reveal] .faq-list,
  html.qlinx-motion [data-reveal] .chip-row,
  html.qlinx-motion [data-reveal] .inline-links,
  html.qlinx-motion [data-reveal-group] {
    transform: translate3d(0, 28px, 0);
  }

  html.qlinx-motion [data-reveal] .story-figure,
  html.qlinx-motion [data-reveal] .phone--chapter,
  html.qlinx-motion .app-shot-stack[data-reveal-group],
  html.qlinx-motion .hero__visual[data-reveal-group],
  html.qlinx-motion .finale__visual[data-reveal-group] {
    transform: translate3d(0, 30px, 0) scale(0.985);
  }

  .hero > .q-mark {
    display: none;
  }
}

@media (min-width: 1920px) {
  .hero h1 {
    font-size: 7.4rem;
  }

  .phone--main {
    width: 680px;
    left: 14%;
  }

  .phone--back {
    width: 500px;
    right: -16%;
  }

  .phone--float {
    width: 340px;
  }

  .stage-shot {
    width: 560px;
  }

  .stage-shot--depth {
    width: 440px;
  }

  .app-shot {
    flex: 0 0 440px;
    width: 440px;
    margin: 0 -80px;
  }

  .phone--finale {
    width: 620px;
  }

  .phone--finale-ghost {
    width: 440px;
    right: -18%;
  }
}

/* Mobile art direction — approved. Do not enlarge this for tablet. */
@media (max-width: 767px) {
  html {
    overflow-x: clip;
  }

  .site-header__inner {
    min-width: 0;
    max-width: 100%;
    gap: 8px;
    padding-inline: 16px;
  }

  .container {
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.45rem);
  }

  .hero__body {
    display: none;
  }

  .hero__visual {
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background: transparent;
  }

  .cast {
    height: 340px;
    overflow: hidden;
    max-width: 100%;
    background: transparent;
  }

  .phone--main {
    width: 210px;
    left: 22%;
    top: 6%;
  }

  .phone--back {
    width: 150px;
    height: auto;
    right: 8%;
    top: 22%;
  }

  .phone--float {
    display: none;
  }

  .hero .cta-row.store-badges,
  .hero .store-badges,
  .store-mid .cta-row.store-badges,
  .finale .cta-row.store-badges {
    width: 100%;
    max-width: 100%;
  }

  .story {
    padding-bottom: var(--qlinx-space-4);
  }

  .store-mid {
    padding: var(--qlinx-space-4) 0 var(--qlinx-space-5);
  }

  .stage {
    padding-top: var(--qlinx-space-5);
  }

  html.qlinx-motion [data-reveal] .story-figure,
  html.qlinx-motion [data-reveal] .phone--chapter,
  html.qlinx-motion .app-shot-stack[data-reveal-group],
  html.qlinx-motion .hero__visual[data-reveal-group],
  html.qlinx-motion .finale__visual[data-reveal-group] {
    transform: translate3d(0, 20px, 0);
  }

  .qurio--hero {
    width: 44px;
    left: 10%;
    top: 10%;
  }
}

@media (max-width: 430px) {
  .hero .cta-row.store-badges,
  .store-mid .cta-row.store-badges,
  .finale .cta-row.store-badges,
  .hero .store-badges {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .hero .store-badge__img,
  .store-mid .store-badge__img,
  .finale .store-badge__img {
    height: 34px;
    max-width: min(136px, 44vw);
  }
}

@media (max-width: 360px) {
  .hero .store-badge__img,
  .store-mid .store-badge__img,
  .finale .store-badge__img {
    height: 30px;
    max-width: min(120px, 42vw);
  }
}

/*
 * Desktop editorial layout — 1200px and up.
 * One section = one message + one visual. Shared phone token.
 * Do not edit the mobile / max-width: 1023px contracts above for this.
 */
@media (min-width: 1200px) {
  :root {
    --desktop-phone-width: clamp(200px, 14.2vw, 236px);
    --desktop-phone-height: calc(var(--desktop-phone-width) * 1656 / 810);
    --desktop-hero-phone-main: clamp(214px, 15.4vw, 248px);
    --desktop-hero-phone-side: clamp(168px, 12vw, 196px);
    --desktop-copy-max: 36rem;
  }

  .q-mark {
    left: -48px;
    bottom: 36px;
    font-size: clamp(240px, 16vw, 360px);
    color: rgba(37, 99, 235, 0.05);
  }

  .hero > .q-mark {
    display: none;
  }

  .nav-desktop {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    align-items: center;
    gap: 4px clamp(8px, 1.2vw, 22px);
    min-width: 0;
    margin-left: 12px;
  }

  .hero {
    padding: 40px 0 28px;
    min-height: 0;
    overflow: hidden;
  }

  .hero .container {
    max-width: var(--qlinx-content-width);
    padding: 0 48px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 0;
    gap: 32px 40px;
    align-items: center;
    padding-bottom: 0;
  }

  .hero__copy {
    max-width: var(--desktop-copy-max);
    padding: 0;
    z-index: 3;
  }

  .hero__label {
    font-size: 0.95rem;
  }

  .hero__kicker {
    font-size: 1.05rem;
    max-width: 28rem;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 3.1vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    max-width: 12em;
    margin-bottom: 16px;
  }

  .hero-h1-line {
    display: block;
    font-size: 0.46em;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-top: 8px;
    line-height: 1.28;
  }

  .hero__body {
    display: block;
    font-size: 1.05rem;
    max-width: 32rem;
  }

  .hero__visual {
    position: relative;
    z-index: 1;
    min-height: 0;
    margin: 0;
    overflow: visible;
  }

  .cast {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: calc(var(--desktop-hero-phone-main) * 1656 / 810 + 36px);
    margin: 0 auto;
    overflow: visible;
  }

  .phone--main,
  .phone--back,
  .phone--float {
    height: auto;
    transform: none;
  }

  .phone--main {
    display: block;
    width: var(--desktop-hero-phone-main);
    left: 50%;
    top: 10px;
    z-index: 3;
    transform: translate3d(-50%, 0, 0);
  }

  .phone--back {
    display: block;
    width: var(--desktop-hero-phone-side);
    right: 2%;
    left: auto;
    top: 44px;
    z-index: 1;
    transform: none;
  }

  .phone--float {
    display: block;
    width: var(--desktop-hero-phone-side);
    left: 2%;
    bottom: auto;
    top: 44px;
    z-index: 2;
    transform: none;
  }

  .qurio--hero {
    width: 52px;
    left: 10%;
    right: auto;
    top: 14%;
  }

  .about-block {
    max-width: var(--desktop-copy-max);
    padding: 56px 0 32px;
  }

  .about-block .section-title {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    line-height: 1.2;
    max-width: 12em;
  }

  .story {
    padding: 24px 0 40px;
  }

  .story .container {
    max-width: var(--qlinx-content-width);
    padding: 0 48px;
  }

  .story__grid {
    display: block;
  }

  .story__visual {
    display: none;
  }

  .story__title {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    max-width: 14em;
    margin: 0 0 12px;
  }

  .qurio-story-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-areas:
      "art kicker"
      "art title"
      "art lead";
    column-gap: 56px;
    row-gap: 8px;
    align-items: center;
    min-height: 0;
    padding: 56px 0;
    border-top: 0;
    justify-content: initial;
  }

  .qurio-story-slide + .qurio-story-slide {
    border-top: 1px solid var(--qlinx-border);
  }

  .qurio-story-slide:nth-child(even) {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "kicker art"
      "title art"
      "lead art";
  }

  .story-figure {
    display: flex;
    grid-area: art;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .story-figure img {
    width: min(100%, 400px);
    max-width: 100%;
    min-width: 0;
  }

  .qurio-story-slide .eyebrow {
    grid-area: kicker;
    max-width: var(--desktop-copy-max);
  }

  .qurio-story-slide .section-title {
    grid-area: title;
    font-size: clamp(1.65rem, 2.1vw, 2.15rem);
    max-width: 14em;
  }

  .qurio-story-slide .section-lead {
    grid-area: lead;
    max-width: var(--desktop-copy-max);
  }

  .stage {
    padding: 24px 0 72px;
    overflow: visible;
  }

  .stage .container {
    max-width: var(--qlinx-content-width);
    padding: 0 48px;
  }

  .stage__grid {
    display: block;
  }

  .stage__visual {
    display: none;
  }

  .stage__intro {
    max-width: var(--desktop-copy-max);
    margin-bottom: 12px;
  }

  .chapter {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "kicker visual"
      "title visual"
      "lead visual";
    column-gap: 48px;
    row-gap: 8px;
    align-items: center;
    min-height: 0;
    padding: 56px 0;
    justify-content: initial;
  }

  .chapter:nth-of-type(even) {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-areas:
      "visual kicker"
      "visual title"
      "visual lead";
  }

  .chapter .eyebrow {
    grid-area: kicker;
    max-width: var(--desktop-copy-max);
  }

  .chapter .section-title {
    grid-area: title;
    font-size: clamp(1.65rem, 2.1vw, 2.15rem);
    line-height: 1.22;
    max-width: 14em;
  }

  .chapter .section-lead {
    grid-area: lead;
    max-width: var(--desktop-copy-max);
  }

  .phone--chapter {
    display: block;
    grid-area: visual;
    width: var(--desktop-phone-width);
    max-width: var(--desktop-phone-width);
    margin: 0 auto;
    aspect-ratio: var(--qlinx-phone-ratio);
  }

  .orbit {
    display: none;
  }

  #points .container,
  #industries .container,
  #faq .container,
  #news .container {
    max-width: calc(var(--desktop-copy-max) + 96px);
  }

  .qurio-intro .qurio-intro__inner {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: center;
    justify-items: stretch;
    text-align: left;
    gap: 40px 48px;
    max-width: var(--qlinx-content-width);
  }

  .qurio-intro__visual {
    width: min(180px, 100%);
    margin: 0 auto;
  }

  .qurio-intro__copy {
    max-width: var(--desktop-copy-max);
  }

  .qurio-intro__copy .section-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .finale {
    min-height: 0;
    padding: 72px 0;
    overflow: hidden;
  }

  .finale .container {
    max-width: var(--qlinx-content-width);
    padding: 0 48px;
  }

  .finale__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 0;
    align-items: center;
    gap: 40px 48px;
  }

  .finale .section-title {
    font-size: clamp(2.1rem, 2.8vw, 2.9rem);
    line-height: 1.15;
    max-width: 10em;
  }

  .finale__copy {
    max-width: var(--desktop-copy-max);
  }

  .finale__visual {
    position: relative;
    z-index: 1;
    min-height: 0;
    margin: 0;
    overflow: visible;
  }

  .phone--finale-ghost {
    display: none;
  }

  .phone--finale {
    display: block;
    position: relative;
    width: var(--desktop-phone-width);
    max-width: var(--desktop-phone-width);
    margin: 0 auto;
    transform: none;
    aspect-ratio: var(--qlinx-phone-ratio);
  }

  .qurio--cta {
    width: 56px;
    right: 18%;
    top: 8%;
  }

  html.qlinx-motion [data-reveal] .eyebrow,
  html.qlinx-motion [data-reveal] .hero__label,
  html.qlinx-motion [data-reveal] .hero__kicker,
  html.qlinx-motion [data-reveal] .section-title,
  html.qlinx-motion [data-reveal] h1,
  html.qlinx-motion [data-reveal] .section-lead,
  html.qlinx-motion [data-reveal] .hero__body,
  html.qlinx-motion [data-reveal] .store-note,
  html.qlinx-motion [data-reveal] .story-line,
  html.qlinx-motion [data-reveal] .cta-row,
  html.qlinx-motion [data-reveal] .store-badges,
  html.qlinx-motion .store-mid[data-reveal],
  html.qlinx-motion [data-reveal] .faq-list,
  html.qlinx-motion [data-reveal] .chip-row,
  html.qlinx-motion [data-reveal] .inline-links {
    transform: translate3d(0, 24px, 0);
  }

  html.qlinx-motion [data-reveal] .story-figure,
  html.qlinx-motion [data-reveal] .phone--chapter,
  html.qlinx-motion [data-reveal] .qurio-intro__visual,
  html.qlinx-motion .hero__visual[data-reveal-group],
  html.qlinx-motion .finale__visual[data-reveal-group] {
    transform: translate3d(0, 32px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .qurio--hero,
  .qurio--cta,
  .qurio--stage {
    animation: none;
  }

  .cast,
  .phone--main,
  .phone--back,
  .phone--float,
  .phone--finale,
  .phone--finale-ghost,
  .stage-phone,
  .stage-shot,
  .story-shot {
    transform: none !important;
    transition: none !important;
  }

  html.qlinx-motion [data-reveal] *,
  html.qlinx-motion [data-reveal-group],
  html.qlinx-motion [data-reveal-group] * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
