: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;
}

.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 {
  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-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;
}

@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;
  }
}
