:root {
  --black: #000000;
  --ink: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.68);
  --faint: rgba(247, 248, 251, 0.42);
  --panel: #101114;
  --panel-2: #15171c;
  --panel-3: #1b1e25;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --blue: #0071e3;
  --blue-bright: #2997ff;
  --blue-deep: #003d88;
  --page: 1180px;
  --radius: 8px;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.48);
  --font:
    "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 113, 227, 0.24), transparent 34rem),
    var(--black);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 0 clamp(32px, 4.4vw, 74px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
}

.visual-hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 64px);
  min-height: 640px;
  max-height: 900px;
  border-bottom: 1px solid var(--line);
  background: #000000;
}

.home-stage-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  padding: 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 24% 100%, rgba(0, 113, 227, 0.24), transparent 35rem),
    #000000;
  transition: background 240ms ease;
}

.home-stage-hero[data-active-slide="reports"] {
  background:
    radial-gradient(ellipse at 52% 100%, rgba(0, 113, 227, 0.28), transparent 38rem),
    #000000;
}

.home-stage-hero[data-active-slide="personal"] {
  background:
    radial-gradient(ellipse at 70% 100%, rgba(0, 113, 227, 0.34), transparent 34rem),
    #000000;
}

.home-stage-inner {
  position: relative;
  min-height: 603px;
  max-width: 1672px;
  margin: 0 auto;
}

.home-stage-copy {
  position: absolute;
  top: 88px;
  left: clamp(32px, 4.4vw, 74px);
  z-index: 3;
  width: min(38.4vw, 640px);
  min-width: 600px;
}

.home-stage-copy h1 {
  max-width: none;
  font-size: clamp(50px, 3.23vw, 54px);
  line-height: 1.06;
  font-weight: 820;
  letter-spacing: 0;
}

.home-stage-copy h1 span {
  display: block;
  white-space: nowrap;
}

.home-stage-copy p {
  max-width: 600px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(18px, 1.18vw, 20px);
  line-height: 1.54;
  font-weight: 520;
}

.home-tabs {
  display: inline-flex;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.58);
}

.home-tabs a,
.home-tabs button {
  appearance: none;
  min-width: 172px;
  border: 0;
  padding: 18px 28px;
  border-left: 1px solid var(--line);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.home-tabs a:first-child,
.home-tabs button:first-child {
  border-left: 0;
}

.home-tabs .active {
  background: var(--blue);
  color: #ffffff;
}

.home-stage-copy .actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.home-stage-art {
  position: absolute;
  top: 66px;
  right: clamp(28px, 4.4vw, 74px);
  z-index: 2;
  width: min(
    55.7vw,
    930px,
    calc(100% - clamp(32px, 4.4vw, 74px) - clamp(32px, 4.4vw, 74px) - 672px)
  );
  min-height: 545px;
}

.home-slide-visual {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transform: translateX(22px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  pointer-events: none;
}

.home-slide-visual.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.home-slide-visual img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.home-slide-visual.phone-visual {
  justify-items: center;
}

.home-slide-visual.phone-visual img {
  width: min(78%, 760px);
}

.home-capability-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1528px;
  margin: 0 auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.home-capability-strip a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 152px;
  padding: 28px 46px;
  background: rgba(0, 0, 0, 0.74);
}

.cap-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 10px;
  color: var(--blue-bright);
}

.cap-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-capability-strip h2 {
  font-size: 22px;
  line-height: 1.15;
}

.home-capability-strip p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.spec-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  padding: 0 clamp(28px, 3.35vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 104%, rgba(0, 113, 227, 0.28), transparent 38rem),
    #000000;
}

.spec-hero-inner {
  position: relative;
  min-height: 642px;
  max-width: 1560px;
  margin: 0 auto;
}

.spec-copy {
  position: absolute;
  top: 102px;
  left: 0;
  z-index: 3;
  width: min(36vw, 560px);
}

.spec-copy h1 {
  max-width: 590px;
  color: #ffffff;
  font-size: clamp(46px, 3.35vw, 58px);
  line-height: 1.12;
  font-weight: 820;
  width: 600px;
}

.spec-copy p {
  max-width: 450px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.22vw, 20px);
  line-height: 1.58;
  font-weight: 500;
  width: 600px;

}

.spec-copy .actions {
  justify-content: flex-start;
}

.spec-copy .screen-switch {
  margin-top: 34px;
}

.spec-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--blue-bright);
  font-size: 18px;
  font-weight: 700;
}

.spec-link::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.spec-art {
  position: absolute;
  z-index: 2;
  margin: 0;
}

.spec-art img {
  width: 100%;
  height: auto;
}

.spec-product .spec-art {
  top: 70px;
  right: -14px;
  width: min(63vw, 1035px);
}

.spec-product .spec-copy h1 {
  max-width: 620px;
  font-size: clamp(46px, 3vw, 50px);
}

.spec-product .spec-copy h1 span {
  display: block;
  white-space: nowrap;
}

.spec-reports .screen-switch a {
  min-width: 90px;
}

.spec-reports .spec-copy {
  top: 184px;
  width: min(32vw, 430px);
}

.spec-reports .spec-art {
  top: 32px;
  right: 18px;
  width: min(69vw, 1140px);
}

.spec-design .spec-art {
  top: 36px;
  right: 16px;
  width: min(60vw, 1000px);
}

.spec-design .spec-hero-inner {
  min-height: 650px;
}

.spec-design .spec-copy {
  top: 60px;
  width: 500px;
}

.spec-design .spec-copy h1 span {
  display: block;
  white-space: nowrap;
}

.spec-personal .spec-art {
  top: 22px;
  right: 70px;
  width: min(46vw, 760px);
}

.spec-demo .spec-hero-inner {
  display: grid;
  grid-template-columns: minmax(820px, 1fr) 530px;
  gap: clamp(54px, 5vw, 82px);
  min-height: 724px;
  padding-top: 48px;
  align-items: start;
}

.spec-demo .spec-copy {
  position: static;
  width: auto;
  padding-top: 24px;
}

.spec-demo .spec-copy h1 {
  max-width: 620px;
}

.demo-visual-row {
  display: grid;
  grid-template-columns: 270px minmax(0, 625px);
  gap: 34px;
  align-items: start;
  margin-top: 38px;
}

.demo-preview-card {
  width: 100%;
  margin: -40px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #08090d;
  box-shadow: var(--shadow);
}

.demo-preview-card img {
  width: 100%;
}

.demo-points {
  display: grid;
  gap: 22px;
  margin-top: 0;
}

.demo-points div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.demo-points i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue-bright);
  font-style: normal;
  font-weight: 800;
}

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

.demo-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.spec-strip {
  display: grid;
  gap: 1px;
  max-width: 1560px;
  margin: 6px auto 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.spec-design > .spec-strip {
  margin-top: 2px;
}

.spec-design > .spec-strip article {
  display: block;
}

.spec-strip.three {
  grid-template-columns: repeat(3, 1fr);
}

.spec-strip.four {
  grid-template-columns: repeat(4, 1fr);
}

.spec-strip article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 154px;
  padding: 28px 36px;
  background: rgba(0, 0, 0, 0.74);
}

.spec-strip h2 {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.18;
}

.spec-strip p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.spec-strip .cap-icon {
  width: 58px;
  height: 58px;
}

.design-mini-strip {
  display: grid;
  max-width: 620px;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.design-mini-strip article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  min-height: 74px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.design-mini-strip span {
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 800;
}

.design-mini-strip h2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.design-mini-strip p {
  max-width: 420px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.screen-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  padding: clamp(52px, 5.4vw, 82px) clamp(24px, 5vw, 72px) clamp(48px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 108%, rgba(0, 113, 227, 0.34), transparent 48%),
    #000000;
}

.screen-hero-inner {
  display: grid;
  grid-template-columns: minmax(390px, 0.74fr) minmax(640px, 1.26fr);
  gap: clamp(38px, 4.6vw, 68px);
  max-width: 1480px;
  min-height: 560px;
  margin: 0 auto;
  align-items: center;
}

.screen-hero-copy {
  position: relative;
  z-index: 2;
}

.screen-kicker {
  display: block;
  margin-bottom: 26px;
  color: var(--blue-bright);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.screen-hero h1 {
  max-width: 590px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: -1px;
}

.screen-hero p {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.52;
  font-weight: 520;
}

.screen-hero .actions {
  justify-content: flex-start;
}

.screen-switch {
  display: inline-flex;
  grid-auto-flow: column;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.74);
}

.screen-switch a,
.screen-switch button {
  appearance: none;
  min-width: 118px;
  border: 0;
  padding: 16px 22px;
  border-left: 1px solid var(--line);
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 17px;
  font-weight: 650;
  text-align: center;
  cursor: pointer;
}

.screen-switch a:first-child,
.screen-switch button:first-child {
  border-left: 0;
}

.screen-switch .active {
  background: var(--blue);
  color: #ffffff;
}

.screen-hero-media {
  position: relative;
  z-index: 1;
}

.product-composite {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(110px, auto);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(21, 24, 31, 0.96), rgba(7, 8, 12, 0.96));
  box-shadow: var(--shadow);
}

.product-composite .media-frame {
  box-shadow: none;
}

.product-composite .primary-shot {
  grid-column: span 7;
  grid-row: span 2;
}

.product-composite .secondary-shot {
  grid-column: span 5;
}

.product-composite .wide-shot {
  grid-column: span 7;
}

.product-composite .phone-shot {
  grid-column: span 5;
  background: #020305;
}

.product-composite img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  object-position: top center;
}

.product-composite .phone-shot img {
  object-fit: contain;
  padding: 10px;
}

.workflow-visual {
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(21, 24, 31, 0.96), rgba(7, 8, 12, 0.96));
  box-shadow: var(--shadow);
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.workflow-rail a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 650;
}

.workflow-rail a.active {
  border-color: rgba(41, 151, 255, 0.8);
  background: rgba(0, 113, 227, 0.18);
  color: #ffffff;
}

.workflow-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.workflow-shots .media-frame {
  box-shadow: none;
}

.workflow-shots img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
}

.report-dashboard {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.85fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(23, 26, 32, 0.98), rgba(7, 8, 12, 0.98));
  box-shadow: var(--shadow);
}

.report-dashboard .metric-panel,
.design-token,
.booking-panel,
.demo-list-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.metric-panel {
  min-height: 150px;
  padding: 18px;
}

.metric-panel strong {
  display: block;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.05;
}

.metric-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.metric-panel img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
}

.metric-panel.large {
  grid-column: span 2;
}

.bar-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.bar-list i {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), rgba(41, 151, 255, 0.2));
}

.phone-stack {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.phone-stack img {
  width: min(46%, 330px);
  max-height: 560px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.design-board {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18, 20, 25, 0.98), rgba(7, 8, 12, 0.98));
  box-shadow: var(--shadow);
}

.design-token {
  padding: 22px;
}

.swatches {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.swatches i {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.swatches i:nth-child(1) {
  background: #0071e3;
}

.swatches i:nth-child(2) {
  background: #ffffff;
}

.swatches i:nth-child(3) {
  background: #15171c;
}

.swatches i:nth-child(4) {
  background: #000000;
}

.design-board img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1fr);
  gap: clamp(42px, 5vw, 72px);
  max-width: 1480px;
  min-height: 610px;
  margin: 0 auto;
  align-items: center;
}

.demo-list-panel {
  display: grid;
  gap: 18px;
  max-width: 520px;
  margin-top: 36px;
  padding: 24px;
}

.demo-list-panel div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.demo-list-panel b {
  color: #ffffff;
  font-size: 18px;
}

.demo-list-panel span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.booking-panel {
  padding: 30px;
  box-shadow: var(--shadow);
}

.booking-panel h2 {
  font-size: 32px;
  line-height: 1.1;
}

.booking-panel .contact-form {
  grid-template-columns: 1fr;
}

.form-hint,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  min-height: 19px;
  color: var(--blue-bright);
  font-weight: 650;
}

.form-status[data-type="success"] {
  color: #38d77a;
}

.form-status[data-type="error"],
.form-status[data-type="warning"] {
  color: #ffcc4d;
}

.honeypot-field {
  display: none !important;
}

.booking-panel textarea,
.booking-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #0b0c10;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.booking-panel textarea {
  min-height: 92px;
  resize: vertical;
}

.visual-hero img {
  width: 100%;
  height: calc(100% + 96px);
  object-fit: cover;
  object-position: center top;
  transform: translateY(-76px);
}

.visual-hero.demo-visual img {
  height: calc(100% + 150px);
  transform: translateY(-76px);
}

.visual-hero.reports-visual img,
.visual-hero.design-visual img {
  height: calc(100% + 112px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand img {
  width: auto;
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.5vw, 34px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 64px;
  align-items: center;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

.nav a.active:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
}

.nav-cta {
  min-height: 34px !important;
  border-radius: 980px;
  padding: 0 18px;
  background: var(--blue);
  color: #ffffff !important;
}

.menu-toggle {
  display: none;
  min-height: 38px;
  border: 1px solid rgba(41, 151, 255, 0.54);
  border-radius: 980px;
  padding: 0 16px;
  background: rgba(0, 113, 227, 0.12);
  color: var(--blue-bright);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.scene-dark,
.scene-quiet {
  position: relative;
  padding: clamp(76px, 8vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--black);
  color: var(--ink);
}

.scene-quiet {
  background: #050608;
}

.scene-blue-floor::after,
.hero::after,
.page-hero::after,
.site-footer::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 113, 227, 0.46), transparent 68%);
  content: "";
}

.scene-blue-floor > * {
  position: relative;
  z-index: 1;
}

.hero,
.page-hero,
.design-hero {
  overflow: hidden;
}

.hero {
  display: flex;
  min-height: min(880px, calc(100vh - 64px));
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(44px, 6vw, 72px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.hero-copy,
.section-heading,
.copy-block {
  position: relative;
  z-index: 1;
  max-width: var(--page);
  margin: 0 auto;
}

.hero-copy {
  max-width: 900px;
}

h1,
.hero h1,
.page-hero h1,
.design-hero h1 {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: -1.2px;
}

.hero p,
.page-hero p,
.section-heading p,
.copy-block p,
.contact-copy p,
.design-hero p,
.design-system-copy p,
.design-proof p {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.52;
}

.hero p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  justify-content: center;
}

.actions.left {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 980px;
  padding: 0 22px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
}

.button.ghost {
  border: 1px solid rgba(41, 151, 255, 0.68);
  color: var(--blue-bright);
}

.hero-media,
.media-frame,
.design-hero-media,
.phone-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media {
  width: min(980px, 76vw);
  margin-top: 40px;
}

.hero-media img,
.media-frame img,
.design-hero-media img {
  width: 100%;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  min-height: 520px;
}

.page-hero > div,
.page-hero > figure {
  position: relative;
  z-index: 1;
}

.page-hero.single {
  display: block;
  min-height: 360px;
  text-align: center;
}

.page-hero.single h1,
.page-hero.single p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.home-gateway {
  padding-top: 0;
}

.banner-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050608;
}

.banner-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(150px, 1.08fr);
  gap: 24px;
  align-items: center;
  min-height: 190px;
  padding: 28px clamp(22px, 4vw, 46px);
  color: var(--ink);
}

.banner-card + .banner-card {
  border-left: 1px solid var(--line);
}

.banner-card span,
.feature-rows span,
.report-story span,
.design-system-copy span,
.design-pillars span,
.insight-visual-grid span,
.step span {
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 650;
}

.banner-card h3 {
  margin-top: 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: -0.4px;
}

.banner-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.banner-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.section-heading h2,
.copy-block h2,
.contact-copy h2,
.design-system-copy h2,
.design-proof h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.8px;
}

.section-heading.compact-heading {
  max-width: 860px;
  text-align: center;
}

.product-grid,
.report-grid,
.personal-grid,
.demo-grid,
.design-grid {
  display: grid;
  max-width: var(--page);
  margin: 48px auto 0;
  gap: 18px;
}

.product-grid {
  grid-template-columns: 1.16fr 0.84fr;
}

.product-card,
.report-card,
.personal-card,
.demo-panel,
.insight-visual-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
}

.product-card.large,
.report-card.large {
  grid-row: span 2;
}

.product-card img,
.report-card img {
  width: 100%;
  text-align: center;
  min-height: 300px;
  object-fit: cover;
  object-position: top center;
}

.product-copy,
.personal-card,
.demo-panel,
.insight-visual-grid div {
  padding: 28px;
}

.product-copy h2,
.personal-card h2,
.insight-visual-grid h2,
.step h2 {
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: -0.3px;
}

.product-copy p,
.personal-card p,
.insight-visual-grid p,
.step p,
.feature-rows p,
.report-story p,
.demo-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--page);
  margin: 48px auto 0;
  gap: 1px;
  background: var(--line);
}

.step {
  min-height: 240px;
  padding: 28px;
  background: #090a0d;
}

.step h2 {
  margin-top: 68px;
}

.feature-rows {
  display: grid;
  max-width: var(--page);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.feature-rows article {
  display: grid;
  grid-template-columns: 150px 0.42fr 0.58fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.feature-rows h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.14;
  font-weight: 650;
}

.report-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.report-story {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(32px, 5vw, 64px);
  max-width: var(--page);
  margin: 0 auto;
  align-items: center;
}

.report-story + .report-story {
  margin-top: 76px;
}

.report-story.reverse {
  grid-template-columns: minmax(520px, 1.24fr) minmax(0, 0.76fr);
}

.report-story.light {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
}

.report-story h2 {
  margin-top: 12px;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.8px;
}

.insight-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--page);
  margin: 44px auto 0;
}

.insight-visual-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #0f1115;
}

.insight-visual-grid h2 {
  margin-top: 12px;
  font-size: 22px;
}

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

.personal-card {
  min-height: 250px;
}

.personal-card img {
  width: calc(100% + 56px);
  height: 210px;
  margin: -28px -28px 0;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  background: #0c0e12;
}

.personal-card h2 {
  margin-top: 26px;
}

.visual-feature-rows article {
  grid-template-columns: 130px minmax(220px, 0.42fr) minmax(260px, 0.48fr) minmax(260px, 0.6fr);
  align-items: center;
}

.visual-feature-rows figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.visual-feature-rows img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.design-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.26fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  min-height: 640px;
}

.design-hero > div,
.design-hero > figure {
  position: relative;
  z-index: 1;
}

.design-editorial {
  padding-top: clamp(74px, 7vw, 108px);
}

.design-system-board {
  display: grid;
  grid-template-columns: 0.78fr 1.04fr 0.92fr;
  gap: 18px;
  max-width: var(--page);
  margin: 0 auto;
  align-items: stretch;
}

.design-system-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

.design-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--page);
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.design-pillars article {
  min-height: 226px;
  padding: 28px;
  background: var(--panel);
}

.design-pillars h2 {
  margin-top: 66px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 650;
}

.design-pillars p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.design-proof {
  display: grid;
  grid-template-columns: minmax(460px, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.demo-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.demo-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 650;
}

.demo-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.demo-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.demo-list strong {
  font-size: 17px;
  line-height: 1.35;
}

.demo-list span {
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  text-align: right;
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(32px, 5vw, 58px);
  max-width: var(--page);
  margin: 0 auto;
  align-items: center;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-preview {
  overflow: hidden;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0f13;
}

.contact-preview img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: top center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.contact-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #0b0c10;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.contact-form select.invalid,
.contact-form textarea.invalid,
.contact-form input.invalid {
  border-color: #ffcc4d;
  box-shadow: 0 0 0 3px rgba(255, 204, 77, 0.15);
}

.contact-form select:focus,
.contact-form textarea:focus,
.contact-form input:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.16);
}

.contact-form button {
  grid-column: 1 / -1;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.submissions-page {
  min-height: calc(100vh - 64px);
}

.submissions-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 32px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
}

.submissions-heading h1 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  font-weight: 760;
}

.submissions-heading p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.submissions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.submissions-actions button {
  min-height: 46px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 0 20px;
  background: transparent;
  color: var(--blue-bright);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.submissions-actions .danger {
  border-color: rgba(255, 204, 77, 0.55);
  color: #ffcc4d;
}

.submissions-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: baseline;
  max-width: 1280px;
  margin: 34px auto 18px;
  color: var(--muted);
}

.submissions-summary strong {
  display: inline-block;
  margin-right: 8px;
  color: var(--ink);
  font-size: 34px;
}

.submissions-mail-state {
  font-size: 13px;
  font-weight: 650;
}

.submissions-mail-state[data-type="success"] {
  color: #38d77a;
}

.submissions-mail-state[data-type="pending"] {
  color: var(--blue-bright);
}

.submissions-mail-state[data-type="warning"] {
  color: #ffcc4d;
}

.submissions-empty {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 17, 20, 0.76);
  color: var(--muted);
}

.submissions-table-wrap {
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.submissions-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.submissions-table th,
.submissions-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.submissions-table th {
  color: var(--ink);
  font-weight: 700;
}

.submissions-table tbody tr:last-child td {
  border-bottom: 0;
}

.closing-cta {
  text-align: center;
}

.closing-cta .copy-block {
  max-width: 820px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, max-content);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: 46px max(28px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  background: #000000;
  color: var(--faint);
  font-size: 13px;
}

.site-footer::before {
  height: 110px;
  opacity: 0.72;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand strong {
  display: block;
  color: var(--blue-bright);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.footer-brand span,
.footer-contact span {
  display: block;
  margin-top: 8px;
}

.footer-contact {
  min-width: 130px;
}

.footer-contact b {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  color: var(--faint);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--ink);
}

/* 2026-06 product-design pass: stronger product evidence, lighter mobile nav. */
.home-stage-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(650px, 1.18fr);
  gap: clamp(38px, 5vw, 78px);
  min-height: 670px;
  padding: 76px clamp(32px, 4.4vw, 74px) 42px;
  align-items: center;
}

.home-stage-copy {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  min-width: 0;
}

.home-stage-copy h1 {
  font-size: clamp(54px, 4.5vw, 72px);
  font-weight: 780;
}

.home-stage-copy p {
  max-width: 620px;
}

.home-stage-art {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1035 / 560;
}

.home-slide-visual img {
  filter: drop-shadow(0 28px 66px rgba(0, 0, 0, 0.54));
}

.home-tabs {
  margin-top: 30px;
}

.home-tabs a,
.home-tabs button {
  min-width: 146px;
  padding: 15px 22px;
  font-size: 16px;
}

.home-capability-strip.home-path-strip {
  max-width: 1440px;
  transform: translateY(-1px);
}

.home-capability-strip.home-path-strip article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 142px;
  padding: 26px 38px;
  background: rgba(0, 0, 0, 0.76);
}

.home-capability-strip.home-path-strip article + article {
  border-left: 1px solid var(--line);
}

.home-path-strip div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-story-row {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 1px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.home-story-card {
  display: grid;
  grid-template-rows: minmax(150px, auto) 1fr;
  gap: 26px;
  min-height: 460px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(12, 24, 38, 0.72), rgba(5, 6, 8, 0.94)),
    #050608;
}

.home-story-card.primary-story {
  grid-template-rows: minmax(138px, auto) 1fr;
}

.home-story-card span {
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 750;
}

.home-story-card h3 {
  max-width: 520px;
  margin-top: 12px;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.1;
  font-weight: 720;
}

.home-story-card p {
  max-width: 540px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.home-story-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c0e12;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(41, 151, 255, 0.36);
  border-radius: 980px;
  padding: 0 14px;
  background: rgba(0, 113, 227, 0.1);
  color: rgba(247, 248, 251, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.spec-product .spec-art {
  width: min(66vw, 1080px);
}

.spec-reports .spec-art {
  width: min(70vw, 1160px);
}

.spec-personal .spec-art {
  right: 44px;
  width: min(50vw, 800px);
}

.spec-art img {
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.56));
}

.spec-demo .spec-hero-inner {
  grid-template-columns: minmax(500px, 0.9fr) minmax(430px, 0.72fr);
  gap: clamp(42px, 5vw, 78px);
  min-height: 690px;
  align-items: center;
}

.spec-demo .spec-copy {
  padding-top: 0;
}

.spec-demo .spec-copy h1 {
  max-width: 620px;
  font-size: clamp(50px, 4.4vw, 70px);
}

.demo-visual-row {
  grid-template-columns: 1fr;
  gap: 22px;
}

.demo-points {
  max-width: 650px;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.demo-points div {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.demo-points i {
  width: 42px;
  height: 42px;
}

.demo-preview-card {
  display: none;
}

.booking-panel {
  background:
    linear-gradient(180deg, rgba(16, 42, 68, 0.92), rgba(12, 19, 29, 0.98)),
    #101114;
}

.booking-assurance {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.booking-assurance + .contact-form {
  margin-top: 22px;
}

.form-privacy {
  grid-column: 1 / -1;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.spec-product .spec-hero-inner,
.spec-reports .spec-hero-inner,
.spec-personal .spec-hero-inner {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(650px, 1.22fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
}

.spec-product .spec-copy,
.spec-reports .spec-copy,
.spec-personal .spec-copy {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
}

.spec-product .spec-copy h1,
.spec-reports .spec-copy h1,
.spec-personal .spec-copy h1 {
  max-width: 560px;
  width: auto;
}

.spec-product .spec-art,
.spec-reports .spec-art,
.spec-personal .spec-art {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  margin: 0;
}

.spec-personal .spec-art {
  width: 94%;
  justify-self: end;
}

@media (max-width: 1060px) {
  .page-hero,
  .design-hero,
  .design-proof,
  .report-story,
  .report-story.reverse,
  .report-story.light,
  .contact-grid,
  .design-system-board,
  .product-grid,
  .report-grid,
  .demo-grid,
  .screen-hero-inner,
  .home-stage-inner,
  .booking-layout,
  .spec-demo .spec-hero-inner {
    grid-template-columns: 1fr;
  }

  .banner-row,
  .workflow,
  .personal-grid,
  .insight-visual-grid,
  .design-pillars,
  .contact-form,
  .home-capability-strip,
  .report-dashboard,
  .design-board {
    grid-template-columns: 1fr 1fr;
  }

  .spec-hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .spec-hero-inner {
    min-height: auto;
  }

  .spec-copy,
  .spec-reports .spec-copy,
  .spec-demo .spec-copy {
    position: relative;
    top: auto;
    width: auto;
    min-width: 0;
    padding-top: 0;
  }

  .spec-copy h1 {
    width: 100%;
    max-width: 100%;
  }

  .spec-art,
  .spec-product .spec-art,
  .spec-reports .spec-art,
  .spec-design .spec-art,
  .spec-personal .spec-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 36px;
  }

  .spec-strip,
  .spec-strip.three,
  .spec-strip.four,
  .design-mini-strip {
    grid-template-columns: 1fr 1fr;
  }

  .design-mini-strip {
    grid-template-columns: 1fr;
  }

  .visual-feature-rows article {
    grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
  }

  .visual-feature-rows figure {
    grid-column: 2 / -1;
  }

  .site-header {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .nav-cta {
    background: transparent;
    padding: 0;
    color: var(--blue-bright) !important;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .submissions-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .submissions-actions {
    justify-content: flex-start;
  }

  .screen-hero {
    height: auto;
  }

  .home-visual-stage {
    min-height: 480px;
  }

  .home-stage-hero {
    min-height: auto;
  }

  .home-stage-inner {
    display: grid;
    min-height: auto;
    padding: 46px clamp(24px, 5vw, 48px) 0;
  }

  .home-stage-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-width: 0;
  }

  .home-stage-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 0;
    margin-top: 36px;
    aspect-ratio: 1035 / 550;
  }
}

@media (max-width: 720px) {
  .visual-hero {
    height: min(680px, calc(100vh - 112px));
    min-height: 560px;
  }

  .visual-hero img {
    width: auto;
    min-width: 920px;
    height: calc(100% + 96px);
    max-width: none;
    transform: translate(-18%, -70px);
  }

  .visual-hero.demo-visual img {
    transform: translate(-20%, -70px);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav a {
    min-height: 28px;
  }

  h1,
  .hero h1,
  .page-hero h1,
  .design-hero h1 {
    font-size: 42px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero-media {
    width: 100%;
  }

  .banner-row,
  .banner-card,
  .workflow,
  .personal-grid,
  .design-pillars,
  .insight-visual-grid,
  .contact-form,
  .feature-rows article,
  .site-footer,
  .home-capability-strip,
  .home-capability-strip a,
  .product-composite,
  .report-dashboard,
  .design-board {
    grid-template-columns: 1fr;
  }

  .screen-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .home-stage-copy h1 {
    font-size: 42px;
  }

  .home-stage-copy h1 span {
    white-space: normal;
  }

  .home-tabs {
    width: 100%;
    flex-direction: column;
  }

  .home-tabs a,
  .home-tabs button {
    min-width: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-tabs a:first-child,
  .home-tabs button:first-child {
    border-top: 0;
  }

  .home-visual-stage {
    min-height: 420px;
  }

  .stage-report {
    left: 0;
    width: 78%;
    height: 280px;
  }

  .stage-calendar {
    width: 54%;
    height: 210px;
  }

  .stage-phone {
    width: 120px;
    height: 205px;
  }

  .stage-phone.one {
    right: 105px;
  }

  .stage-phone.two {
    right: 20px;
  }

  .screen-hero h1 {
    font-size: 42px;
  }

  .submissions-actions,
  .submissions-actions .button,
  .submissions-actions button {
    width: 100%;
  }

  .submissions-heading h1 {
    font-size: 42px;
  }

  .screen-switch {
    width: 100%;
    grid-auto-flow: row;
  }

  .screen-switch a,
  .screen-switch button {
    min-width: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .screen-switch a:first-child,
  .screen-switch button:first-child {
    border-top: 0;
  }

  .spec-strip,
  .spec-strip.three,
  .spec-strip.four,
  .design-mini-strip {
    grid-template-columns: 1fr;
  }

  .visual-feature-rows article,
  .visual-feature-rows figure {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .spec-strip article {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 24px 20px;
  }

  .product-composite .wide,
  .metric-panel.large {
    grid-column: auto;
  }

  .phone-stack {
    flex-direction: column;
  }

  .phone-stack img {
    width: min(100%, 320px);
  }

  .banner-card + .banner-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .banner-card {
    padding: 32px 20px;
  }

  .demo-list div {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-list span {
    text-align: left;
  }
}

/* Intrinsic image dimensions must not become grid minimum widths. */
.home-stage-art,
.spec-art,
.product-grid > *,
.report-grid > *,
.personal-grid > *,
.report-story > *,
.insight-visual-grid > *,
.guide-list > *,
.content-layout > *,
.visual-feature-rows > *,
.product-card,
.report-card,
.personal-card,
.media-frame,
.article-figure,
.process-evidence {
  min-width: 0;
}

.product-card img,
.report-story .media-frame img,
.article-figure img,
.process-evidence img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.spec-art img,
.home-story-card img,
.guide-list img,
.visual-feature-rows img,
.contact-preview img {
  max-width: 100%;
}

@media (max-width: 1060px) {
  .home-story-row {
    grid-template-columns: 1fr;
  }

  .home-story-card,
  .home-story-card.primary-story {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .home-capability-strip.home-path-strip {
    grid-template-columns: 1fr;
  }

  .home-capability-strip.home-path-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .spec-demo .spec-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-panel {
    order: -1;
  }

  .demo-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 118px minmax(0, 1fr) max-content;
    gap: 14px;
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand img {
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: none;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    background: rgba(5, 8, 13, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    min-height: 46px;
    justify-content: space-between;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 15px;
  }

  .nav a.active:not(.nav-cta)::after {
    display: none;
  }

  .nav a.active {
    background: rgba(0, 113, 227, 0.16);
  }

  .nav-cta {
    min-height: 46px !important;
    margin-top: 6px;
    background: var(--blue);
    color: #ffffff !important;
  }

  .home-stage-inner {
    padding: 36px 18px 0;
  }

  .screen-kicker {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .home-stage-copy h1 {
    font-size: 40px;
  }

  .home-stage-copy p {
    margin-top: 16px;
    font-size: 16px;
  }

  .home-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: initial;
  }

  .home-tabs a,
  .home-tabs button {
    min-height: 48px;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 8px;
    font-size: 14px;
  }

  .home-tabs a:first-child,
  .home-tabs button:first-child {
    border-left: 0;
  }

  .home-stage-art {
    margin-top: 28px;
  }

  .home-capability-strip.home-path-strip article {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 116px;
    padding: 20px;
  }

  .cap-icon {
    width: 48px;
    height: 48px;
  }

  .cap-icon svg {
    width: 32px;
    height: 32px;
  }

  .home-story-card {
    gap: 18px;
    padding: 24px 20px;
  }

  .home-story-card h3 {
    font-size: 27px;
  }

  .home-story-card p {
    font-size: 15px;
  }

  .home-story-card img {
    min-height: 200px;
  }

  .scene-dark,
  .scene-quiet {
    padding: 58px 18px;
  }

  .spec-hero {
    padding: 34px 18px 38px;
  }

  .spec-copy h1,
  .spec-product .spec-copy h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .spec-copy h1 span,
  .spec-product .spec-copy h1 span,
  .spec-design .spec-copy h1 span {
    white-space: normal;
  }

  .spec-copy p {
    width: auto;
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-proof-row {
    margin-top: 20px;
  }

  .spec-art,
  .spec-product .spec-art,
  .spec-reports .spec-art,
  .spec-design .spec-art,
  .spec-personal .spec-art {
    margin-top: 26px;
  }

  .spec-strip article {
    min-height: 118px;
  }

  .product-card img,
  .report-card img {
    min-height: 220px;
  }

  .personal-card {
    min-height: 0;
    padding: 22px;
  }

  .personal-card img {
    width: calc(100% + 44px);
    height: 190px;
    margin: -22px -22px 0;
  }

  .workflow {
    gap: 1px;
  }

  .step {
    min-height: 168px;
    padding: 22px;
  }

  .step h2 {
    margin-top: 34px;
  }

  .report-story,
  .report-story.reverse,
  .report-story.light {
    gap: 24px;
  }

  .report-story h2,
  .section-heading h2,
  .copy-block h2,
  .contact-copy h2,
  .design-system-copy h2,
  .design-proof h2 {
    font-size: 34px;
  }

  .spec-demo .spec-hero-inner {
    gap: 28px;
    padding-top: 0;
  }

  .spec-demo .spec-copy h1 {
    font-size: 38px;
  }

  .demo-points div {
    min-height: 0;
  }

  .booking-panel {
    padding: 24px;
  }

  .booking-panel h2 {
    font-size: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 26px;
  }
}

/* 2026-07 content and conversion pass. */
.home-process {
  overflow: hidden;
}

.process-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(54px, 7vw, 96px);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.process-intro > span,
.guide-list > a > span,
.content-kicker {
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 750;
}

.process-intro h2 {
  max-width: 590px;
  margin-top: 16px;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: 720;
}

.process-intro > p {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.64;
}

.process-evidence {
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0b0d11;
}

.process-evidence img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  object-position: top center;
}

.process-evidence figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

.process-flow {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 25px;
  width: 1px;
  background: linear-gradient(var(--blue), rgba(41, 151, 255, 0.18));
  content: "";
}

.process-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  min-height: 122px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.process-flow li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(41, 151, 255, 0.68);
  border-radius: var(--radius);
  background: #07090d;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 800;
}

.process-flow h3 {
  font-size: 25px;
  line-height: 1.18;
  font-weight: 700;
}

.process-flow p {
  max-width: 620px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.guide-heading {
  max-width: 920px;
  text-align: left;
}

.guide-list {
  max-width: 1280px;
  margin: 48px auto 0;
  border-bottom: 1px solid var(--line);
}

.guide-list > a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 220px 94px;
  gap: 28px;
  align-items: center;
  min-height: 162px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: background 180ms ease;
}

.guide-list > a:hover {
  background: rgba(41, 151, 255, 0.055);
}

.guide-list h3 {
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.2;
  font-weight: 690;
}

.guide-list p {
  max-width: 640px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.guide-list img {
  width: 220px;
  height: 122px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
  background: #0d0f13;
}

.guide-list b {
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 720;
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}

.footer-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(64px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 78% 112%, rgba(0, 113, 227, 0.28), transparent 34rem),
    #000000;
}

.content-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.content-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--faint);
  font-size: 13px;
}

.content-breadcrumb a:hover {
  color: var(--ink);
}

.content-hero h1 {
  max-width: 980px;
  margin-top: 16px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 760;
}

.content-hero .content-deck {
  max-width: 820px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
  color: var(--faint);
  font-size: 13px;
}

.content-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: clamp(44px, 7vw, 92px);
  max-width: 1132px;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 112px) 24px;
  align-items: start;
}

.content-toc {
  position: sticky;
  top: 96px;
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.content-toc strong {
  padding: 18px 0 12px;
  color: var(--ink);
  font-size: 13px;
}

.content-toc a {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.content-toc a:hover {
  color: var(--blue-bright);
}

.article-body > section {
  padding-bottom: 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.article-body > section:last-child {
  margin-bottom: 0;
}

.article-body h2 {
  max-width: 760px;
  font-size: clamp(31px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 720;
}

.article-body h3 {
  margin-top: 32px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 690;
}

.article-body p,
.article-body li {
  color: rgba(247, 248, 251, 0.76);
  font-size: 17px;
  line-height: 1.82;
}

.article-body p {
  margin-top: 20px;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 24px;
}

.article-summary {
  margin-bottom: 54px;
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-summary strong {
  display: block;
  color: var(--blue-bright);
  font-size: 13px;
}

.article-summary p {
  margin-top: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
}

.article-figure {
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0b0d11;
}

.article-figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.article-figure figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

.article-checklist {
  padding-left: 0 !important;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-top: 1px solid var(--line);
}

.article-checklist li::before {
  position: absolute;
  top: 26px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue-bright);
  border-radius: 50%;
  content: "";
}

.guide-hub-intro {
  max-width: 1180px;
  margin: 0 auto;
}

.research-preview {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.12), rgba(0, 0, 0, 0) 34rem),
    #05070b;
}

.research-preview-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 24px;
}

.research-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
}

.research-preview-heading h2 {
  max-width: 650px;
  margin-top: 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
}

.research-preview-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.research-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(44px, 6vw, 74px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.research-proof-grid > div {
  min-height: 166px;
  padding: 26px 28px 28px;
  border-left: 1px solid var(--line);
}

.research-proof-grid > div:first-child {
  border-left: 0;
}

.research-proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
  font-weight: 760;
}

.research-proof-grid span {
  display: block;
  max-width: 220px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.research-preview .actions {
  margin-top: 36px;
}

.research-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid var(--line-strong);
}

.research-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: rgba(247, 248, 251, 0.8);
  font-size: 14px;
  line-height: 1.55;
}

.research-table th,
.research-table td {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.research-table th:last-child,
.research-table td:last-child {
  border-right: 0;
}

.research-table tr:last-child td {
  border-bottom: 0;
}

.research-table th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
}

.research-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(41, 151, 255, 0.44);
  background: rgba(0, 113, 227, 0.09);
}

.research-download p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

/* 2026-08 hardware product surface: real device evidence and deployment flow. */
.hardware-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(104deg, #020408 0%, #02060d 58%, #071426 100%),
    #020408;
}

.solution-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 270px;
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.solution-switch a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.solution-switch a.active {
  background: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .solution-switch a:not(.active):hover {
    background: rgba(0, 113, 227, 0.12);
    color: #ffffff;
  }
}

.hardware-hero-inner,
.hardware-statement-inner,
.hardware-collection,
.hardware-pricing-inner,
.hardware-deployment,
.hardware-audiences,
.hardware-signal-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hardware-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(540px, 1.15fr);
  gap: 62px;
  align-items: center;
  min-height: 680px;
  padding: 94px 34px 72px;
}

.hardware-hero-copy .content-breadcrumb {
  margin-bottom: 34px;
}

.hardware-hero-copy h1 {
  max-width: 620px;
  margin-top: 16px;
  font-size: 62px;
  line-height: 1.06;
  font-weight: 780;
}

.hardware-hero-copy > p {
  max-width: 580px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hardware-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hardware-hero-facts span {
  border: 1px solid rgba(25, 213, 137, 0.38);
  padding: 9px 12px;
  color: #aef8d6;
  font-size: 13px;
  font-weight: 700;
}

.hardware-hero-copy .actions {
  margin-top: 32px;
}

.hardware-hero-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #050608;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.46);
}

.hardware-hero-media img,
.hardware-statement figure img,
.hardware-device-art img,
.hardware-signal-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hardware-statement {
  padding: 104px 34px;
}

.hardware-statement-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: 70px;
  align-items: center;
}

.hardware-statement h2,
.hardware-section-heading h2 {
  max-width: 700px;
  margin-top: 16px;
  font-size: 48px;
  line-height: 1.12;
}

.hardware-statement p,
.hardware-section-heading > p {
  max-width: 660px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hardware-statement figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #101114;
}

.hardware-collection,
.hardware-deployment,
.hardware-audiences {
  padding: 108px 34px;
}

.hardware-pricing {
  scroll-margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 20%, rgba(25, 213, 137, 0.14), transparent 32rem),
    #05080b;
}

.hardware-pricing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(560px, 1.26fr);
  gap: 72px;
  align-items: center;
  padding: 100px 34px;
}

.hardware-package-copy h2 {
  max-width: 560px;
  margin-top: 16px;
  font-size: 48px;
  line-height: 1.12;
}

.hardware-package-copy > p:not(.hardware-package-note) {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hardware-package-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 34px;
}

.hardware-package-price > span {
  color: #aef8d6;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hardware-package-price strong {
  color: #e7ff28;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hardware-package-price small {
  margin-right: 5px;
  font-size: 0.48em;
}

.hardware-package-price em {
  color: var(--muted);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.hardware-package-note {
  margin-top: 14px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.55;
}

.hardware-package-copy .actions {
  margin-top: 30px;
}

.hardware-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.hardware-package-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.hardware-package-grid span {
  color: #47e1a6;
  font-size: 14px;
  font-weight: 820;
}

.hardware-package-grid h3 {
  margin-top: 48px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.28;
}

.hardware-package-grid p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.hardware-section-heading {
  max-width: 820px;
}

.hardware-collection-layout {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  margin-top: 58px;
}

.hardware-device-art {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #050608;
}

.hardware-spec-list {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.hardware-spec-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.hardware-spec-list dt {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.hardware-spec-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.hardware-deployment {
  max-width: none;
  background: #06070a;
}

.hardware-deployment > .hardware-section-heading,
.hardware-deployment > .hardware-step-list {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.hardware-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hardware-step-list li {
  min-height: 250px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.hardware-step-list li:first-child {
  border-left: 0;
}

.hardware-step-list span {
  display: block;
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 800;
}

.hardware-step-list h3 {
  margin-top: 48px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
}

.hardware-step-list p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.hardware-audience-rows {
  margin-top: 54px;
  border-bottom: 1px solid var(--line);
}

.hardware-audience-rows article {
  display: grid;
  grid-template-columns: 190px minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.hardware-audience-rows span {
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 800;
}

.hardware-audience-rows h3 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.28;
}

.hardware-audience-rows p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hardware-signal {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050609;
}

.hardware-signal-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 58px;
  align-items: center;
  padding: 72px 34px;
}

.hardware-signal-copy h2 {
  max-width: 500px;
  margin-top: 14px;
  font-size: 42px;
  line-height: 1.13;
}

.hardware-signal-copy p {
  max-width: 500px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hardware-signal-copy .actions {
  margin-top: 30px;
}

.home-package-teaser {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 5px 18px;
  align-items: center;
  max-width: 500px;
  margin-top: 28px;
  padding: 17px 18px;
  border: 1px solid rgba(71, 225, 166, 0.35);
  background: rgba(25, 213, 137, 0.055);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.home-package-teaser > span {
  color: #aef8d6;
  font-size: 14px;
  font-weight: 780;
}

.home-package-teaser strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  justify-self: end;
  color: #e7ff28;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.home-package-teaser strong small {
  margin-right: 3px;
  font-size: 0.55em;
}

.home-package-teaser strong em {
  margin-left: 5px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0;
}

.home-package-teaser > p {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
  .home-package-teaser:hover {
    border-color: rgba(71, 225, 166, 0.7);
    background: rgba(25, 213, 137, 0.095);
    transform: translateY(-2px);
  }
}

.hardware-signal-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #050608;
}

.audience-rows {
  max-width: 1180px;
  margin: 44px auto 0;
  border-bottom: 1px solid var(--line);
}

.audience-rows article {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.audience-rows span {
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 750;
}

.audience-rows h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
}

.audience-rows p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .process-shell,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .process-intro {
    max-width: 760px;
  }

  .guide-list > a {
    grid-template-columns: 112px minmax(0, 1fr) 180px;
  }

  .guide-list img {
    width: 180px;
    height: 106px;
  }

  .guide-list b {
    display: none;
  }

  .content-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .content-toc strong {
    grid-column: 1 / -1;
  }

  .research-preview-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .process-shell {
    gap: 42px;
  }

  .process-intro h2 {
    font-size: 34px;
  }

  .process-intro > p {
    font-size: 16px;
  }

  .process-flow li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 20px 0;
  }

  .process-flow h3 {
    font-size: 22px;
  }

  .process-number {
    width: 48px;
    height: 48px;
  }

  .process-flow::before {
    left: 23px;
  }

  .guide-list {
    margin-top: 34px;
  }

  .guide-list > a {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px 0;
  }

  .guide-list h3 {
    font-size: 24px;
  }

  .guide-list img {
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .research-preview-inner {
    padding: 54px 18px;
  }

  .research-proof-grid {
    grid-template-columns: 1fr;
  }

  .research-proof-grid > div,
  .research-proof-grid > div:first-child {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .research-proof-grid > div:first-child {
    border-top: 0;
  }

  .footer-legal,
  .footer-guide-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-hero {
    padding: 48px 18px 54px;
  }

  .content-hero h1 {
    font-size: 39px;
  }

  .content-hero .content-deck {
    font-size: 17px;
  }

  .content-layout {
    gap: 46px;
    padding: 52px 18px 68px;
  }

  .content-toc {
    grid-template-columns: 1fr;
  }

  .content-toc strong {
    grid-column: auto;
  }

  .article-body > section {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .article-body h2 {
    font-size: 31px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
    line-height: 1.75;
  }

  .audience-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .hardware-hero-inner,
  .hardware-statement,
  .hardware-collection,
  .hardware-pricing-inner,
  .hardware-deployment,
  .hardware-audiences,
  .hardware-signal-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hardware-hero-inner {
    min-height: 0;
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .hardware-hero-copy .content-breadcrumb {
    margin-bottom: 26px;
  }

  .solution-switch {
    width: 100%;
    min-width: 0;
    margin-bottom: 20px;
  }

  .hardware-hero-copy h1 {
    font-size: 42px;
  }

  .hardware-hero-copy > p,
  .hardware-statement p,
  .hardware-section-heading > p,
  .hardware-signal-copy p {
    font-size: 16px;
  }

  .hardware-statement,
  .hardware-collection,
  .hardware-pricing-inner,
  .hardware-deployment,
  .hardware-audiences {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hardware-statement h2,
  .hardware-section-heading h2,
  .hardware-package-copy h2,
  .hardware-signal-copy h2 {
    font-size: 34px;
  }

  .hardware-collection-layout,
  .hardware-signal-inner {
    margin-top: 36px;
  }

  .hardware-spec-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hardware-step-list {
    margin-top: 38px;
  }

  .hardware-step-list li {
    min-height: 0;
    padding: 22px 0;
  }

  .hardware-step-list h3 {
    margin-top: 30px;
  }

  .hardware-audience-rows {
    margin-top: 36px;
  }

  .hardware-audience-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .hardware-audience-rows h3 {
    font-size: 24px;
  }
}

@media (max-width: 1060px) {
  .hardware-hero-inner,
  .hardware-statement-inner,
  .hardware-collection-layout,
  .hardware-pricing-inner,
  .hardware-signal-inner {
    grid-template-columns: 1fr;
  }

  .hardware-hero-inner {
    gap: 42px;
    min-height: 0;
  }

  .hardware-hero-media {
    max-width: 820px;
  }

  .hardware-statement-inner,
  .hardware-collection-layout,
  .hardware-pricing-inner,
  .hardware-signal-inner {
    gap: 38px;
  }

  .hardware-collection-layout {
    max-width: 820px;
  }

  .hardware-package-grid {
    max-width: 820px;
  }

  .hardware-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardware-step-list li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hardware-step-list li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .hardware-audience-rows article {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .hardware-audience-rows p {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .hardware-package-grid {
    grid-template-columns: 1fr;
  }

  .hardware-package-grid article {
    min-height: 0;
    padding: 24px 22px;
  }

  .hardware-package-grid h3 {
    margin-top: 26px;
  }

  .hardware-package-price {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .hardware-package-price strong {
    font-size: 52px;
  }

  .home-package-teaser {
    grid-template-columns: 1fr;
  }

  .home-package-teaser strong {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }

  .hardware-step-list {
    grid-template-columns: 1fr;
  }

  .hardware-step-list li,
  .hardware-step-list li:nth-child(3),
  .hardware-step-list li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hardware-step-list li:first-child {
    border-top: 0;
  }

  .hardware-audience-rows article {
    grid-template-columns: 1fr;
  }

  .hardware-audience-rows p {
    grid-column: auto;
  }
}

/* Consistent desktop pointer feedback while keeping touch layouts stable. */
@media (hover: hover) and (pointer: fine) {
  .nav a,
  .menu-toggle,
  .button,
  .home-tabs a,
  .home-tabs button,
  .screen-switch a,
  .screen-switch button,
  .contact-form button,
  .submissions-actions button,
  .home-story-card {
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      background-color 160ms ease,
      border-color 160ms ease,
      color 160ms ease;
  }

  .nav a:not(.nav-cta):hover {
    color: #ffffff;
  }

  .button.primary:hover,
  .contact-form button:not(:disabled):hover {
    transform: translateY(-1px);
    background: #1685f0;
    box-shadow: 0 10px 24px rgba(0, 113, 227, 0.28);
  }

  .button.ghost:hover {
    transform: translateY(-1px);
    border-color: var(--blue-bright);
    background: rgba(41, 151, 255, 0.12);
    color: #ffffff;
  }

  .menu-toggle:hover {
    border-color: var(--blue-bright);
    background: rgba(0, 113, 227, 0.28);
    color: #ffffff;
  }

  .home-tabs a:not(.active):hover,
  .home-tabs button:not(.active):hover,
  .screen-switch a:not(.active):hover,
  .screen-switch button:not(.active):hover,
  .submissions-actions button:not(.danger):not(:disabled):hover {
    background: rgba(41, 151, 255, 0.1);
    color: #ffffff;
  }

  .home-tabs .active:hover,
  .screen-switch .active:hover {
    background: #1685f0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .submissions-actions .danger:not(:disabled):hover {
    border-color: #ffcc4d;
    background: rgba(255, 204, 77, 0.1);
    color: #ffffff;
  }

  .home-story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
  }
}

@media (min-width: 1061px) and (hover: hover) and (pointer: fine) {
  .nav-cta:hover {
    transform: translateY(-1px);
    background: #1685f0;
    box-shadow: 0 10px 24px rgba(0, 113, 227, 0.28);
  }
}

.nav a:focus-visible,
.menu-toggle:focus-visible,
.button:focus-visible,
.home-tabs a:focus-visible,
.home-tabs button:focus-visible,
.screen-switch a:focus-visible,
.screen-switch button:focus-visible,
.contact-form button:focus-visible,
.submissions-actions button:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

/* The homepage selector should remain obvious on touch-capable laptops too. */
.home-tabs button {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.home-tabs button:not(.active):hover {
  background: rgba(0, 113, 227, 0.3);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(41, 151, 255, 0.58);
}

.home-tabs button.active:hover {
  background: #1685f0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.home-tabs button:active {
  transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
  .nav a,
  .menu-toggle,
  .button,
  .home-tabs a,
  .home-tabs button,
  .screen-switch a,
  .screen-switch button,
  .contact-form button,
  .submissions-actions button,
  .home-story-card {
    transition-duration: 0.01ms !important;
  }
}

/* Mobile navigation behaves as a single modal interaction layer. */
.nav-scrim {
  display: none;
}

@media (max-width: 720px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-scrim {
    position: fixed;
    inset: 68px 0 0;
    z-index: 49;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.66);
    cursor: default;
  }

  body.nav-open .nav-scrim {
    display: block;
  }

  .site-header.menu-open .nav {
    z-index: 2;
  }

  body.nav-open .mobile-contact-bar {
    visibility: hidden;
    opacity: 0;
  }

  .spec-copy > .actions {
    gap: 10px;
    margin-top: 22px;
  }

  .spec-copy > .actions .button {
    min-height: 42px;
    padding: 0 17px;
    font-size: 14px;
  }
}

/* 2026-08 unified brand pass: one navigation, one editorial grid, one component language. */
:root {
  --page: 1240px;
  --radius: 6px;
  --panel: #0a0c10;
  --panel-2: #0f1217;
  --panel-3: #151920;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --muted: rgba(247, 248, 251, 0.7);
  --faint: rgba(247, 248, 251, 0.46);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

body {
  background: #000000;
}

h1,
h2,
h3,
.hero h1,
.page-hero h1,
.design-hero h1,
.section-heading h2,
.report-story h2,
.content-hero h1 {
  letter-spacing: 0;
}

.scene-blue-floor::after,
.hero::after,
.page-hero::after,
.site-footer::before {
  display: none;
}

/* Global navigation and product dropdown. */
.site-header {
  z-index: 100;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 72px;
  padding: 0 clamp(28px, 4vw, 64px);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: saturate(140%) blur(18px);
}

.brand img {
  height: 46px;
}

.nav {
  gap: 4px;
  overflow: visible;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
}

.nav > a,
.nav-product > a {
  min-height: 72px;
  padding: 0 14px;
}

.nav > a.active:not(.nav-cta)::after,
.nav-product.is-active::after {
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 2px;
  background: var(--blue-bright);
}

.nav-product {
  position: relative;
  display: inline-flex;
  min-height: 72px;
  align-items: center;
}

.nav-product.is-active::after {
  position: absolute;
  content: "";
}

.nav-product > a {
  display: inline-flex;
  align-items: center;
  padding-right: 36px;
}

.nav-product-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 24px;
  height: 32px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  transform: translateY(-50%);
}

.nav-product-toggle::before {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-product.open .nav-product-toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.nav-product-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  display: grid;
  width: 312px;
  visibility: hidden;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 8px;
  background: #090b0f;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.58);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-product-menu a {
  display: grid;
  min-height: 78px;
  align-content: center;
  border-radius: 4px;
  padding: 13px 15px;
  color: var(--ink);
  white-space: normal;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-product-menu a + a {
  border-top: 1px solid var(--line);
}

.nav-product-menu strong {
  font-size: 15px;
  line-height: 1.2;
}

.nav-product-menu span {
  margin-top: 7px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.45;
}

.nav-product-menu a[aria-current="page"] {
  background: rgba(0, 113, 227, 0.14);
}

.nav-product.open .nav-product-menu,
.nav-product:focus-within .nav-product-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-cta {
  min-height: 40px !important;
  margin-left: 10px;
  border-radius: 6px;
  padding: 0 18px !important;
  background: var(--blue) !important;
  color: #ffffff !important;
}

.solution-switch {
  display: none;
}

/* Shared controls, surfaces and interaction states. */
.button,
.menu-toggle,
.contact-form button,
.submissions-actions button {
  min-height: 46px;
  border-radius: 6px;
  font-weight: 680;
}

.menu-toggle {
  border-radius: 6px;
}

.hero-proof-row {
  gap: 0;
  margin-top: 28px;
}

.hero-proof-row span {
  min-height: 28px;
  border: 0;
  border-left: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0 18px;
  background: transparent;
  color: rgba(247, 248, 251, 0.72);
  font-size: 12px;
  font-weight: 680;
}

.hero-proof-row span:first-child {
  border-left: 0;
  padding-left: 0;
}

.screen-kicker,
.content-kicker,
.process-intro > span,
.guide-list > a > span {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 760;
}

.scene-dark,
.scene-quiet {
  padding: clamp(82px, 8vw, 120px) clamp(24px, 5vw, 72px);
}

.scene-dark {
  background: #000000;
}

.scene-quiet {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  background: #06070a;
}

.section-heading,
.copy-block {
  max-width: var(--page);
}

.section-heading h2,
.copy-block h2,
.contact-copy h2,
.design-system-copy h2,
.design-proof h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
}

.section-heading p,
.copy-block p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.68;
}

.product-card,
.report-card,
.personal-card,
.demo-panel,
.insight-visual-grid article,
.media-frame,
.article-figure,
.process-evidence {
  border-color: var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: none;
}

/* Product, report, personal and booking templates. */
.spec-hero {
  min-height: auto;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom-color: var(--line);
  background: #000000;
}

.spec-hero-inner {
  max-width: 1320px;
  min-height: 660px;
}

.spec-product .spec-hero-inner,
.spec-reports .spec-hero-inner,
.spec-personal .spec-hero-inner {
  grid-template-columns: minmax(360px, 0.74fr) minmax(620px, 1.26fr);
  gap: clamp(40px, 5vw, 72px);
}

.spec-copy h1,
.spec-product .spec-copy h1,
.spec-reports .spec-copy h1,
.spec-personal .spec-copy h1 {
  width: auto;
  max-width: 600px;
  font-size: clamp(48px, 4.3vw, 64px);
  line-height: 1.06;
  font-weight: 760;
}

.spec-copy p {
  width: auto;
  max-width: 560px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.68;
}

.spec-art img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080a0e;
  filter: none;
  box-shadow: var(--shadow);
}

.spec-strip {
  max-width: 1320px;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
}

.spec-strip article {
  min-height: 170px;
  border-left: 1px solid var(--line);
  padding: 30px 28px 34px;
  background: transparent;
}

.spec-strip article:first-child {
  border-left: 0;
}

.spec-strip h2 {
  font-size: 20px;
}

.spec-strip p {
  font-size: 14px;
  line-height: 1.62;
}

.spec-strip .cap-icon {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.spec-strip .cap-icon svg {
  width: 32px;
  height: 32px;
}

.spec-reports .spec-hero-inner {
  grid-template-columns: minmax(330px, 0.62fr) minmax(650px, 1.38fr);
}

.spec-reports .spec-copy h1 {
  max-width: 480px;
}

.spec-reports .spec-copy h1 span {
  display: block;
  white-space: nowrap;
}

.spec-reports .spec-art img {
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.08), 0 32px 80px rgba(0, 0, 0, 0.52);
}

.report-proof-section {
  padding-top: clamp(86px, 8vw, 118px);
}

.report-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 8vw, 120px);
  max-width: var(--page);
  margin: 0 auto;
  align-items: end;
}

.report-proof-heading > span {
  grid-column: 1 / -1;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 760;
}

.report-proof-heading h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
  font-weight: 720;
}

.report-proof-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.report-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 14px;
  max-width: var(--page);
  margin-top: 52px;
}

.report-card {
  min-height: 0;
}

.report-card img {
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.report-card.large img {
  aspect-ratio: auto;
}

.report-question-section .compact-heading,
.report-types-section .compact-heading {
  text-align: left;
  margin-left: max(0px, calc((100% - var(--page)) / 2));
}

.report-question-grid {
  margin-top: 54px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  gap: 0;
}

.report-question-grid .personal-card {
  min-height: 220px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding: 34px;
  background: transparent;
}

.report-question-grid .personal-card:first-child {
  border-left: 0;
}

.report-question-grid .personal-card h2 {
  margin-top: 0;
  color: var(--blue-bright);
  font-size: 24px;
}

.report-perspective-section {
  display: grid;
  gap: 100px;
}

.report-perspective-section .report-story + .report-story {
  margin-top: 0;
}

.report-story,
.report-story.reverse {
  grid-template-columns: minmax(300px, 0.7fr) minmax(560px, 1.3fr);
  gap: clamp(44px, 7vw, 96px);
  max-width: var(--page);
}

.report-story.reverse {
  grid-template-columns: minmax(560px, 1.3fr) minmax(300px, 0.7fr);
}

.report-story h2 {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 720;
}

.report-story p {
  font-size: 17px;
  line-height: 1.7;
}

.report-story .media-frame {
  box-shadow: var(--shadow);
}

.report-types-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.report-types-grid article {
  border: 0;
  border-radius: 0;
  background: #050608;
}

.report-types-grid div {
  padding: 24px;
}

.report-types-grid h2 {
  font-size: 20px;
  line-height: 1.3;
}

/* Homepage rhythm. */
.home-stage-hero,
.home-stage-hero[data-active-slide="reports"],
.home-stage-hero[data-active-slide="personal"] {
  background: #000000;
}

.home-stage-inner {
  grid-template-columns: minmax(400px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(40px, 5vw, 76px);
  max-width: 1440px;
  min-height: 690px;
}

.home-stage-copy h1 {
  font-size: clamp(52px, 4.7vw, 70px);
  line-height: 1.04;
  font-weight: 760;
}

.home-stage-copy p {
  max-width: 590px;
  font-size: 17px;
  line-height: 1.68;
}

.home-tabs {
  border-radius: var(--radius);
}

.home-tabs a,
.home-tabs button {
  min-width: 150px;
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.home-capability-strip,
.home-story-row {
  max-width: 1440px;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.home-story-card {
  border-radius: 0;
  background: #07090c;
}

/* Hardware and editorial content templates. */
.hardware-hero {
  background: #020408;
}

.hardware-hero-inner,
.hardware-statement-inner,
.hardware-collection,
.hardware-pricing-inner,
.hardware-deployment,
.hardware-audiences,
.hardware-signal-inner {
  max-width: var(--page);
}

.hardware-hero-copy h1 {
  font-size: clamp(48px, 5vw, 64px);
  letter-spacing: 0;
}

.hardware-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.booking-panel {
  background: #101722;
}

.hardware-hero-media,
.hardware-device-art,
.hardware-statement figure {
  border-radius: var(--radius);
}

.content-hero {
  padding: clamp(78px, 8vw, 112px) clamp(24px, 5vw, 72px) clamp(70px, 7vw, 96px);
  background: #000000;
}

.content-hero-inner {
  max-width: var(--page);
}

.content-hero h1 {
  max-width: 960px;
  margin-top: 18px;
  font-size: clamp(46px, 5.4vw, 66px);
  line-height: 1.08;
  font-weight: 740;
}

.content-hero .content-deck {
  max-width: 790px;
  font-size: 19px;
  line-height: 1.7;
}

.content-layout {
  grid-template-columns: 220px minmax(0, 840px);
  max-width: 1160px;
}

.article-body h2 {
  font-size: clamp(32px, 3.8vw, 43px);
  font-weight: 700;
}

.article-body p,
.article-body li {
  color: rgba(247, 248, 251, 0.75);
  line-height: 1.86;
}

.guide-list > a {
  min-height: 156px;
  padding-right: 18px;
  padding-left: 18px;
}

.guide-list > a:hover {
  background: rgba(255, 255, 255, 0.035);
}

/* Footer. */
.site-footer {
  grid-template-columns: minmax(240px, 1fr) repeat(3, max-content);
  gap: clamp(28px, 5vw, 68px);
  padding: 54px max(28px, calc((100vw - var(--page)) / 2));
  background: #030405;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 26px;
}

.footer-contact b {
  font-size: 15px;
}

@media (hover: hover) and (pointer: fine) {
  .nav-product:hover .nav-product-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-product-menu a:hover {
    background: rgba(0, 113, 227, 0.12);
    color: #ffffff;
  }

  .product-card,
  .report-card,
  .personal-card,
  .insight-visual-grid article,
  .article-figure,
  .guide-list > a {
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
  }

  .product-card:hover,
  .report-card:hover,
  .insight-visual-grid article:hover,
  .article-figure:hover {
    border-color: rgba(41, 151, 255, 0.42);
  }
}

.nav-product-toggle:focus-visible,
.nav-product-menu a:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

@media (max-width: 1060px) {
  .spec-product .spec-hero-inner,
  .spec-reports .spec-hero-inner,
  .spec-personal .spec-hero-inner,
  .report-proof-heading,
  .report-story,
  .report-story.reverse {
    grid-template-columns: 1fr;
  }

  .report-proof-heading {
    gap: 20px;
  }

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

  .report-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .report-card.large img {
    aspect-ratio: 16 / 9;
  }

  .report-perspective-section {
    gap: 72px;
  }

  .report-types-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 118px minmax(0, 1fr) max-content;
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand img {
    height: 42px;
  }

  .nav {
    top: calc(100% + 1px);
    right: 10px;
    left: 10px;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 8px;
    background: #080a0e;
  }

  .nav > a,
  .nav-product > a {
    min-height: 48px;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 15px;
  }

  .nav > a.active:not(.nav-cta)::after,
  .nav-product.is-active::after {
    display: none;
  }

  .nav-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 48px;
  }

  .nav-product > a {
    padding-right: 10px;
  }

  .nav-product-toggle {
    position: relative;
    top: auto;
    right: auto;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .nav-product-menu {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: auto;
    max-height: 0;
    visibility: hidden;
    border: 0;
    border-radius: 0;
    padding: 0 6px;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height 180ms ease, opacity 160ms ease, visibility 160ms ease;
  }

  .nav-product.open .nav-product-menu {
    max-height: 190px;
    visibility: visible;
    padding-bottom: 6px;
    opacity: 1;
  }

  .nav-product-menu a {
    min-height: 70px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.025);
  }

  .nav-cta {
    min-height: 48px !important;
    margin: 6px 0 0;
  }

  .scene-dark,
  .scene-quiet {
    padding: 64px 18px;
  }

  .home-stage-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 42px 18px 0;
  }

  .home-stage-copy h1 {
    font-size: 40px;
  }

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

  .home-tabs a,
  .home-tabs button {
    min-width: 0;
    min-height: 48px;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 8px;
    font-size: 14px;
  }

  .spec-hero {
    padding: 42px 18px 0;
  }

  .spec-hero-inner {
    min-height: auto;
  }

  .spec-copy h1,
  .spec-product .spec-copy h1,
  .spec-reports .spec-copy h1,
  .spec-personal .spec-copy h1 {
    font-size: 40px;
  }

  .hardware-hero-copy h1 {
    font-size: 40px;
  }

  .spec-strip,
  .spec-strip.three,
  .spec-strip.four {
    margin-top: 42px;
  }

  .spec-strip article,
  .spec-strip article:first-child {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 24px 18px;
  }

  .report-grid,
  .report-types-grid,
  .report-question-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .report-grid {
    gap: 12px;
  }

  .report-card.large {
    grid-column: auto;
  }

  .report-question-grid .personal-card,
  .report-question-grid .personal-card:first-child {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 26px 0;
  }

  .report-story,
  .report-story.reverse {
    gap: 26px;
  }

  .report-story.reverse figure {
    order: 2;
  }

  .report-story h2,
  .report-proof-heading h2,
  .section-heading h2,
  .copy-block h2 {
    font-size: 34px;
  }

  .content-hero {
    padding: 62px 18px 58px;
  }

  .content-hero h1 {
    font-size: 40px;
  }

  .hardware-hero-copy h1 span {
    white-space: normal;
  }

  .content-hero .content-deck {
    font-size: 17px;
  }

  .content-layout {
    padding: 58px 18px;
  }

  .guide-list > a {
    padding-right: 0;
    padding-left: 0;
  }

  .site-footer {
    padding: 44px 22px;
  }
}

/* 2026-08 layout polish: clearer first viewports and a roomier desktop menu. */
@media (min-width: 1061px) {
  .site-header {
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 76px;
    padding: 0 clamp(36px, 5vw, 84px);
  }

  .nav {
    gap: clamp(8px, 1vw, 16px);
    justify-content: flex-end;
    font-size: 15px;
  }

  .nav > a,
  .nav-product,
  .nav-product > a {
    min-height: 76px;
  }

  .nav > a,
  .nav-product > a {
    padding-right: clamp(16px, 1.25vw, 22px);
    padding-left: clamp(16px, 1.25vw, 22px);
  }

  .nav-product > a {
    padding-right: 42px;
  }

  .nav-product-toggle {
    right: 12px;
  }

  .nav-cta {
    margin-left: clamp(12px, 1.4vw, 22px);
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

  .home-stage-inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(68px, 6vw, 96px);
    max-width: 1520px;
    min-height: 620px;
    padding: 50px clamp(36px, 5vw, 84px) 34px;
  }

  .home-stage-copy {
    max-width: 560px;
  }

  .home-stage-copy h1 {
    max-width: 560px;
    font-size: clamp(48px, 3.65vw, 56px);
    line-height: 1.06;
  }

  .home-stage-copy h1 span {
    white-space: normal;
  }

  .home-stage-art {
    min-width: 0;
  }

  .spec-demo .spec-hero-inner {
    grid-template-columns: minmax(480px, 0.86fr) minmax(500px, 0.78fr);
    gap: clamp(56px, 6vw, 92px);
    min-height: 650px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .spec-demo .spec-copy h1 {
    max-width: 580px;
    font-size: clamp(50px, 4vw, 62px);
    line-height: 1.06;
  }

  .spec-demo .spec-copy h1 span {
    display: block;
    white-space: nowrap;
  }

  .spec-demo .spec-copy > p {
    max-width: 570px;
  }

  .spec-demo .demo-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .spec-demo .demo-points div {
    min-height: 76px;
    padding: 12px 14px;
  }
}

@media (min-width: 1061px) and (max-width: 1320px) {
  .home-stage-inner {
    gap: 52px;
  }

  .home-stage-copy h1 {
    font-size: 44px;
  }
}

.content-hero {
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

.content-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 4.7vw, 60px);
}

.content-hero-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.content-hero-links a {
  display: grid;
  min-height: 112px;
  align-content: center;
  border-left: 1px solid var(--line);
  padding: 20px 24px;
  transition: background-color 180ms ease, color 180ms ease;
}

.content-hero-links a:first-child {
  border-left: 0;
}

.content-hero-links span {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 760;
}

.content-hero-links strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.report-proof-section {
  padding-top: clamp(70px, 6vw, 92px);
  padding-bottom: clamp(70px, 6vw, 92px);
}

.report-perspective-section {
  gap: clamp(60px, 6vw, 82px);
  padding-top: clamp(70px, 6vw, 92px);
  padding-bottom: clamp(70px, 6vw, 92px);
}

.report-types-section {
  padding-top: clamp(70px, 6vw, 92px);
}

@media (hover: hover) and (pointer: fine) {
  .content-hero-links a:hover {
    background: rgba(0, 113, 227, 0.1);
  }
}

@media (max-width: 720px) {
  .home-stage-inner,
  .home-stage-copy,
  .content-hero-inner {
    width: 100%;
    min-width: 0;
  }

  .home-stage-copy h1,
  .content-hero h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .home-stage-copy h1 {
    font-size: 36px;
  }

  .home-stage-copy h1 span {
    white-space: normal;
  }

  .content-hero {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .content-hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .content-hero-links {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .content-hero-links a,
  .content-hero-links a:first-child {
    min-height: 88px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 16px 0;
  }

  .content-hero-links a:first-child {
    border-top: 0;
  }

  .spec-demo .spec-copy h1 span {
    display: block;
  }
}

/* Apple-design interaction pass: immediate feedback, anchored motion and accessibility. */
html {
  font-optical-sizing: auto;
}

.site-header {
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(3, 4, 6, 0.84);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: saturate(160%) blur(24px);
}

.nav-product-menu {
  transform: translateY(7px) scale(0.985);
  transform-origin: 42px 0;
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.2, 0.75, 0.2, 1),
    visibility 180ms ease;
}

.nav-product.open .nav-product-menu,
.nav-product:focus-within .nav-product-menu {
  transform: translateY(0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .nav-product:hover .nav-product-menu {
    transform: translateY(0) scale(1);
  }
}

.button,
.nav a,
.nav-product-toggle,
.menu-toggle,
.home-tabs button,
.screen-switch a,
.screen-switch button,
.guide-list > a,
.content-hero-links a,
.contact-form button,
.mobile-contact-bar button,
.mobile-contact-bar a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.button:active,
.nav-cta:active,
.contact-form button:not(:disabled):active,
.mobile-contact-bar button:active,
.mobile-contact-bar a:active {
  transform: scale(0.975);
  transition-duration: 90ms;
}

.nav a:not(.nav-cta):active,
.menu-toggle:active,
.home-tabs button:active,
.screen-switch a:active,
.screen-switch button:active,
.guide-list > a:active,
.content-hero-links a:active {
  transform: scale(0.985);
  transition-duration: 90ms;
}

.nav-product-toggle:active {
  opacity: 0.62;
}

.contact-form label[data-error]::after {
  color: #ffd36a;
  content: attr(data-error);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.35;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #0d1016;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 720px) {
  body.has-mobile-contact-bar {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 120;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 8px;
    background: rgba(7, 10, 14, 0.88);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.54);
    backdrop-filter: saturate(160%) blur(22px);
  }

  .mobile-contact-bar button,
  .mobile-contact-bar a {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(41, 151, 255, 0.55);
    border-radius: 6px;
    padding: 0 10px;
    background: rgba(0, 113, 227, 0.08);
    color: var(--blue-bright);
    font: inherit;
    font-size: 14px;
    font-weight: 720;
    text-align: center;
    transition:
      transform 100ms ease-out,
      background-color 160ms ease,
      border-color 160ms ease,
      color 160ms ease;
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button.copied {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
  }

  .mobile-contact-status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled,
  .mobile-contact-bar {
    background: #06080b;
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: rgba(255, 255, 255, 0.86);
    --faint: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.28);
    --line-strong: rgba(255, 255, 255, 0.48);
  }

  .site-header,
  .nav-product-menu,
  .mobile-contact-bar,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: #000000;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .nav-product-menu,
  .mobile-contact-bar button,
  .mobile-contact-bar a,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    transition-duration: 0.01ms !important;
  }

  .nav-product-menu,
  .nav-product.open .nav-product-menu,
  .nav-product:focus-within .nav-product-menu,
  .nav-product:hover .nav-product-menu {
    transform: none;
  }
}

/* Final image policy: product UI screenshots must remain fully legible. */
.product-card img,
.report-card img,
.report-story .media-frame img,
.personal-card img,
.insight-visual-grid img,
.visual-feature-rows img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  background: #0b0d11;
}

.report-card,
.report-story .media-frame,
.visual-feature-rows figure {
  align-self: center;
}

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

.report-types-grid article {
  min-width: 0;
}

.report-types-grid img {
  border-bottom: 1px solid var(--line);
}

/* The product group owns the active indicator; its child link must not draw another. */
.nav-product > a.active::after {
  display: none;
}

@media (max-width: 720px) {
  .report-types-grid {
    grid-template-columns: 1fr;
  }
}

/* Chinese search and AI knowledge surfaces. */
.knowledge-hero .content-hero-inner {
  max-width: 1080px;
}

.direct-answer {
  border-left: 3px solid var(--blue-bright);
  background: rgba(0, 113, 227, 0.09);
}

.direct-answer strong {
  color: var(--blue-bright);
}

.knowledge-faq details {
  border-top: 1px solid var(--line);
}

.knowledge-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.knowledge-faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.knowledge-faq summary::-webkit-details-marker {
  display: none;
}

.knowledge-faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--blue-bright);
  border-bottom: 1.5px solid var(--blue-bright);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.knowledge-faq details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.knowledge-faq details p {
  margin: 0;
  padding: 0 44px 22px 0;
}

.knowledge-source-note {
  border-top-color: rgba(41, 151, 255, 0.48) !important;
}

.knowledge-query-section {
  padding-top: clamp(70px, 7vw, 104px);
  padding-bottom: clamp(70px, 7vw, 104px);
}

.knowledge-query-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--page);
  margin: 48px auto 0;
  border-top: 1px solid var(--line-strong);
}

.knowledge-query-list a {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 22px;
  min-width: 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 25px 22px;
  color: var(--ink);
  transition: background-color 160ms ease, color 160ms ease;
}

.knowledge-query-list a:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.knowledge-query-list span {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 720;
}

.knowledge-query-list strong {
  min-width: 0;
  font-size: 17px;
  line-height: 1.45;
}

.knowledge-query-list b {
  color: var(--faint);
  font-size: 12px;
  font-weight: 620;
}

@media (hover: hover) and (pointer: fine) {
  .knowledge-query-list a:hover {
    background: rgba(0, 113, 227, 0.08);
  }
}

@media (max-width: 1060px) {
  .knowledge-query-list {
    grid-template-columns: 1fr;
  }

  .knowledge-query-list a:nth-child(odd) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .knowledge-query-list {
    margin-top: 34px;
  }

  .knowledge-query-list a {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    padding: 22px 0;
  }

  .knowledge-query-list span {
    grid-column: 1 / -1;
  }

  .knowledge-query-list strong {
    font-size: 16px;
  }

  .knowledge-faq summary {
    font-size: 16px;
  }
}

/* ATHLOS desktop downloads */
.download-page {
  background: #020509;
}

.download-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 13%, rgba(41, 151, 255, 0.22), transparent 28rem),
    radial-gradient(ellipse at 20% 100%, rgba(0, 113, 227, 0.27), transparent 42rem),
    #020509;
}

.download-atmosphere {
  position: absolute;
  right: -12vw;
  bottom: -42vw;
  width: 86vw;
  height: 86vw;
  border: 1px solid rgba(41, 151, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 9vw rgba(0, 113, 227, 0.025),
    0 0 0 18vw rgba(0, 113, 227, 0.018),
    inset 0 0 14vw rgba(0, 113, 227, 0.11);
  pointer-events: none;
}

.download-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(56px, 7vw, 116px);
  width: min(1480px, calc(100% - 96px));
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  padding: clamp(68px, 7vw, 108px) 0 62px;
  align-items: center;
}

.download-mark {
  width: 132px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 30px rgba(41, 151, 255, 0.44));
}

.download-product {
  margin-top: 28px;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

.download-intro h1 {
  margin-top: 18px;
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.98;
  font-weight: 820;
  letter-spacing: 0;
}

.download-deck {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(247, 248, 251, 0.7);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.7;
}

.download-release {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 36px;
  color: var(--faint);
  font-size: 13px;
}

.download-platforms {
  display: grid;
  gap: 14px;
}

.platform-download {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 42px;
  gap: 26px;
  min-height: 154px;
  padding: 20px 26px 20px 20px;
  overflow: hidden;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(10, 14, 21, 0.72);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.platform-download::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue-bright);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.platform-download:hover {
  border-color: rgba(41, 151, 255, 0.58);
  background: rgba(12, 26, 45, 0.9);
  transform: translateY(-2px);
}

.platform-download:hover::before {
  opacity: 1;
}

.platform-download.is-disabled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 21, 0.48);
  box-shadow: none;
  cursor: not-allowed;
  filter: grayscale(0.85);
  opacity: 0.46;
  pointer-events: none;
}

.platform-download.is-disabled:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 21, 0.48);
  transform: none;
}

.platform-download.is-disabled::before {
  opacity: 0;
}

.platform-orb {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(41, 151, 255, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.14), transparent 34%),
    rgba(0, 113, 227, 0.12);
  color: #ffffff;
  box-shadow: inset 0 0 32px rgba(41, 151, 255, 0.14);
}

.platform-orb img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(41, 151, 255, 0.24));
}

.platform-apple .platform-orb img,
.platform-intel .platform-orb img,
.platform-ipad .platform-orb img {
  width: 50px;
  height: 50px;
  filter: none;
}

.platform-ipad {
  width: 100%;
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.platform-recommended {
  position: absolute;
  top: 14px;
  right: 18px;
  display: none;
  padding: 4px 9px;
  border: 1px solid rgba(41, 151, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.16);
  color: #74bdff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.is-ipad-device .platform-ipad {
  border-color: rgba(41, 151, 255, 0.62);
  background: rgba(10, 31, 56, 0.88);
  box-shadow: 0 24px 72px rgba(0, 113, 227, 0.18);
}

.is-ipad-device .platform-recommended {
  display: inline-flex;
}

.device-dialog {
  width: min(440px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid rgba(41, 151, 255, 0.42);
  border-radius: 20px;
  background: #091525;
  color: #f7f8fb;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.58);
}

.device-dialog::backdrop {
  background: rgba(0, 4, 10, 0.76);
  backdrop-filter: blur(8px);
}

.device-dialog form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.device-dialog-eyebrow {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.device-dialog h2,
.device-dialog p {
  margin: 0;
}

.device-dialog h2 {
  font-size: 27px;
}

.device-dialog p {
  color: rgba(247, 248, 251, 0.7);
  line-height: 1.75;
}

.device-dialog .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.platform-copy {
  display: grid;
  gap: 7px;
}

.platform-copy strong {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
}

.platform-copy small {
  color: var(--muted);
  font-size: 14px;
}

.platform-copy em {
  margin-top: 4px;
  color: var(--blue-bright);
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
}

.download-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(41, 151, 255, 0.4);
  border-radius: 50%;
  color: var(--blue-bright);
  font-size: 20px;
}

.download-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
  line-height: 1.65;
}

.download-notes strong {
  color: rgba(247, 248, 251, 0.8);
}

.download-notes a {
  color: var(--blue-bright);
  white-space: nowrap;
}

.mac-install-help {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(41, 151, 255, 0.28);
  border-radius: 14px;
  background: rgba(8, 18, 31, 0.76);
}

.mac-install-help summary {
  display: flex;
  min-height: 64px;
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(247, 248, 251, 0.92);
  cursor: pointer;
  list-style: none;
}

.mac-install-help summary::-webkit-details-marker {
  display: none;
}

.mac-install-help summary::after {
  color: var(--blue-bright);
  font-size: 22px;
  content: "+";
}

.mac-install-help[open] summary::after {
  content: "−";
}

.mac-install-help summary span {
  font-size: 15px;
  font-weight: 720;
}

.mac-install-help summary small {
  margin-left: auto;
  color: var(--blue-bright);
  font-size: 12px;
}

.mac-install-help-body {
  display: grid;
  gap: 18px;
  padding: 0 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 248, 251, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.mac-install-warning {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid #ffbf47;
  background: rgba(255, 191, 71, 0.07);
}

.mac-install-help ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 24px;
}

.mac-install-terminal {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.34);
}

.mac-install-terminal code {
  display: block;
  padding: 12px 14px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #c8e8ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  white-space: nowrap;
}

.mac-install-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.download-footer {
  position: relative;
}

@media (max-width: 1120px) {
  .download-shell {
    grid-template-columns: 1fr;
    width: min(780px, calc(100% - 48px));
    gap: 48px;
  }

  .download-intro h1 br {
    display: none;
  }

  .download-notes {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .download-shell {
    width: calc(100% - 36px);
    padding: 48px 0 44px;
  }

  .download-mark {
    width: 110px;
    height: 70px;
  }

  .download-intro h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .platform-download {
    grid-template-columns: 74px minmax(0, 1fr) 34px;
    gap: 16px;
    min-height: 112px;
    padding: 16px;
  }

  .platform-orb {
    width: 74px;
    height: 74px;
  }

  .platform-orb img {
    width: 42px;
    height: 42px;
  }

  .platform-apple .platform-orb img,
  .platform-intel .platform-orb img,
  .platform-ipad .platform-orb img {
    width: 36px;
    height: 36px;
  }

  .platform-copy strong {
    font-size: 19px;
  }

  .platform-copy small {
    font-size: 12px;
  }

  .download-arrow {
    width: 32px;
    height: 32px;
  }

  .download-notes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mac-install-help summary {
    align-items: flex-start;
  }

  .mac-install-help summary small {
    display: none;
  }

  .mac-install-help-body {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mac-install-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-download {
    transition: none;
  }
}

/* Keep editorial knowledge pages single-column after the unified layout overrides. */
@media (max-width: 980px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
