:root {
  --font-display: "MiSans", "HarmonyOS Sans SC", "Alibaba PuHuiTi", "Source Han Sans SC", "Microsoft YaHei UI", sans-serif;
  --font-body: "Alibaba PuHuiTi", "MiSans", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei UI", sans-serif;
  --font-number: "DIN Alternate", "Bahnschrift", "Aptos Display", "MiSans", "Microsoft YaHei UI", sans-serif;
  --ink: #111318;
  --muted: #697383;
  --line: rgba(17, 19, 24, .12);
  --panel: rgba(255, 255, 255, .76);
  --brand: #1267ff;
  --accent: #0ec6b8;
  --hot: #ff2f76;
  --lime: #9cff18;
  --cyan: #10d7ff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page-bg, #f5f7fb);
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--wash-1, transparent), var(--wash-2, transparent)),
    var(--page-bg, #f5f7fb);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--nav-line, rgba(17, 19, 24, .08));
  background: var(--nav-bg, rgba(255, 255, 255, .7));
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  color: #111318;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,19,24,.12);
  box-shadow: 0 12px 32px rgba(31, 57, 88, .1);
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--symbol-fg, #fff);
  background: var(--symbol-bg, #111318);
  font-family: var(--font-display);
  font-size: 18px;
}

.brand-logo-box {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, #1267ff, #0b49c8);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 10px 24px rgba(18,103,255,.24);
  overflow: hidden;
}

.brand-logo-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: contrast(1.18) brightness(1.18);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted-strong, var(--muted));
  font-size: 11px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--nav-link, #202733);
  font-size: 13px;
  font-weight: 900;
  border: 1px solid transparent;
}

.nav-links a[aria-current="page"] {
  color: var(--active-fg, #fff);
  background: var(--active-bg, #111318);
}

.nav-cta {
  color: var(--cta-fg, #fff);
  background: var(--cta-bg, #111318);
  box-shadow: var(--cta-shadow, none);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 54px) clamp(28px, 5vw, 70px);
}

.hero-inner,
.content-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--eyebrow-fg, var(--brand));
  background: var(--eyebrow-bg, rgba(18, 103, 255, .09));
  border: 1px solid var(--eyebrow-line, rgba(18, 103, 255, .18));
  font-size: 12px;
  font-weight: 950;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.headline {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 94px);
  line-height: .98;
  letter-spacing: 0;
}

.headline span,
.section-title h2 span {
  display: block;
}

.subhead {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--lead, #344052);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.68;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
}

.btn.primary {
  color: var(--button-primary-fg, #fff);
  background: var(--button-primary-bg, #111318);
  box-shadow: var(--button-primary-shadow, none);
}

.btn.secondary {
  color: var(--button-secondary-fg, #111318);
  background: var(--button-secondary-bg, rgba(255,255,255,.72));
  border-color: var(--button-secondary-line, rgba(17,19,24,.12));
}

.metric-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(28px, 4vw, 46px);
}

.metric {
  min-height: 116px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--metric-fg, var(--ink));
  background: var(--metric-bg, rgba(255,255,255,.72));
  border: 1px solid var(--metric-line, rgba(17,19,24,.08));
  position: relative;
  overflow: hidden;
}

.metric::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 4px;
  border-radius: 999px;
  background: var(--metric-accent, var(--brand));
  opacity: .82;
  transform-origin: left;
  animation: scaleIn 1.2s ease both;
}

.metric b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--metric-muted, var(--muted));
  font-size: 13px;
  line-height: 1.38;
  font-weight: 850;
}

.visual-frame {
  position: relative;
  min-height: 650px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--visual-bg, #dde7f5);
  border: 1px solid var(--visual-line, rgba(255,255,255,.6));
  box-shadow: var(--visual-shadow, 0 28px 80px rgba(29, 53, 82, .18));
}

.visual-frame .scene {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: var(--scene-position, 50% 35%);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--visual-overlay, linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.25)));
}

.hero-poster-frame {
  background: #eef6ff;
}

.hero-poster-image {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-poster-frame::after {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(237,246,255,.1));
}

.product-object {
  position: absolute;
  z-index: 5;
  width: min(390px, 52%);
  left: var(--product-left, 5%);
  bottom: var(--product-bottom, 5%);
  filter: drop-shadow(0 26px 36px rgba(0,0,0,.36));
  animation: floatObject 3.8s ease-in-out infinite;
}

.alise-object {
  position: absolute;
  z-index: 6;
  width: min(310px, 42%);
  right: var(--alise-right, -5%);
  bottom: var(--alise-bottom, -5%);
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.3));
}

.assistant-chip {
  position: absolute;
  z-index: 7;
  left: 18px;
  top: 18px;
  max-width: min(320px, calc(100% - 36px));
  padding: 12px 13px;
  border-radius: var(--radius);
  color: var(--chip-fg, #111318);
  background: var(--chip-bg, rgba(255,255,255,.82));
  border: 1px solid var(--chip-line, rgba(17,19,24,.1));
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.mini-dashboard {
  position: absolute;
  z-index: 8;
  right: 18px;
  top: 18px;
  width: min(260px, 44%);
  padding: 14px;
  border-radius: var(--radius);
  color: var(--dash-fg, #111318);
  background: var(--dash-bg, rgba(255,255,255,.78));
  border: 1px solid var(--dash-line, rgba(255,255,255,.72));
  backdrop-filter: blur(18px);
}

.mini-dashboard strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.mini-dashboard small {
  display: block;
  margin-top: 4px;
  color: var(--dash-muted, rgba(17,19,24,.62));
  font-weight: 850;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  align-items: end;
  height: 68px;
  margin-top: 14px;
}

.mini-bars i {
  display: block;
  height: var(--h);
  min-height: 8px;
  border-radius: 999px;
  background: var(--mini-bar, var(--brand));
  animation: barRise 1.5s ease both;
}

.section {
  position: relative;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 54px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .65fr);
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 40px);
}

.section-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-title p {
  margin: 0;
  color: var(--section-copy, var(--muted));
  line-height: 1.72;
  font-weight: 650;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: stretch;
}

.panel,
.data-card,
.flow-step,
.kb-card,
.quote-card,
.contact-card {
  border-radius: var(--radius);
  background: var(--panel-bg, var(--panel));
  border: 1px solid var(--panel-line, var(--line));
  box-shadow: var(--panel-shadow, none);
}

.panel {
  padding: clamp(20px, 3vw, 34px);
}

.panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

.panel p {
  margin: 10px 0 0;
  color: var(--panel-copy, var(--muted));
  line-height: 1.68;
  font-weight: 650;
}

.gauge {
  --p: 84;
  width: min(230px, 100%);
  aspect-ratio: 1;
  margin: 24px auto 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gauge-fg, var(--ink));
  background:
    radial-gradient(circle at center, var(--gauge-core, #fff) 58%, transparent 59%),
    conic-gradient(var(--gauge-fill, var(--brand)) calc(var(--p) * 1%), var(--gauge-track, rgba(18,103,255,.12)) 0);
  animation: breathe 2.8s ease-in-out infinite;
}

.gauge b {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
}

.gauge span {
  display: block;
  margin-top: 6px;
  color: var(--gauge-muted, var(--muted));
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.bar-stack {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  color: var(--bar-fg, var(--ink));
  font-size: 13px;
  font-weight: 900;
}

.bar-track {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--bar-track, rgba(17,19,24,.08));
}

.bar-track i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--bar-fill, linear-gradient(90deg, var(--brand), var(--accent)));
  animation: barGrow 1.4s ease both;
}

.action-grid,
.data-grid,
.kb-grid,
.scene-grid {
  display: grid;
  gap: 12px;
}

.action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

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

.kb-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.data-card,
.kb-card,
.quote-card {
  min-height: 132px;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.data-card b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.data-card span,
.kb-card span,
.quote-card span {
  display: block;
  margin-top: 10px;
  color: var(--card-copy, var(--muted));
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

.kb-card b,
.quote-card b {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.insight-card {
  min-height: 142px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(37, 58, 84, .09);
}

.insight-card b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  line-height: 1.28;
}

.insight-card span {
  display: block;
  margin-top: 10px;
  color: #526074;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}

.hardware-section {
  padding-top: clamp(34px, 5vw, 78px);
}

.hardware-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.device-showcase {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(230,240,249,.72)),
    radial-gradient(circle at 70% 20%, rgba(18,103,255,.15), transparent 34%);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 28px 80px rgba(37, 58, 84, .13);
}

.device-stage {
  position: relative;
  min-height: 336px;
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 62px);
}

.device-stage::before {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(18,103,255,.08);
  filter: blur(8px);
}

.device-stage img {
  position: relative;
  z-index: 1;
  width: min(560px, 92%);
  transform: rotate(-8deg);
  filter: drop-shadow(0 34px 42px rgba(17,24,39,.22));
  animation: floatObject 4.2s ease-in-out infinite;
}

.product-gallery {
  position: relative;
  height: 100%;
  min-height: 590px;
  padding: 54px 18px 96px;
  display: grid;
  grid-template-rows: minmax(360px, 1fr);
  gap: 14px;
}

.product-shot-grid {
  position: relative;
  z-index: 3;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-shot-grid figure {
  margin: 0;
  min-height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(37,58,84,.08);
  position: relative;
}

.product-shot-grid img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  object-position: 50% 50%;
}

.product-shot-grid figcaption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #102033;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,19,24,.08);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 950;
}

.device-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 15px;
  border-radius: var(--radius);
  color: #102033;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
}

.device-caption b {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.device-caption span {
  color: #5f6c80;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.hardware-copy {
  min-height: 520px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.spec-card {
  min-height: 128px;
  padding: 15px;
  border-radius: var(--radius);
  color: #102033;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 44px rgba(37,58,84,.08);
}

.spec-card b {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.spec-card span {
  display: block;
  margin-top: 9px;
  color: #5d6a7c;
  font-size: 13px;
  line-height: 1.52;
  font-weight: 750;
}

.hardware-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-step {
  min-height: 178px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.flow-step em {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--step-fg, #fff);
  background: var(--step-bg, #111318);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.flow-step b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  line-height: 1.35;
}

.flow-step b::before,
.insight-card b::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.8px solid #1267ff;
  background:
    linear-gradient(90deg, transparent 46%, #1267ff 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 46%, #1267ff 46% 54%, transparent 54%),
    rgba(18,103,255,.07);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.72);
}

.flow-step span {
  display: block;
  margin-top: 10px;
  color: var(--card-copy, var(--muted));
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.use-process {
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(239,247,255,.72));
  border: 1px solid rgba(255,255,255,.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 24px 70px rgba(37,58,84,.1);
}

.process-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.process-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.process-title p {
  margin: 0;
  max-width: 450px;
  color: #526074;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 750;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.process-node {
  position: relative;
  min-height: 132px;
  padding: 14px 10px 12px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius);
  color: #07101f;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(37,58,84,.08);
}

.process-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 1.8px;
  background: #1267ff;
  transform: translateY(-50%);
  z-index: 2;
}

.process-node svg {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  stroke: #1267ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.process-node b {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: stretch;
}

.image-slab {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--visual-line, rgba(255,255,255,.5));
}

.image-slab img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 34%;
}

.scene-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 34%;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .72s ease, transform 3.8s ease;
}

.scene-slide:nth-child(2) {
  object-position: 50% 32%;
}

.scene-slide:nth-child(3) {
  object-position: 50% 36%;
}

.scene-slide:nth-child(4) {
  object-position: 50% 34%;
}

.scene-slide:nth-child(5) {
  object-position: 50% 35%;
}

.scene-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.scene-dots {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  display: inline-flex;
  gap: 7px;
  padding: 8px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
}

.scene-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(6, 17, 31, .22);
}

.scene-dots span.is-active {
  width: 18px;
  border-radius: 999px;
  background: #1267ff;
}

.image-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 14px;
  border-radius: var(--radius);
  color: var(--chip-fg, #111318);
  background: var(--chip-bg, rgba(255,255,255,.82));
  border: 1px solid var(--chip-line, rgba(255,255,255,.62));
  backdrop-filter: blur(16px);
  font-weight: 900;
  line-height: 1.45;
}

.report-slab {
  max-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--panel-line, var(--line));
  background: var(--report-bg, #fff);
  position: relative;
}

.report-slab img {
  width: 100%;
}

.report-slab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(transparent, var(--report-fade, #fff));
}

.cta-zone {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 54px);
}

.cta-box {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border-radius: var(--radius);
  color: var(--cta-box-fg, var(--ink));
  background: var(--cta-box-bg, var(--panel));
  border: 1px solid var(--cta-box-line, var(--line));
  box-shadow: var(--panel-shadow, none);
}

.cta-box h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  white-space: nowrap;
}

.cta-box p {
  margin: 14px 0 0;
  color: var(--cta-box-copy, var(--muted));
  line-height: 1.72;
  font-weight: 700;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--contact-fg, var(--ink));
  background: var(--contact-bg, rgba(255,255,255,.62));
  border: 1px solid var(--contact-line, rgba(17,19,24,.12));
  font-size: 13px;
  font-weight: 900;
}

.lead-capture {
  margin-top: 22px;
}

.lead-toggle,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1267ff, #0b5dd7);
  box-shadow: 0 16px 36px rgba(18,103,255,.22);
  font-weight: 950;
  cursor: pointer;
}

.lead-form {
  margin-top: 14px;
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 44px rgba(37,58,84,.08);
}

.lead-form[hidden] {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: #526074;
  font-size: 12px;
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: #07101f;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,19,24,.1);
  outline: none;
}

.lead-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.qr-box {
  width: min(220px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--qr-fg, #111318);
  background: var(--qr-bg, #fff);
  border: 1px solid var(--qr-line, rgba(17,19,24,.12));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.qr-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  background:
    linear-gradient(90deg, currentColor 10px, transparent 10px 18px, currentColor 18px 26px, transparent 26px 38px, currentColor 38px 48px, transparent 48px),
    linear-gradient(currentColor 10px, transparent 10px 18px, currentColor 18px 26px, transparent 26px 38px, currentColor 38px 48px, transparent 48px);
  background-size: 48px 48px;
  opacity: .2;
}

.qr-box span {
  position: relative;
  z-index: 1;
  width: 112px;
  padding: 9px;
  border-radius: 6px;
  color: var(--qr-label-fg, var(--qr-fg));
  background: var(--qr-label-bg, #fff);
  border: 1px solid var(--qr-line, rgba(17,19,24,.12));
  font-weight: 950;
  line-height: 1.38;
}

.assistant-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  width: min(250px, calc(100vw - 36px));
  padding: 9px;
  border-radius: var(--radius);
  color: var(--float-fg, #fff);
  background: var(--float-bg, rgba(13, 18, 26, .86));
  border: 1px solid var(--float-line, rgba(255,255,255,.16));
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(0,0,0,.26);
}

.assistant-float img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
}

.assistant-float b {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.assistant-float span {
  display: block;
  margin-top: 4px;
  color: var(--float-copy, rgba(255,255,255,.72));
  font-size: 11px;
  line-height: 1.42;
  font-weight: 700;
}

.alise-poster-card {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 18px;
  width: min(205px, 32%);
  height: 286px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 24px 60px rgba(17, 24, 39, .2);
}

.alise-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 57%;
}

.alise-poster-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #111318;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,19,24,.1);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 950;
}

.hub {
  min-height: 100vh;
  padding: clamp(28px, 5vw, 70px);
  color: #111318;
  background:
    linear-gradient(120deg, rgba(238,248,255,.94), rgba(250,238,255,.92)),
    url("../assets/scene-talk.png") center / cover;
  position: relative;
}

.hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17,19,24,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hub-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hub h1 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 106px);
  line-height: .96;
  letter-spacing: 0;
  max-width: 980px;
}

.hub p {
  margin: 18px 0 0;
  max-width: 820px;
  color: #374151;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  font-weight: 700;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 5vw, 56px);
}

.hub-card {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: #fff;
  background: #111318;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 28px 80px rgba(18, 37, 74, .22);
}

.hub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transform: scale(1.02);
  transition: transform .5s ease, opacity .5s ease;
}

.hub-card:hover img {
  transform: scale(1.06);
  opacity: .86;
}

.hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82));
}

.hub-card-content {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.hub-card small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  font-weight: 950;
}

.hub-card h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.hub-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  font-size: 14px;
  font-weight: 750;
}

.theme-apple {
  --page-bg: #edf3f7;
  --wash-1: rgba(255,255,255,.94);
  --wash-2: rgba(230,238,245,.9);
  --brand: #1267ff;
  --accent: #0eac8c;
  --nav-bg: rgba(247,250,252,.72);
  --active-bg: #111318;
  --cta-bg: #111318;
  --button-primary-bg: #111318;
  --button-secondary-bg: rgba(255,255,255,.72);
  --panel-bg: rgba(255,255,255,.72);
  --panel-line: rgba(255,255,255,.9);
  --panel-shadow: 0 22px 70px rgba(37, 58, 84, .12);
  --metric-bg: rgba(255,255,255,.76);
  --metric-line: rgba(17,19,24,.08);
  --visual-overlay: linear-gradient(180deg, rgba(255,255,255,.03), rgba(236,244,250,.32));
  --chip-bg: rgba(255,255,255,.78);
  --dash-bg: rgba(255,255,255,.76);
  --gauge-fill: #1267ff;
  --gauge-track: rgba(18,103,255,.13);
  --gauge-core: rgba(255,255,255,.94);
  --report-fade: #fff;
  --symbol-bg: #111318;
}

.theme-apple .metric:nth-child(1) { --metric-accent: #111318; }
.theme-apple .metric:nth-child(2) { --metric-accent: #1267ff; }
.theme-apple .metric:nth-child(3) { --metric-accent: #0eac8c; }
.theme-apple .metric:nth-child(4) { --metric-accent: #6b7280; }

.theme-apple .hero {
  min-height: auto;
  padding-top: clamp(24px, 3vw, 44px);
  padding-bottom: clamp(28px, 4vw, 56px);
}

.theme-apple .hero-inner {
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
}

.theme-apple .headline {
  max-width: 720px;
  font-size: clamp(42px, 4.05vw, 68px);
  line-height: 1.03;
}

.theme-apple .headline span {
  white-space: nowrap;
}

.theme-apple .subhead {
  max-width: 600px;
  margin-top: 16px;
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.58;
  font-weight: 800;
  color: #354255;
}

.theme-apple .metric-ribbon {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  margin-top: clamp(22px, 3vw, 34px);
}

.theme-apple .metric {
  min-height: 132px;
  padding: 15px;
}

.theme-apple .metric b {
  color: #07101f;
  font-size: clamp(32px, 2.55vw, 42px);
}

.theme-apple .hero-primary-metric b {
  color: #020407;
  font-size: clamp(48px, 4.2vw, 66px);
}

.theme-apple .metric span {
  color: #4b5668;
}

.theme-apple .data-card {
  min-height: 166px;
}

.theme-apple .data-card b {
  color: #07101f;
  font-size: clamp(54px, 5.4vw, 86px);
}

.theme-apple .data-card span {
  font-size: 13px;
}

.theme-apple .product-object {
  width: min(330px, 44%);
  left: 8%;
  bottom: 4%;
}

.theme-apple .mini-dashboard strong {
  color: #07101f;
  font-size: 46px;
}

.theme-apple .gauge b {
  color: #07101f;
  font-size: clamp(60px, 5vw, 78px);
}

.theme-apple .bar-row span:last-child {
  color: #07101f;
  font-size: 16px;
  font-weight: 950;
}

.theme-apple .assistant-float {
  width: 184px;
  grid-template-columns: 42px 1fr;
  color: #102033;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(31,57,88,.13);
}

.theme-apple .assistant-float img {
  width: 42px;
  height: 42px;
  background: #edf4ff;
}

.theme-apple .assistant-float b {
  font-size: 12px;
}

.theme-apple .assistant-float span {
  color: #657286;
  font-size: 11px;
}

.theme-apple #knowledge .data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-apple .dashboard-kpis .data-card b {
  font-size: clamp(48px, 4.8vw, 74px);
}

.theme-apple .section-title h2 span {
  white-space: nowrap;
}

/* Apple-light polish pass */
.theme-apple .site-nav {
  box-shadow: 0 1px 0 rgba(17,19,24,.04), 0 16px 44px rgba(37,58,84,.06);
}

.theme-apple .panel,
.theme-apple .data-card,
.theme-apple .flow-step,
.theme-apple .kb-card,
.theme-apple .quote-card,
.theme-apple .spec-card,
.theme-apple .insight-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(248,251,255,.68));
  border-color: rgba(255,255,255,.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 22px 60px rgba(37,58,84,.1);
  backdrop-filter: blur(18px);
}

.theme-apple .section-title {
  align-items: center;
}

.theme-apple .section-title h2 {
  color: #07101f;
  font-weight: 950;
}

.theme-apple .section-title p {
  color: #526074;
  font-size: 15px;
  font-weight: 750;
}

.dashboard-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.dashboard-heading p {
  max-width: none;
  white-space: nowrap;
}

.theme-apple .metric b,
.theme-apple .data-card b,
.theme-apple .gauge b,
.theme-apple .mini-dashboard strong,
.hardware-live-card b,
.spec-number b,
.record-strip b {
  font-family: var(--font-number);
  letter-spacing: 0;
}

.theme-apple .metric {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,251,255,.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 44px rgba(37,58,84,.08);
}

.theme-apple .metric::after {
  height: 5px;
  left: 16px;
  right: 16px;
  bottom: 13px;
}

.theme-apple .hardware-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(230,238,245,.42));
}

.theme-apple .hardware-layout {
  grid-template-columns: minmax(440px, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.theme-apple .device-showcase {
  min-height: 590px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(237,246,255,.76));
}

.theme-apple .device-stage {
  background-image:
    linear-gradient(rgba(18,103,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,103,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.theme-apple .device-stage::before {
  width: 66%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18,103,255,.08), rgba(14,172,140,.05));
  filter: none;
  transform: rotate(-8deg);
  border: 1px solid rgba(255,255,255,.72);
}

.theme-apple .device-stage img {
  width: min(700px, 98%);
  transform: rotate(-2deg) translateY(-4px);
}

.device-status {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.device-status span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0b5dd7;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(18,103,255,.16);
  box-shadow: 0 12px 28px rgba(37,58,84,.08);
  font-size: 12px;
  font-weight: 950;
}

.theme-apple .device-caption {
  align-items: flex-end;
}

.theme-apple .device-caption b {
  font-size: 22px;
}

.hardware-live-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hardware-live-card div {
  min-height: 118px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(37,58,84,.08);
}

.hardware-live-card span {
  display: block;
  color: #647084;
  font-size: 12px;
  font-weight: 900;
}

.hardware-live-card b {
  display: block;
  margin-top: 10px;
  color: #07101f;
  font-size: clamp(38px, 4vw, 62px);
  line-height: .9;
}

.theme-apple .spec-grid {
  gap: 10px;
}

.theme-apple .spec-card {
  min-height: 132px;
}

.theme-apple .spec-card b {
  color: #0b1525;
  font-size: 20px;
}

.theme-apple .spec-number b {
  color: #07101f;
  font-size: clamp(32px, 3.1vw, 52px);
  line-height: 1;
}

.record-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.record-strip span {
  min-height: 72px;
  padding: 10px;
  border-radius: 8px;
  color: #687488;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 850;
}

.record-strip b {
  display: block;
  color: #07101f;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 5px;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.status-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  color: #075985;
  background: rgba(18,103,255,.08);
  border: 1px solid rgba(18,103,255,.14);
  font-size: 12px;
  font-weight: 950;
}

.theme-apple .metric b > span,
.theme-apple .data-card b > span,
.theme-apple .hardware-live-card b > span,
.theme-apple .spec-card b > span,
.theme-apple .gauge b > span,
.theme-apple .mini-dashboard strong > span,
.theme-apple .record-strip b > span {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  font-family: var(--font-number);
  white-space: nowrap;
}

.count-unit {
  display: inline-block;
  margin-left: .06em;
  color: inherit;
  font: inherit;
  font-size: .52em;
  line-height: 1;
  vertical-align: .18em;
}

.hero-primary-metric .count-unit {
  font-size: .58em;
}

.hardware-live-card .count-unit,
.dashboard-kpis .count-unit,
#knowledge .count-unit {
  font-size: .42em;
  vertical-align: .2em;
}

.theme-apple .metric b,
.theme-apple .data-card b,
.theme-apple .hardware-live-card b,
.theme-apple .spec-number b,
.theme-apple .gauge b,
.theme-apple .mini-dashboard strong,
.theme-apple .record-strip b {
  color: #06111f;
}

.theme-apple .metric:nth-child(2) b,
.theme-apple .metric:nth-child(3) b,
.theme-apple .metric:nth-child(4) b,
.theme-apple .dashboard-kpis .data-card b,
.theme-apple #knowledge .data-card b,
.theme-apple .spec-number:nth-child(3) b,
.theme-apple .spec-number:nth-child(4) b,
.theme-apple .spec-number:nth-child(5) b,
.theme-apple .spec-number:nth-child(6) b {
  color: #1267ff;
}

.theme-apple .hardware-live-card b {
  font-size: clamp(44px, 4.1vw, 60px);
}

.theme-apple .spec-number b {
  font-size: clamp(42px, 4.2vw, 68px);
}

.theme-apple .record-strip b {
  font-size: clamp(28px, 2.8vw, 42px);
}

.theme-apple .dashboard-layout {
  grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.dashboard-score-panel {
  display: flex;
  flex-direction: column;
}

.dashboard-score-panel p {
  margin-top: 14px;
  margin-bottom: 18px;
  line-height: 1.82;
}

.dashboard-score-panel .bar-stack {
  gap: 17px;
}

.dashboard-score-panel .action-grid {
  margin-top: auto;
  padding-top: 30px;
}

.theme-apple .dashboard-kpis {
  gap: 14px;
}

.theme-apple .insight-grid {
  gap: 14px;
}

.theme-dark {
  --page-bg: #050607;
  --wash-1: rgba(5,6,7,.98);
  --wash-2: rgba(1,2,4,1);
  --ink: #f6f8fb;
  --muted: rgba(246,248,251,.68);
  --brand: #9cff18;
  --accent: #10d7ff;
  --nav-bg: rgba(5,6,7,.76);
  --nav-line: rgba(255,255,255,.1);
  --nav-link: rgba(246,248,251,.74);
  --active-bg: #9cff18;
  --active-fg: #050607;
  --cta-bg: #9cff18;
  --cta-fg: #050607;
  --button-primary-bg: #9cff18;
  --button-primary-fg: #050607;
  --button-secondary-bg: rgba(255,255,255,.06);
  --button-secondary-fg: #fff;
  --button-secondary-line: rgba(255,255,255,.14);
  --panel-bg: rgba(22,24,28,.88);
  --panel-line: rgba(255,255,255,.1);
  --panel-copy: rgba(246,248,251,.68);
  --panel-shadow: 0 30px 90px rgba(0,0,0,.42);
  --metric-bg: rgba(255,255,255,.055);
  --metric-line: rgba(255,255,255,.08);
  --metric-fg: #fff;
  --metric-muted: rgba(246,248,251,.62);
  --visual-bg: #101216;
  --visual-line: rgba(255,255,255,.12);
  --visual-overlay: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.56)), linear-gradient(90deg, rgba(156,255,24,.18), transparent 46%, rgba(255,47,118,.16));
  --chip-bg: rgba(156,255,24,.92);
  --chip-fg: #050607;
  --chip-line: rgba(156,255,24,.18);
  --dash-bg: rgba(12,14,18,.78);
  --dash-fg: #fff;
  --dash-line: rgba(255,255,255,.14);
  --dash-muted: rgba(246,248,251,.62);
  --mini-bar: #9cff18;
  --gauge-fill: #9cff18;
  --gauge-track: rgba(156,255,24,.14);
  --gauge-core: #16181c;
  --gauge-fg: #fff;
  --gauge-muted: rgba(246,248,251,.66);
  --bar-track: rgba(255,255,255,.1);
  --bar-fill: linear-gradient(90deg, #9cff18, #10d7ff);
  --bar-fg: #fff;
  --card-copy: rgba(246,248,251,.68);
  --step-bg: rgba(156,255,24,.16);
  --step-fg: #9cff18;
  --report-bg: #16181c;
  --report-fade: #16181c;
  --cta-box-bg: linear-gradient(135deg, rgba(156,255,24,.16), rgba(16,215,255,.08), rgba(255,47,118,.1)), rgba(22,24,28,.92);
  --cta-box-fg: #fff;
  --cta-box-copy: rgba(246,248,251,.72);
  --cta-box-line: rgba(255,255,255,.12);
  --contact-bg: rgba(255,255,255,.06);
  --contact-fg: #fff;
  --contact-line: rgba(255,255,255,.14);
  --qr-bg: #fff;
  --qr-fg: #050607;
  --qr-label-bg: #fff;
  --symbol-bg: #9cff18;
  --symbol-fg: #050607;
  --float-bg: rgba(5,6,7,.88);
}

.theme-dark .page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(156,255,24,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,215,255,.1) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.theme-dark .metric:nth-child(1) { --metric-accent: #9cff18; }
.theme-dark .metric:nth-child(2) { --metric-accent: #10d7ff; }
.theme-dark .metric:nth-child(3) { --metric-accent: #ff2f76; }
.theme-dark .metric:nth-child(4) { --metric-accent: #fff; }

.theme-poster {
  --page-bg: #f3f6fb;
  --wash-1: rgba(234,247,255,.92);
  --wash-2: rgba(255,238,249,.9);
  --brand: #111318;
  --accent: #5a38d6;
  --hot: #ff2f76;
  --nav-bg: rgba(255,255,255,.7);
  --active-bg: #111318;
  --button-primary-bg: #111318;
  --button-secondary-bg: rgba(255,255,255,.68);
  --panel-bg: rgba(255,255,255,.72);
  --panel-line: rgba(255,255,255,.84);
  --panel-shadow: 0 24px 76px rgba(59, 73, 104, .14);
  --metric-bg: rgba(255,255,255,.72);
  --metric-line: rgba(17,19,24,.08);
  --visual-overlay: linear-gradient(180deg, rgba(255,255,255,.03), rgba(91,56,214,.18));
  --chip-bg: rgba(255,255,255,.84);
  --dash-bg: rgba(17,19,24,.88);
  --dash-fg: #fff;
  --dash-muted: rgba(255,255,255,.72);
  --mini-bar: #ff2f76;
  --gauge-fill: #5a38d6;
  --gauge-track: rgba(90,56,214,.13);
  --gauge-core: rgba(255,255,255,.94);
  --bar-fill: linear-gradient(90deg, #5a38d6, #10d7ff, #ff2f76);
  --step-bg: #111318;
  --step-fg: #fff;
  --report-fade: #fff;
  --symbol-bg: #111318;
}

.theme-poster .metric:nth-child(1) { --metric-accent: #111318; }
.theme-poster .metric:nth-child(2) { --metric-accent: #5a38d6; }
.theme-poster .metric:nth-child(3) { --metric-accent: #1267ff; }
.theme-poster .metric:nth-child(4) { --metric-accent: #ff2f76; }

.poster-hero {
  --scene-position: 50% 50%;
  --product-left: 8%;
  --product-bottom: 7%;
  --alise-right: -9%;
  --alise-bottom: -10%;
}

.poster-hero .visual-frame {
  background:
    linear-gradient(120deg, rgba(212,245,255,.8), rgba(255,225,249,.88)),
    #e9f1ff;
}

.poster-reference {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
}

.poster-reference img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.poster-hero .product-object,
.poster-hero .alise-object,
.poster-hero .mini-dashboard,
.poster-hero .assistant-chip {
  z-index: 5;
}

.poster-hero .poster-reference::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.56));
}

@keyframes floatObject {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

@keyframes barRise {
  from { transform: scaleY(.2); opacity: .35; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes barGrow {
  from { width: 0; }
  to { width: var(--w); }
}

@keyframes scaleIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.018); filter: brightness(1.08); }
}

@media (max-width: 1120px) {
  .hero-inner,
  .section-title,
  .dashboard-layout,
  .hardware-layout,
  .split-proof {
    grid-template-columns: 1fr;
  }

  .visual-frame,
  .visual-frame .scene {
    min-height: 560px;
  }

  .metric-ribbon,
  .data-grid,
  .dashboard-kpis,
  .insight-grid,
  .hardware-live-card,
  .record-strip,
  .flow,
  .hardware-flow,
  .kb-grid,
  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-grid,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .theme-apple .hero-inner,
  .theme-apple .hardware-layout,
  .theme-apple .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .theme-apple .headline {
    max-width: 900px;
    font-size: clamp(46px, 7.8vw, 78px);
  }

  .product-shot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .process-node::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    overflow-x: hidden;
  }

  .site-nav {
    position: relative;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
    white-space: normal;
  }

  .brand > span:last-child {
    font-size: 14px;
    line-height: 1.15;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-logo-box {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

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

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 24px 14px 30px;
  }

  .section {
    padding: 42px 14px;
  }

  .hero-inner,
  .content-wrap,
  .section-title,
  .hardware-layout,
  .dashboard-layout,
  .split-proof {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .theme-apple .hero {
    padding-top: 20px;
  }

  .theme-apple .hero-inner {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
  }

  .theme-apple .headline {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .theme-apple .headline span,
  .theme-apple .section-title h2 span {
    white-space: normal;
  }

  .theme-apple .subhead {
    max-width: 100%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 780;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .metric-ribbon,
  .data-grid,
  .dashboard-kpis,
  .insight-grid,
  .hardware-live-card,
  .record-strip,
  .status-row,
  .flow,
  .hardware-flow,
  .kb-grid,
  .hub-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .theme-apple .metric-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 20px;
  }

  .theme-apple .metric {
    min-height: 112px;
    padding: 13px;
  }

  .theme-apple .metric b {
    font-size: clamp(34px, 12vw, 52px);
  }

  .theme-apple .hero-primary-metric b {
    font-size: clamp(48px, 16vw, 72px);
  }

  .visual-frame,
  .visual-frame .scene,
  .hero-poster-image {
    min-height: 480px;
  }

  .visual-frame {
    border-radius: 8px;
  }

  .visual-frame .scene {
    object-position: 58% 35%;
  }

  .hero-poster-image {
    object-position: 50% 48%;
  }

  .assistant-chip {
    left: 12px;
    right: 12px;
    top: 12px;
    max-width: none;
    padding: 10px 11px;
    font-size: 12px;
  }

  .mini-dashboard {
    width: min(210px, 60%);
    right: 12px;
    top: 72px;
    padding: 11px;
  }

  .mini-dashboard strong,
  .theme-apple .mini-dashboard strong {
    font-size: 34px;
  }

  .mini-bars {
    height: 48px;
    gap: 4px;
  }

  .product-object {
    width: min(290px, 68%);
    left: 3%;
    bottom: 5%;
  }

  .alise-object {
    width: min(230px, 48%);
  }

  .alise-poster-card {
    width: min(150px, 38%);
    height: 210px;
    right: 3%;
    bottom: 0;
  }

  .device-showcase,
  .hardware-copy {
    min-height: auto;
  }

  .device-showcase {
    aspect-ratio: auto;
    overflow: visible;
  }

  .product-gallery {
    min-height: auto;
    height: auto;
    padding: 48px 12px 90px;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .device-stage {
    min-height: 250px;
    padding: 34px 14px 24px;
  }

  .theme-apple .device-stage img {
    width: min(420px, 98%);
    transform: rotate(-7deg) translateY(-4px);
  }

  .product-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-shot-grid figure {
    min-height: 132px;
  }

  .product-shot-grid img {
    min-height: 132px;
  }

  .device-status {
    left: 12px;
    right: 12px;
    top: 12px;
    gap: 6px;
  }

  .device-status span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 11px;
  }

  .device-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: block;
    padding: 12px;
  }

  .theme-apple .device-caption b {
    font-size: 18px;
  }

  .device-caption span {
    margin-top: 5px;
    font-size: 12px;
  }

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

  .theme-apple .spec-card {
    min-height: 112px;
    padding: 12px;
  }

  .theme-apple .spec-card b {
    font-size: 18px;
  }

  .theme-apple .spec-number b {
    font-size: clamp(32px, 12vw, 54px);
  }

  .hardware-live-card {
    gap: 8px;
  }

  .hardware-live-card div {
    min-height: 102px;
    padding: 12px;
  }

  .theme-apple .hardware-live-card b {
    font-size: clamp(40px, 14vw, 58px);
  }

  .section-title {
    gap: 12px;
    align-items: start;
    margin-bottom: 22px;
  }

  .section-title h2 {
    font-size: clamp(30px, 9.4vw, 44px);
    line-height: 1.08;
  }

  .section-title p {
    font-size: 14px;
    line-height: 1.6;
  }

  .panel {
    padding: 18px;
  }

  .panel h3 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .data-card,
  .flow-step,
  .kb-card,
  .quote-card {
    min-height: 112px;
    padding: 14px;
  }

  .theme-apple .data-card b,
  .theme-apple .dashboard-kpis .data-card b {
    font-size: clamp(42px, 14vw, 62px);
  }

  .dashboard-heading p {
    white-space: normal;
  }

  .use-process {
    padding: 16px;
  }

  .process-title {
    display: block;
  }

  .process-title p {
    margin-top: 8px;
  }

  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-node {
    min-height: 122px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    white-space: normal;
  }

  .theme-apple .hardware-layout,
  .theme-apple .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 82px minmax(0, 1fr) 38px;
  }

  .assistant-float {
    display: none;
  }

  .qr-box {
    justify-self: start;
    width: 180px;
  }

  .hub-card {
    min-height: 330px;
  }
}

/* Final Apple-light polish pass for inline feedback */
.brand-logo-box {
  background: linear-gradient(145deg, #141922, #03060b) !important;
  box-shadow: 0 12px 26px rgba(3, 6, 11, .16) !important;
}

.theme-apple .headline span:first-child::after {
  content: none;
}

.theme-apple .line-icon {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1267ff;
}

.theme-apple .line-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.85;
}

.theme-apple .flow-step b,
.theme-apple .insight-card b,
.theme-apple .spec-icon-card b {
  gap: 10px;
}

.theme-apple .device-stage::before {
  display: none;
}

.theme-apple .product-carousel.product-scroll {
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.theme-apple .product-marquee {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
  width: max-content;
  animation: productMarquee 16s linear infinite;
  will-change: transform;
}

.theme-apple .device-stage .product-carousel.product-scroll img,
.theme-apple .device-stage .product-carousel.product-scroll .product-cutout {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  width: min(660px, 82vw);
  height: auto;
  max-height: 300px;
  object-fit: contain;
  opacity: 1;
  transform: none;
  filter: drop-shadow(0 30px 34px rgba(17, 24, 39, .20));
  animation: none;
  transition: none;
}

@keyframes productMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-25% - 22px));
  }
}

.count-value {
  color: inherit;
}

.count-unit {
  color: #06111f;
}

.theme-apple .metric:not(.hero-primary-metric) b,
.theme-apple .data-card b,
.theme-apple .hardware-live-card b,
.theme-apple .spec-number b,
.theme-apple .gauge b {
  color: #06111f;
}

.theme-apple .metric:not(.hero-primary-metric) .count-value,
.theme-apple .data-card .count-value,
.theme-apple .hardware-live-card .count-value,
.theme-apple .spec-number .count-value,
.theme-apple .gauge .count-value {
  color: #1267ff;
}

.theme-apple .hero-primary-metric .count-value {
  color: #06111f;
}

.theme-apple .hardware-live-card b > span,
.theme-apple .data-card b > span,
.theme-apple .spec-number b > span,
.theme-apple .metric b > span {
  color: inherit;
}

.theme-apple .hardware-live-card .count-unit,
.theme-apple .data-card .count-unit,
.theme-apple .spec-number .count-unit,
.theme-apple .metric .count-unit {
  color: #06111f;
}

@media (max-width: 760px) {
  .theme-apple .product-carousel.product-scroll {
    min-height: 228px;
  }

  .theme-apple .device-stage .product-carousel.product-scroll img,
  .theme-apple .device-stage .product-carousel.product-scroll .product-cutout {
    width: min(500px, 96vw);
    max-height: 210px;
  }
}

@media (max-width: 520px) {
  .site-nav {
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand > span:last-child {
    font-size: 13px;
  }

  .theme-apple .headline {
    font-size: clamp(30px, 9.6vw, 36px);
  }

  .theme-apple .metric-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-apple .metric {
    min-height: 104px;
  }

  .visual-frame,
  .visual-frame .scene,
  .hero-poster-image {
    min-height: 430px;
  }

  .mini-dashboard {
    width: min(186px, 58%);
  }

  .alise-poster-card {
    width: min(132px, 36%);
    height: 184px;
  }

  .product-object {
    width: min(260px, 76%);
  }

  .product-gallery {
    padding: 48px 10px 104px;
  }

  .device-stage {
    min-height: 218px;
  }

  .product-shot-grid {
    grid-template-columns: 1fr;
  }

  .product-shot-grid figure {
    min-height: 164px;
  }

  .product-shot-grid img {
    min-height: 164px;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 72px minmax(0, 1fr) 34px;
    gap: 8px;
    font-size: 12px;
  }

  .record-strip,
  .status-row {
    grid-template-columns: 1fr;
  }

  .qr-box {
    width: 160px;
  }
}

/* Feedback pass: Apple-light product page refinements */
.theme-apple .subhead {
  max-width: none;
  color: #657286;
  font-size: clamp(13px, .98vw, 15px);
  line-height: 1.55;
  white-space: nowrap;
}

.eyebrow::before {
  box-shadow: none;
}

.brand-logo-box {
  box-shadow: 0 10px 24px rgba(37, 58, 84, .12);
}

.model-card {
  width: min(430px, 100%);
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: var(--radius);
  color: #07101f;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(239,247,255,.72));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 18px 46px rgba(37,58,84,.09);
}

.model-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
}

.model-card span {
  display: block;
  margin-top: 7px;
  color: #5c687a;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.theme-apple .metric:not(.hero-primary-metric) b {
  font-size: clamp(30px, 2.25vw, 38px);
}

.theme-apple .hero-primary-metric b {
  font-size: clamp(48px, 3.8vw, 60px);
}

.stacked-title {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.stacked-title p {
  max-width: 880px;
  line-height: 1.6;
  white-space: nowrap;
}

.hero-poster-image {
  object-position: 50% 50%;
  filter: saturate(1.02) contrast(1.02);
}

.product-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.device-stage .product-carousel img,
.theme-apple .device-stage .product-carousel img {
  position: absolute;
  inset: 0;
  width: min(700px, 98%);
  height: 100%;
  max-height: 330px;
  margin: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateX(38px) rotate(-2deg) scale(.96);
  filter: drop-shadow(0 34px 42px rgba(17,24,39,.22));
  animation: none;
  transition: opacity .72s ease, transform .72s ease;
}

.device-stage .product-carousel img.is-active {
  opacity: 1;
  transform: translateX(0) rotate(-2deg) scale(1);
}

.device-stage .product-carousel img.is-exiting {
  opacity: 0;
  transform: translateX(-36%) rotate(-4deg) scale(.96);
}

.hardware-live-card b {
  color: #1267ff;
}

.spec-card {
  position: relative;
}

.spec-card[data-icon] {
  padding-left: 56px;
}

.spec-card[data-icon]::before {
  content: attr(data-icon);
  position: absolute;
  left: 15px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #1267ff;
  background: rgba(18,103,255,.06);
  border: 1.8px solid rgba(18,103,255,.65);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.flow-step b::before,
.insight-card b::before {
  content: attr(data-icon);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  color: #1267ff;
  background: rgba(18,103,255,.06);
  border: 1.8px solid rgba(18,103,255,.68);
  box-shadow: none;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.flow-step b:not([data-icon])::before,
.insight-card b:not([data-icon])::before {
  display: none;
}

.flow-step b::before,
.insight-card b::before {
  display: none !important;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  color: #1267ff;
  background: rgba(18,103,255,.06);
  border: 1.8px solid rgba(18,103,255,.62);
}

.line-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.spec-icon-card {
  padding-left: 15px;
}

.spec-icon-card b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
}

.spec-icon-card > span {
  white-space: nowrap;
}

.hardware-flow .flow-step b {
  gap: 0;
}

.theme-apple .hardware-live-card b,
.theme-apple .hardware-live-card b > span {
  color: #1267ff;
}

.theme-apple .record-strip .record-main {
  color: #1267ff !important;
}

.record-strip b {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.record-main {
  color: #1267ff;
  font-size: 1.12em;
}

.record-strip small {
  color: #07101f;
  font-size: .46em;
  line-height: 1;
  vertical-align: .24em;
}

.dashboard-action-panel {
  display: flex;
  flex-direction: column;
  padding-top: clamp(28px, 3vw, 42px);
}

.dashboard-action-panel p {
  margin-top: 16px;
  line-height: 1.82;
}

.dashboard-action-panel .bar-stack {
  margin-top: 26px;
  gap: 18px;
}

.dashboard-action-panel .action-grid {
  margin-top: 34px;
}

.dashboard-action-panel .quote-card {
  min-height: 124px;
  padding: 20px;
}

.process-title h3 {
  letter-spacing: 0;
}

.process-rail {
  gap: 14px;
}

.process-node {
  min-height: 108px;
  padding: 12px 8px 10px;
}

.process-node svg {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}

.process-node:not(:last-child)::after {
  content: "";
  right: -10px;
  width: 7px;
  height: 7px;
  background: transparent;
  border-top: 1.5px solid rgba(18,103,255,.86);
  border-right: 1.5px solid rgba(18,103,255,.86);
  transform: translateY(-50%) rotate(45deg);
  opacity: .9;
}

.image-caption {
  right: auto;
  display: inline-flex;
  width: auto;
  max-width: calc(100% - 32px);
}

.lead-toggle,
.lead-form button {
  box-shadow: none;
}

.lead-toggle:hover,
.lead-form button:hover {
  background: linear-gradient(135deg, #0f5dea, #074bb8);
}

.cta-box {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 178px);
  gap: 30px;
}

.cta-box h2 {
  font-size: clamp(30px, 3.75vw, 50px);
}

.qr-box {
  width: min(176px, 100%);
}

.qr-box span {
  width: 96px;
  padding: 8px;
  font-size: 12px;
}

.kb-card span {
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .process-node:not(:last-child)::after {
    display: none;
  }

  .stacked-title p,
  .theme-apple .subhead {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .theme-apple .subhead {
    font-size: 13px;
    line-height: 1.55;
  }

  .model-card {
    width: 100%;
    margin-top: 14px;
  }

  .product-carousel {
    min-height: 232px;
  }

  .device-stage .product-carousel img,
  .theme-apple .device-stage .product-carousel img {
    max-height: 232px;
    width: min(420px, 98%);
  }

  .stacked-title p {
    max-width: 100%;
    white-space: normal;
  }

  .process-rail {
    gap: 10px;
  }

  .process-node {
    min-height: 116px;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    white-space: normal;
    font-size: clamp(28px, 8.6vw, 38px);
  }

  .qr-box {
    justify-self: start;
    width: 148px;
  }

  .qr-box::before {
    inset: 10px;
  }

  .qr-box span {
    width: 88px;
    font-size: 11px;
  }
}

/* Current review overrides: keep these last. */
.brand-logo-box {
  background: linear-gradient(145deg, #141922, #03060b) !important;
  box-shadow: 0 12px 26px rgba(3, 6, 11, .16) !important;
}

.theme-apple .line-icon {
  width: 25px !important;
  height: 25px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #1267ff !important;
}

.theme-apple .line-icon svg {
  width: 25px !important;
  height: 25px !important;
  stroke-width: 1.85 !important;
}

.theme-apple .flow-step b,
.theme-apple .insight-card b,
.theme-apple .spec-icon-card b {
  gap: 10px;
}

.theme-apple .device-stage::before {
  display: none !important;
}

.theme-apple .product-carousel.product-scroll {
  min-height: 340px;
  display: flex !important;
  align-items: center;
  overflow: hidden;
}

.theme-apple .product-marquee {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
  width: max-content;
  animation: productMarquee 16s linear infinite;
  will-change: transform;
}

.theme-apple .device-stage .product-carousel.product-scroll img,
.theme-apple .device-stage .product-carousel.product-scroll .product-cutout {
  position: static !important;
  inset: auto !important;
  flex: 0 0 auto;
  width: min(660px, 82vw) !important;
  height: auto !important;
  max-height: 300px !important;
  object-fit: contain;
  opacity: 1 !important;
  transform: none !important;
  filter: drop-shadow(0 30px 34px rgba(17, 24, 39, .20));
  animation: none !important;
  transition: none !important;
}

.count-value {
  display: inline !important;
  margin: 0 !important;
  font: inherit !important;
  font-family: var(--font-number) !important;
  line-height: inherit !important;
  color: inherit;
}

.count-unit {
  display: inline-block !important;
  color: #06111f !important;
}

.theme-apple .metric:not(.hero-primary-metric) b,
.theme-apple .data-card b,
.theme-apple .hardware-live-card b,
.theme-apple .spec-number b,
.theme-apple .gauge b {
  color: #06111f !important;
}

.theme-apple .metric:not(.hero-primary-metric) .count-value,
.theme-apple .data-card .count-value,
.theme-apple .hardware-live-card .count-value,
.theme-apple .spec-number .count-value,
.theme-apple .gauge .count-value {
  color: #1267ff !important;
}

.theme-apple .hero-primary-metric .count-value {
  color: #06111f !important;
}

.theme-apple .hardware-live-card b > span,
.theme-apple .data-card b > span,
.theme-apple .spec-number b > span,
.theme-apple .metric b > span {
  color: inherit;
}

.theme-apple .hardware-live-card .count-unit,
.theme-apple .data-card .count-unit,
.theme-apple .spec-number .count-unit,
.theme-apple .metric .count-unit {
  color: #06111f !important;
}

@media (max-width: 760px) {
  .theme-apple .product-carousel.product-scroll {
    min-height: 228px;
  }

  .theme-apple .device-stage .product-carousel.product-scroll img,
  .theme-apple .device-stage .product-carousel.product-scroll .product-cutout {
    width: min(500px, 96vw) !important;
    max-height: 210px !important;
  }
}

/* Current review overrides 2026-07-01: copy, QR, product swap, alignment */
.theme-apple .hardware-copy > p {
  white-space: nowrap;
  font-size: clamp(13px, .98vw, 15px);
}

.theme-apple .flow-step b,
.theme-apple .insight-card b,
.theme-apple .spec-icon-card b {
  display: flex !important;
  align-items: center !important;
  gap: 9px;
  line-height: 1.1;
}

.theme-apple .line-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: translateY(-4px) !important;
  vertical-align: middle !important;
  flex: 0 0 25px;
}

.record-strip span {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.record-strip b {
  align-self: flex-start;
  margin-bottom: 6px;
}

.qr-box {
  display: grid;
  place-items: center;
  padding: 10px;
  background: #fff;
}

.qr-box::before {
  display: none !important;
}

.qr-box img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.qr-box span {
  display: none;
}

.theme-apple .product-carousel.product-swap {
  min-height: 340px;
  position: relative;
  display: grid !important;
  place-items: center;
  overflow: hidden;
}

.theme-apple .device-stage .product-carousel.product-swap img,
.theme-apple .device-stage .product-carousel.product-swap .product-slide {
  position: absolute !important;
  inset: 0 !important;
  width: min(660px, 92%) !important;
  height: 100% !important;
  max-height: 315px !important;
  margin: auto !important;
  object-fit: contain;
  opacity: 0;
  transform: scale(.985) !important;
  filter: drop-shadow(0 30px 34px rgba(17, 24, 39, .20));
  animation: none !important;
  transition: opacity .5s ease, transform .5s ease !important;
}

.theme-apple .device-stage .product-carousel.product-swap img.is-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.theme-apple .device-stage .product-carousel.product-swap img.is-exiting {
  opacity: 0 !important;
  transform: scale(.985) !important;
}

@media (max-width: 1120px) {
  .theme-apple .hardware-copy > p {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .theme-apple .product-carousel.product-swap {
    min-height: 228px;
  }

  .theme-apple .device-stage .product-carousel.product-swap img,
  .theme-apple .device-stage .product-carousel.product-swap .product-slide {
    width: min(500px, 96vw) !important;
    max-height: 210px !important;
  }
}

/* Review polish 2026-07-01: compact controls, aligned icons, clear numeric suffixes */
.theme-apple .hero-actions .btn.secondary {
  height: 40px;
  min-height: 40px;
  padding: 0 15px;
  font-size: 13px;
  border-radius: 999px;
}

.theme-apple .metric:not(.hero-primary-metric) b {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: 0;
}

.theme-apple .metric b .count-unit,
.theme-apple .data-card b .count-unit,
.theme-apple .hardware-live-card b .count-unit,
.theme-apple .spec-number b .count-unit {
  color: #06111f !important;
  font-size: .42em !important;
  line-height: 1;
  margin-left: 1px;
  vertical-align: baseline;
}

.theme-apple .spec-icon-card b,
.theme-apple .quote-card b,
.theme-apple .kb-card b {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  line-height: 1.14;
}

.theme-apple .spec-icon-card .line-icon,
.theme-apple .quote-card .line-icon,
.theme-apple .kb-card .line-icon {
  transform: translateY(0) !important;
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
}

.theme-apple .spec-icon-card .line-icon svg,
.theme-apple .quote-card .line-icon svg,
.theme-apple .kb-card .line-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 1.9 !important;
}

.theme-apple .process-node {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}

.theme-apple .process-node svg {
  margin: 0 auto 8px !important;
}

.theme-apple .process-node b {
  text-align: center;
  width: 100%;
}

.theme-apple .dashboard-score-panel > p {
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .theme-apple .hero-actions .btn.secondary {
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .theme-apple .metric:not(.hero-primary-metric) b {
    font-size: clamp(25px, 8vw, 34px);
  }
}

/* Product carousel: product-only display, no surrounding frame or caption blocks */
.theme-apple .product-only-showcase {
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.theme-apple .product-only-showcase .product-gallery {
  min-height: clamp(360px, 42vw, 560px);
  height: auto;
  padding: 0 !important;
  display: grid;
  grid-template-rows: 1fr;
}

.theme-apple .product-only-showcase .device-stage {
  min-height: clamp(340px, 40vw, 540px);
  padding: 0 !important;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent !important;
  background-image: none !important;
}

.theme-apple .product-only-showcase .device-stage::before,
.theme-apple .product-only-showcase .device-status,
.theme-apple .product-only-showcase .device-caption {
  display: none !important;
}

.theme-apple .product-only-showcase .product-carousel.product-swap {
  width: 100%;
  min-height: clamp(340px, 40vw, 540px);
  overflow: hidden;
}

.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap img,
.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-slide {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: clamp(310px, 38vw, 500px) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 30px 34px rgba(17, 24, 39, .18));
}

@media (max-width: 760px) {
  .theme-apple .product-only-showcase,
  .theme-apple .product-only-showcase .product-gallery,
  .theme-apple .product-only-showcase .device-stage,
  .theme-apple .product-only-showcase .product-carousel.product-swap {
    min-height: 250px;
  }

  .theme-apple .product-only-showcase .device-stage .product-carousel.product-swap img,
  .theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-slide {
    width: 100% !important;
    max-height: 232px !important;
  }
}

/* Browser comment pass 2026-07-02 */
.theme-apple .metric.metric-compact b {
  font-size: clamp(27px, 2.35vw, 36px) !important;
  white-space: nowrap;
}

.theme-apple .metric.metric-compact b .count-unit {
  font-size: .36em !important;
  margin-left: 0;
}

.model-card {
  width: min(650px, 100%);
  padding: 17px 18px 18px;
}

.model-card span {
  max-width: 610px;
  font-size: 13.5px;
  line-height: 1.68;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.model-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: #1267ff;
  background: rgba(18, 103, 255, .08);
  border: 1px solid rgba(18, 103, 255, .16);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap img,
.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-slide {
  filter: none !important;
}

.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-poster-slide {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: 50% 50%;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-poster-slide {
    max-width: 100% !important;
    max-height: none !important;
  }
}

.theme-apple .network-value {
  display: inline-flex !important;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}

.theme-apple .network-value span {
  color: #1267ff !important;
  font-size: 1em !important;
}

.theme-apple .network-value small {
  color: #06111f !important;
  font-size: .48em !important;
  line-height: 1;
  letter-spacing: 0;
}

.theme-apple .record-strip b {
  font-size: clamp(39px, 3.3vw, 52px);
}

.theme-apple .record-strip .record-main {
  font-size: 1.18em;
}

.theme-apple #knowledge .data-card b {
  white-space: nowrap;
}

.theme-apple .kb-card b {
  min-height: 25px;
  align-items: center !important;
  line-height: 1 !important;
}

.theme-apple .kb-card .line-icon {
  align-self: center;
  transform: none !important;
}

@media (max-width: 760px) {
  .model-card span {
    font-size: 13px;
  }
}

/* Mobile review pass 2026-07-02: unified subtitles and compact metrics */
.theme-apple .subhead,
.theme-apple .section-title p,
.theme-apple .panel > p,
.theme-apple .hardware-copy > p,
.theme-apple .process-title p,
.theme-apple .cta-box p {
  font-size: 15px !important;
  line-height: 1.62 !important;
  font-weight: 750 !important;
}

.theme-apple .hero-primary-metric b {
  font-size: clamp(28px, 3vw, 46px) !important;
  letter-spacing: 0;
  white-space: nowrap;
}

.theme-apple .hero-primary-metric b .count-unit {
  font-size: .42em !important;
  margin-left: 1px;
  vertical-align: baseline;
}

.theme-apple .metric > span {
  min-height: 1.4em;
}

@media (max-width: 760px) {
  .theme-apple .subhead,
  .theme-apple .section-title p,
  .theme-apple .panel > p,
  .theme-apple .hardware-copy > p,
  .theme-apple .process-title p,
  .theme-apple .cta-box p {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  .theme-apple .hero-primary-metric b,
  .theme-apple .metric:not(.metric-compact) b {
    font-size: clamp(25px, 8vw, 34px) !important;
  }

  .theme-apple .metric.metric-compact b {
    font-size: clamp(24px, 7vw, 31px) !important;
  }

  .theme-apple .dashboard-heading h2 {
    font-size: clamp(30px, 8vw, 34px) !important;
    line-height: 1.1 !important;
  }

  .theme-apple .dashboard-heading h2 span {
    white-space: nowrap !important;
  }

  .theme-apple .dashboard-heading p {
    white-space: normal !important;
  }

  .theme-apple .record-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .theme-apple .record-strip > span:last-child {
    grid-column: 1 / -1;
  }

  .theme-apple .record-strip b {
    font-size: clamp(34px, 9vw, 44px) !important;
  }
}

/* Browser comment pass 2026-07-02 evening */
.theme-apple .hero-actions .btn {
  height: 40px !important;
  min-height: 40px !important;
  min-width: 150px;
  padding: 0 16px !important;
  font-size: 13px;
}

.theme-apple .metric:nth-child(1) .count-unit,
.theme-apple .metric:nth-child(3) .count-unit,
.theme-apple .metric:nth-child(4) .count-unit {
  font-size: .56em !important;
  margin-left: 2px !important;
  vertical-align: .08em !important;
}

.theme-apple .metric.metric-compact b .count-unit {
  font-size: .56em !important;
}

.model-card b {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.05;
}

.model-brand {
  display: inline-block;
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: .9;
  color: #1267ff;
  letter-spacing: .02em;
  font-weight: 1000;
  transform: translateY(-2px);
  text-shadow: 0 10px 24px rgba(18,103,255,.18);
}

.model-card span {
  max-width: none;
}

.theme-apple .product-only-showcase {
  min-height: clamp(460px, 44vw, 620px) !important;
  border-radius: 8px !important;
  background: #07101f !important;
  border: 1px solid rgba(255,255,255,.9) !important;
  box-shadow: 0 26px 72px rgba(37, 58, 84, .12) !important;
}

.theme-apple .product-only-showcase .product-gallery,
.theme-apple .product-only-showcase .device-stage,
.theme-apple .product-only-showcase .product-carousel.product-swap {
  min-height: inherit !important;
  height: 100% !important;
}

.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap img,
.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-slide,
.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-poster-slide {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  border-radius: 0 !important;
}

.theme-apple .hardware-flow .flow-step,
.theme-apple .dashboard-kpis .data-card,
.theme-apple .insight-card,
.theme-apple #knowledge .data-card,
.theme-apple .kb-card {
  display: flex !important;
  flex-direction: column;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
}

.theme-apple .hardware-flow .flow-step em {
  margin-bottom: 12px;
}

.theme-apple .hardware-flow .flow-step b,
.theme-apple .hardware-flow .flow-step span,
.theme-apple .dashboard-kpis .data-card b,
.theme-apple .dashboard-kpis .data-card span,
.theme-apple #knowledge .data-card b,
.theme-apple #knowledge .data-card span,
.theme-apple .insight-card b,
.theme-apple .insight-card span,
.theme-apple .kb-card b,
.theme-apple .kb-card span {
  align-self: center !important;
  text-align: center !important;
}

.theme-apple .dashboard-kpis .data-card,
.theme-apple #knowledge .data-card {
  gap: 13px;
}

.theme-apple .dashboard-kpis .data-card span,
.theme-apple #knowledge .data-card span {
  margin-top: 0 !important;
}

.theme-apple .kb-card b {
  justify-content: center;
}

.theme-apple .kb-card span {
  margin-top: 12px;
}

.theme-apple .dashboard-action-panel .action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.theme-apple .dashboard-action-panel .quote-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.theme-apple .gauge {
  position: relative;
  overflow: hidden;
  background:
    conic-gradient(from -90deg, #1267ff calc(var(--p) * 1%), rgba(18,103,255,.13) 0) !important;
  box-shadow:
    inset 0 0 0 1px rgba(18,103,255,.08),
    0 18px 44px rgba(18,103,255,.12);
}

.theme-apple .gauge::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 35%, rgba(255,255,255,.98), rgba(239,247,255,.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 0 28px rgba(18,103,255,.08);
}

.theme-apple .gauge::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.theme-apple .gauge > div {
  position: relative;
  z-index: 1;
}

.theme-apple .report-slab {
  background: linear-gradient(145deg, #eaf6ff, #ffffff);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 46px rgba(37,58,84,.08);
}

.theme-apple .report-slab img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #eef8ff;
}

.qr-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 760px) {
  .theme-apple .hero-actions .btn {
    min-width: 0;
    flex: 1 1 150px;
  }

  .theme-apple .product-only-showcase,
  .theme-apple .product-only-showcase .product-gallery,
  .theme-apple .product-only-showcase .device-stage,
  .theme-apple .product-only-showcase .product-carousel.product-swap {
    min-height: 430px !important;
  }

  .theme-apple .dashboard-action-panel .action-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero poster carousel pass 2026-07-03 */
.theme-apple .hero-poster-frame {
  overflow: hidden;
}

.theme-apple .hero-poster-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
}

.theme-apple .hero-poster-track {
  display: flex;
  width: 800%;
  height: 100%;
  min-height: inherit;
  animation: heroPosterScrollRight 34s linear infinite;
  will-change: transform;
}

.theme-apple .hero-poster-frame:hover .hero-poster-track {
  animation-play-state: paused;
}

.theme-apple .hero-poster-slide {
  flex: 0 0 12.5%;
  width: 12.5%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
}

.theme-apple .hero-poster-slide:nth-child(3),
.theme-apple .hero-poster-slide:nth-child(7) {
  object-position: 50% 50%;
}

@keyframes heroPosterScrollRight {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .theme-apple .hero-poster-carousel,
  .theme-apple .hero-poster-slide {
    min-height: clamp(520px, 138vw, 720px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-apple .hero-poster-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

/* Detail polish pass 2026-07-03 */
.theme-apple .model-card span.model-summary {
  max-width: none;
  margin-top: 10px;
  color: #334155;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 900;
}

.theme-apple .model-tags {
  gap: 10px;
  margin-top: 12px;
}

.theme-apple .model-tags em {
  min-height: 30px;
  padding: 0 12px;
  font-size: 13px;
}

.theme-apple .metric {
  display: flex;
  flex-direction: column;
}

.theme-apple .metric b {
  min-height: 54px;
  display: flex !important;
  align-items: flex-end;
}

.theme-apple .metric > span {
  min-height: 20px;
  margin-top: 10px !important;
  display: flex !important;
  align-items: flex-start;
}

.theme-apple #knowledge .split-proof > div:nth-child(2) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.theme-apple #knowledge .report-slab,
.theme-apple #knowledge .report-slab img {
  background: #fff !important;
}

.theme-apple .kb-card b {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100%;
  line-height: 1.1 !important;
}

.theme-apple .kb-card .line-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 20px !important;
  margin-top: 0 !important;
  transform: translateY(0) !important;
}

.theme-apple .kb-card .line-icon svg {
  display: block;
  width: 18px !important;
  height: 18px !important;
}

.theme-apple .section-title p {
  font-size: 17px !important;
  line-height: 1.62 !important;
}

.theme-apple .gauge {
  isolation: isolate;
  width: min(216px, 100%);
  margin-top: 26px;
  animation: none !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.74), rgba(241,247,255,.34)) !important;
  border: 1px solid rgba(255,255,255,.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -18px 42px rgba(18,103,255,.06),
    0 18px 46px rgba(37,58,84,.1) !important;
  backdrop-filter: blur(18px) saturate(1.18);
}

.theme-apple .gauge::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, rgba(18,103,255,.88) calc(var(--p) * 1%), rgba(18,103,255,.1) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 17px), #000 calc(100% - 16px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 17px), #000 calc(100% - 16px));
  box-shadow: none !important;
}

.theme-apple .gauge::after {
  content: "";
  position: absolute;
  inset: 46px;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.76);
  background: rgba(255,255,255,.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 12px 30px rgba(18,103,255,.08);
  pointer-events: none;
}

.theme-apple .gauge > div {
  position: relative;
  z-index: 1;
}

.theme-apple .gauge b {
  color: #1267ff;
  font-size: clamp(54px, 4.5vw, 70px) !important;
}

.theme-apple .gauge span {
  color: #506070;
}

@media (max-width: 760px) {
  .theme-apple .section-title p {
    font-size: 15px !important;
  }

  .theme-apple .metric b {
    min-height: 48px;
  }
}

/* Browser comment pass 2026-07-03 - hero switch carousel and metric alignment */
.theme-apple .hero-poster-track {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
}

.theme-apple .hero-poster-frame:hover .hero-poster-track {
  animation-play-state: running;
}

.theme-apple .hero-poster-slide {
  position: absolute;
  inset: 0;
  flex: none !important;
  width: 100% !important;
  height: 100%;
  min-height: inherit;
  opacity: 0;
  z-index: 0;
  transform: scale(1.012);
  transition: opacity .56s ease, transform .72s ease;
  pointer-events: none;
}

.theme-apple .hero-poster-slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

.theme-apple .hero-poster-slide.is-exiting {
  opacity: 0;
  z-index: 1;
  transform: scale(1.008);
}

.theme-apple .hero-poster-slide:nth-child(3) {
  object-position: 50% 50%;
}

.theme-apple header.hero .metric b,
.theme-apple header.hero .hero-primary-metric b,
.theme-apple header.hero .metric.metric-compact b {
  min-height: 50px !important;
  font-size: 40px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  white-space: nowrap !important;
}

.theme-apple header.hero .metric b > span,
.theme-apple header.hero .hero-primary-metric b > span {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 3px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.theme-apple header.hero .metric .count-value {
  font-size: 1em !important;
  line-height: 1 !important;
}

.theme-apple header.hero .metric .count-unit,
.theme-apple header.hero .metric.metric-compact b .count-unit,
.theme-apple header.hero .hero-primary-metric b .count-unit {
  align-self: baseline !important;
  margin-left: 0 !important;
  font-size: .42em !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
  transform: none !important;
}

.theme-apple header.hero .metric:nth-child(2) .count-unit {
  margin-left: 1px !important;
  font-size: .4em !important;
}

.theme-apple #knowledge .report-slab {
  padding: 0 !important;
  background: #fff !important;
  background-image: none !important;
}

.theme-apple #knowledge .report-slab::after {
  display: none !important;
}

.theme-apple #knowledge .report-slab img {
  background: #fff !important;
  background-image: none !important;
}

.theme-apple .lead-toggle {
  min-height: 38px !important;
  padding: 0 15px !important;
  font-size: 13px !important;
}

@media (max-width: 760px) {
  .theme-apple header.hero .metric b,
  .theme-apple header.hero .hero-primary-metric b,
  .theme-apple header.hero .metric.metric-compact b {
    min-height: 42px !important;
    font-size: 32px !important;
  }

  .theme-apple .lead-toggle {
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }
}

/* Browser comment pass 2026-07-03 - restore poster frame sizing */
.theme-apple .hero-poster-frame {
  justify-self: end;
  width: min(560px, 100%) !important;
  min-height: 650px !important;
  height: clamp(620px, 51vw, 690px) !important;
  align-self: start;
}

.theme-apple .hero-poster-carousel,
.theme-apple .hero-poster-track,
.theme-apple .hero-poster-slide {
  min-height: inherit !important;
  height: 100% !important;
}

.theme-apple .product-only-showcase {
  width: min(560px, 100%) !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 941 / 1672 !important;
  align-self: start;
  justify-self: start;
  background: transparent !important;
}

.theme-apple .product-only-showcase .product-gallery,
.theme-apple .product-only-showcase .device-stage,
.theme-apple .product-only-showcase .product-carousel.product-swap {
  width: 100% !important;
  min-height: 0 !important;
  height: 100% !important;
  aspect-ratio: inherit !important;
  padding: 0 !important;
}

.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap img,
.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-slide,
.theme-apple .product-only-showcase .device-stage .product-carousel.product-swap .product-poster-slide {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 1120px) {
  .theme-apple .hero-poster-frame {
    justify-self: stretch;
    width: 100% !important;
    height: clamp(560px, 92vw, 690px) !important;
  }

  .theme-apple .product-only-showcase {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .theme-apple .hero-poster-frame {
    height: clamp(520px, 138vw, 650px) !important;
    min-height: 520px !important;
  }

  .theme-apple .product-only-showcase {
    width: min(100%, 430px) !important;
  }
}

/* Browser comment pass 2026-07-03 - complete poster and report UI */
.theme-apple .hero-poster-frame {
  width: min(420px, 100%) !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 941 / 1672 !important;
  background: rgba(238, 246, 255, .72) !important;
}

.theme-apple .hero-poster-slide {
  object-fit: contain !important;
  object-position: center center !important;
}

.hardware-analysis-board {
  margin-top: 14px;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(235,246,255,.72));
  border: 1px solid rgba(255,255,255,.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    0 18px 44px rgba(37,58,84,.08);
}

.analysis-head,
.analysis-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.analysis-head b {
  font-size: 18px;
  line-height: 1.2;
}

.analysis-head span {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.analysis-summary {
  margin-top: 14px;
}

.analysis-score {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #1267ff;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.94) 55%, transparent 56%),
    conic-gradient(#1267ff 85%, rgba(18,103,255,.13) 0);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 16px 34px rgba(18,103,255,.12);
}

.analysis-score strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-number);
  font-size: 38px;
  line-height: .9;
}

.analysis-score span {
  display: block;
  margin-top: -6px;
  color: #526074;
  font-size: 12px;
  font-weight: 900;
}

.analysis-tags {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.analysis-tags span {
  min-height: 48px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 8px;
  color: #0f4fc9;
  background: rgba(18,103,255,.08);
  border: 1px solid rgba(18,103,255,.13);
  font-size: 12px;
  font-weight: 950;
}

.analysis-mini-bars {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.analysis-mini-bars div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 9px;
  color: #102033;
  font-size: 12px;
  font-weight: 900;
}

.analysis-mini-bars i {
  height: 7px;
  border-radius: 999px;
  background: rgba(18,103,255,.1);
  overflow: hidden;
}

.analysis-mini-bars i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1267ff, #17b69e);
}

.theme-apple #knowledge .report-slab.report-ui-card {
  max-height: none !important;
  overflow: visible !important;
  padding: 16px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(239,247,255,.68)) !important;
  border: 1px solid rgba(255,255,255,.96) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 22px 58px rgba(37,58,84,.1);
}

.theme-apple #knowledge .report-slab.report-ui-card::after {
  display: none !important;
}

.report-ui-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
}

.report-ui-head span {
  display: block;
  color: #1267ff;
  font-size: 12px;
  font-weight: 950;
}

.report-ui-head b {
  display: block;
  margin-top: 5px;
  color: #07101f;
  font-size: 19px;
  line-height: 1.18;
}

.report-ui-head p {
  margin: 8px 0 0;
  color: #526074;
  font-size: 12px;
  line-height: 1.52;
  font-weight: 780;
}

.report-ui-score {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #1267ff;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.96) 55%, transparent 56%),
    conic-gradient(#1267ff 85%, rgba(18,103,255,.13) 0);
}

.report-ui-score strong {
  margin-top: 9px;
  font-family: var(--font-number);
  font-size: 28px;
  line-height: .9;
}

.report-ui-score small {
  margin-top: -10px;
  color: #526074;
  font-size: 10px;
  font-weight: 900;
}

.report-ui-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-ui-grid section {
  min-height: 116px;
  padding: 13px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
}

.report-ui-grid em {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  background: #1267ff;
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
}

.report-ui-grid b {
  display: block;
  margin-top: 10px;
  color: #07101f;
  font-size: 15px;
  line-height: 1.22;
}

.report-ui-grid span {
  display: block;
  margin-top: 8px;
  color: #526074;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 760;
}

.report-ui-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.report-ui-actions span {
  min-height: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  color: #0f4fc9;
  background: rgba(18,103,255,.08);
  border: 1px solid rgba(18,103,255,.13);
  font-size: 12px;
  font-weight: 950;
}

@media (max-width: 1120px) {
  .theme-apple .hero-poster-frame {
    width: min(430px, 100%) !important;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .theme-apple .hero-poster-frame {
    width: min(100%, 390px) !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .analysis-summary,
  .analysis-tags,
  .report-ui-head,
  .report-ui-grid,
  .report-ui-actions {
    grid-template-columns: 1fr;
  }

  .analysis-summary {
    align-items: stretch;
  }

  .analysis-score,
  .report-ui-score {
    margin: 0 auto;
  }
}

/* Browser comment pass 2026-07-03 - restore subtitle typeface */
.theme-apple .subhead,
.theme-apple .section-title p,
.theme-apple .stacked-title p,
.theme-apple .dashboard-heading p,
.theme-apple .hardware-copy > p,
.theme-apple .process-title p,
.theme-apple .cta-box p {
  font-family: var(--font-body) !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

/* Browser comment pass 2026-07-03 - stronger metric plus sign */
.theme-apple .count-plus {
  display: inline-block;
  color: inherit;
  font: inherit;
  line-height: 1;
}

.theme-apple header.hero .hero-primary-metric .count-unit {
  font-size: .48em !important;
}

.theme-apple header.hero .hero-primary-metric .count-plus {
  font-size: 1.28em;
  font-weight: 950;
  transform: translateY(.03em);
}

/* Browser comment pass 2026-07-03 - metric color and quality gauge alignment */
.theme-apple header.hero .hero-primary-metric .count-value {
  color: #1267ff !important;
}

.theme-apple header.hero .metric.metric-compact .count-unit,
.theme-apple header.hero .metric.metric-compact .count-plus {
  color: #07101f !important;
}

.theme-apple .analysis-score {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.theme-apple .analysis-score strong,
.theme-apple .analysis-score span {
  margin: 0 !important;
}

.theme-apple .analysis-score strong {
  line-height: .92;
}

.theme-apple .analysis-score span {
  line-height: 1;
}

/* Browser comment pass 2026-07-03 - DeepSeek emphasis and action report */
.theme-apple .model-card b {
  align-items: flex-end !important;
  gap: 12px !important;
  font-size: 22px !important;
  line-height: 1.02 !important;
}

.theme-apple .model-card b .model-brand {
  color: #1267ff !important;
  font-size: clamp(36px, 3.15vw, 50px) !important;
  line-height: .88 !important;
  font-weight: 1000 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 14px 28px rgba(18,103,255,.18);
}

.theme-apple #knowledge .report-ui-score strong {
  transform: translateY(1px);
}

/* Browser comment pass 2026-07-03 - align action numbers and normalize plus signs */
.theme-apple #knowledge .report-ui-grid section {
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  column-gap: 9px;
  row-gap: 8px;
}

.theme-apple #knowledge .report-ui-grid em {
  grid-column: 1;
  grid-row: 1;
  margin: 0 !important;
  align-self: center;
}

.theme-apple #knowledge .report-ui-grid b {
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
  align-self: center;
}

.theme-apple #knowledge .report-ui-grid span {
  grid-column: 1 / -1;
  margin-top: 0 !important;
}

.theme-apple .count-plus {
  color: #07101f !important;
  font-size: 1.34em !important;
  font-weight: 950 !important;
  line-height: .9 !important;
  transform: translateY(.035em);
}

.theme-apple header.hero .metric .count-unit,
.theme-apple header.hero .metric.metric-compact b .count-unit,
.theme-apple header.hero .hero-primary-metric b .count-unit,
.theme-apple #knowledge .data-card b .count-unit {
  color: #07101f !important;
  font-size: .48em !important;
  margin-left: 1px !important;
  line-height: 1 !important;
}

.theme-apple header.hero .metric .count-plus,
.theme-apple #knowledge .data-card .count-plus {
  color: #07101f !important;
  font-size: 1.34em !important;
}

/* Browser comment pass 2026-07-03 - center action score label */
.theme-apple #knowledge .report-ui-score {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.theme-apple #knowledge .report-ui-score strong,
.theme-apple #knowledge .report-ui-score small {
  width: 100%;
  margin: 0 !important;
  text-align: center;
  transform: none !important;
}

.theme-apple #knowledge .report-ui-score strong {
  line-height: .9 !important;
}

.theme-apple #knowledge .report-ui-score small {
  line-height: 1 !important;
}
