:root {
  --blue: #0b64f4;
  --blue-dark: #063fb1;
  --ink: #101522;
  --muted: #5c6575;
  --line: #e6eaf1;
  --panel: #ffffff;
  --soft: #f5f8fc;
  --green: #16a06b;
  --purple: #6d53d9;
  --amber: #d99012;
  --red: #f04b2f;
  --shadow: 0 18px 60px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #fff;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #070d19;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 86px;
  height: 48px;
  color: var(--ink);
  font-weight: 900;
  line-height: 0.9;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reveal-section {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-section.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 750;
}

.header-cta,
.primary-btn {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(11, 100, 244, 0.24);
}

.secondary-btn {
  color: var(--ink);
  background: #fff;
  border-color: #aeb7c7;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: 640px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  z-index: 3;
  min-width: 0;
  align-self: center;
  padding: 70px clamp(30px, 4vw, 58px) 70px clamp(24px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-text {
  max-width: 500px;
  color: #3d4655;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 38px;
}

.chat-icon {
  width: 15px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-radius: 5px;
  position: relative;
}

.chat-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -5px;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  background: inherit;
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #3d4655;
}

.faces {
  display: flex;
}

.faces img {
  width: 30px;
  height: 30px;
  margin-right: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  background: #d9e2ef;
}

.faces img:nth-child(1) {
  object-position: 50% 20%;
}

.faces img:nth-child(2) {
  object-position: 50% 24%;
}

.faces img:nth-child(3) {
  object-position: 50% 18%;
}

.faces img:nth-child(4) {
  object-position: 50% 20%;
}

.stars {
  color: #f6a400;
  white-space: nowrap;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 640px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dispatch {
  padding: 70px clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.proof h2,
.pricing h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}

.section-heading p,
.proof p,
.pricing p {
  color: var(--muted);
  line-height: 1.7;
}

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

.nerd-card {
  display: grid;
  position: relative;
  min-height: 270px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
  overflow: hidden;
}

.nerd-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(11, 100, 244, 0), rgba(11, 100, 244, 0.8), rgba(11, 100, 244, 0));
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.nerd-card:hover {
  transform: translateY(-8px);
  border-color: #b7cff8;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 22px 64px rgba(17, 24, 39, 0.12);
}

.nerd-card:hover::before,
.nerd-card:focus-within::before {
  opacity: 1;
  transform: translateY(0);
}

.nerd-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    background 240ms ease;
}

.nerd-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.nerd-card:hover .nerd-icon,
.nerd-card:focus-within .nerd-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 26px rgba(11, 100, 244, 0.14);
}

.nerd-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.nerd-card p {
  min-height: 78px;
  color: var(--muted);
  line-height: 1.6;
}

.nerd-card button {
  align-self: end;
  justify-self: start;
  border: 0;
  padding: 0;
  color: currentColor;
  background: none;
  font-weight: 800;
}

.nerd-card button span {
  display: inline-block;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nerd-card:hover button span,
.nerd-card:focus-within button span {
  transform: translateX(4px);
}

.conversion .nerd-icon {
  color: var(--green);
  background: #daf5e9;
}

.systems .nerd-icon {
  color: var(--purple);
  background: #ece8ff;
}

.integration .nerd-icon {
  color: var(--amber);
  background: #fff0bf;
}

.operator .nerd-icon {
  color: var(--red);
  background: #ffe3da;
}

.service-desk {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 78px clamp(20px, 4vw, 56px);
  background:
    linear-gradient(180deg, #f6f9fd 0%, #eef4fb 100%);
}

.service-copy {
  position: sticky;
  top: 112px;
  max-width: 620px;
}

.service-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.service-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.dispatch-board {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #dce5f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.board-top strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.board-top strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.ticket {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.ticket.active {
  border-color: rgba(11, 100, 244, 0.38);
  background: #eef5ff;
}

.ticket-status {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticket h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.ticket p {
  margin: 0;
  color: var(--muted);
}

.ticket-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.ticket-meta div {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(216, 226, 240, 0.9);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
}

.ticket-meta dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.board-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.board-status div {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.board-status strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
}

.board-status span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.tutorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 78px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.tutorial-copy {
  max-width: 520px;
}

.tutorial-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}

.tutorial-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.tutorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tutorial-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d5dfef;
  border-radius: 999px;
  color: #445069;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 800;
}

.tutorial-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tutorial-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #cbd4e3;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.tutorial-control:hover {
  transform: translateY(-1px);
  border-color: #bfd0ec;
}

.tutorial-control.active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.tutorial-stage {
  position: relative;
  min-height: 530px;
}

.tutorial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  box-shadow: var(--shadow);
}

.tutorial-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tutorial-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tutorial-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(6, 12, 24, 0) 0%, rgba(6, 12, 24, 0.82) 100%);
}

.tutorial-slide div {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(22px, 4vw, 40px);
  color: #fff;
}

.tutorial-slide span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9fc5ff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tutorial-slide h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.08;
}

.tutorial-slide p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.flow {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 78px clamp(20px, 4vw, 56px);
  background: #fff;
}

.flow-copy {
  position: sticky;
  top: 112px;
}

.flow-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.flow-copy p {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.flow-copy .primary-btn {
  margin-top: 12px;
}

.flow-track {
  position: relative;
  display: grid;
  gap: 16px;
}

.flow-track::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 35px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), #dce7f7);
}

.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
}

.flow-card:first-child {
  border-color: rgba(11, 100, 244, 0.36);
  background: #eef5ff;
}

.flow-card span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.flow-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.3fr;
  gap: 20px;
  align-items: stretch;
  margin: 0 clamp(20px, 4vw, 56px) 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric,
blockquote {
  position: relative;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 38px;
  font-variant-numeric: tabular-nums;
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}

.metric strong.frame-tick {
  opacity: 0.72;
  transform: translateY(-2px);
}

.metric span,
blockquote {
  color: var(--muted);
  line-height: 1.55;
}

blockquote p {
  color: var(--ink);
  font-size: 18px;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

cite {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-style: normal;
}

cite img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 52% 22%;
}

.owner-proof.switching p,
.owner-proof.switching cite {
  opacity: 0.35;
  transform: translateY(4px);
}

.owner-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.owner-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8d1df;
}

.owner-dots button.active {
  background: var(--blue);
}

.pricing {
  display: grid;
  gap: 28px;
  margin: 0 clamp(20px, 4vw, 56px) 48px;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 248, 252, 0.94), rgba(255, 255, 255, 0.98)),
    #f6f8fc;
}

.pricing-intro {
  max-width: 870px;
}

.pricing-intro h2 {
  max-width: 760px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.04);
}

.pricing-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.12;
}

.pricing-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.pricing-principles div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #fff;
}

.pricing-principles strong {
  font-size: 17px;
}

.pricing-principles span {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 54px clamp(20px, 4vw, 56px);
  color: #fff;
  background: #070d19;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  display: block;
  width: 132px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-cta p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

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

.footer-cta {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer-cta .primary-btn {
  color: #fff;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 13, 25, 0.98), rgba(14, 28, 53, 0.96)),
    #101522;
}

.about-hero .eyebrow {
  color: #72b7ff;
}

.about-hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.4vw, 92px);
}

.about-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 21px;
  line-height: 1.65;
}

.about-hero .secondary-btn {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.about-hero-lineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 44px;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.about-hero-lineup img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.about-hero-lineup img:nth-child(1),
.about-hero-lineup img:nth-child(4) {
  transform: translateY(28px);
}

.about-hero-lineup img:nth-child(1) {
  object-position: 48% 48%;
}

.about-hero-lineup img:nth-child(2) {
  object-position: 50% 42%;
}

.about-hero-lineup img:nth-child(3) {
  object-position: 50% 45%;
}

.about-hero-lineup img:nth-child(4) {
  object-position: 50% 42%;
}

.truth-section,
.movement-section,
.install-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(26px, 5vw, 80px);
  padding: 86px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.truth-section h2,
.movement-section h2,
.install-section h2,
.standard-section h2,
.belief-section h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
}

.truth-copy p,
.movement-copy p,
.install-section p,
.standard-copy p,
.belief-section p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.truth-copy p:first-child {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
}

.movement-section {
  align-items: center;
  background: var(--soft);
}

.movement-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.movement-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.mural-section {
  padding: clamp(28px, 5vw, 64px) clamp(20px, 5vw, 72px);
  background: #070d19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mural-section img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.standard-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 86px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.standard-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.standard-image img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.standard-copy {
  max-width: 720px;
}

.standard-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hiring-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hiring-lanes span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid #cfe0fb;
  border-radius: 999px;
  color: var(--blue);
  background: #f3f8ff;
  font-size: 13px;
  font-weight: 900;
}

.standard-copy li {
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}

.hiring-cta {
  width: fit-content;
  margin-top: 28px;
}

.install-section {
  background: #101522;
  color: #fff;
}

.install-section .eyebrow {
  color: #72b7ff;
}

.install-section p {
  color: rgba(255, 255, 255, 0.74);
}

.belief-section {
  padding: 110px clamp(20px, 5vw, 72px);
  text-align: center;
}

.belief-section h2,
.belief-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.belief-section .primary-btn {
  margin-top: 18px;
  text-decoration: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: start center;
  overflow-y: auto;
  padding: 22px;
  background: rgba(10, 16, 28, 0.62);
}

.modal.open {
  display: grid;
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: min(940px, 100%);
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 16, 28, 0.18);
  font-size: 24px;
}

.modal-aside {
  min-height: 520px;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(rgba(5, 13, 28, 0.68), rgba(5, 13, 28, 0.8)),
    url("enlanding page image.png") center / cover;
}

.modal-aside .eyebrow,
.modal-aside p {
  color: rgba(255, 255, 255, 0.78);
}

.modal-aside h2 {
  font-size: 40px;
}

.progress {
  height: 7px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
  transition: width 180ms ease;
}

.intake-form {
  display: grid;
  align-content: space-between;
  min-height: 520px;
  padding: 52px;
}

.question-step {
  display: none;
}

.question-step.active {
  display: block;
}

.question-step > label {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.2;
}

select,
textarea,
input[type="email"],
input[name="zip"] {
  width: 100%;
  border: 1px solid #cbd4e3;
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 12px;
}

textarea {
  resize: vertical;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.problem-grid {
  display: grid;
  gap: 12px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

.problem-card {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}

.problem-card:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 100, 244, 0.12);
}

.problem-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.problem-card strong {
  color: var(--ink);
  font-size: 16px;
}

.problem-card span {
  font-size: 14px;
  line-height: 1.45;
}

.choice-grid label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 650;
}

.choice-grid label:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 100, 244, 0.1);
}

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

.calendly-btn {
  width: fit-content;
  margin-top: 10px;
  text-decoration: none;
}

.completion-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 18px;
}

.booking-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  width: min(1100px, 100%);
  max-height: calc(100dvh - 44px);
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(6, 12, 24, 0.36);
}

.booking-aside {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(160deg, #070d19 0%, #0c1730 100%);
}

.booking-aside p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-summary {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.booking-summary span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.booking-form {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 0;
  overflow: auto;
  padding: 32px;
}

.booking-step {
  display: grid;
  gap: 12px;
}

.booking-step label,
.booking-fields label {
  font-size: 15px;
  font-weight: 800;
}

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

.booking-chip,
.booking-slot {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.booking-chip strong,
.booking-slot strong {
  color: var(--ink);
  font-size: 15px;
}

.booking-chip span,
.booking-slot span {
  color: var(--muted);
  font-size: 13px;
}

.booking-chip:hover,
.booking-slot:hover {
  transform: translateY(-2px);
  border-color: #bfd4f7;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.booking-chip.active,
.booking-slot.active {
  border-color: var(--blue);
  background: #eef5ff;
  box-shadow: 0 0 0 3px rgba(11, 100, 244, 0.08);
}

.booking-slot.unavailable {
  cursor: not-allowed;
  opacity: 0.5;
  background: #f7f8fb;
  border-style: dashed;
  box-shadow: none;
}

.booking-slot.unavailable:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

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

.booking-fields textarea,
.booking-fields input {
  width: 100%;
}

.booking-fields textarea,
#bookingCompany,
#bookingNotes {
  grid-column: 1 / -1;
}

.booking-confirmation {
  padding: 18px;
  border: 1px solid #d5e4fd;
  border-radius: 10px;
  background: #f7fbff;
}

.booking-confirmation h3 {
  margin-bottom: 8px;
}

.booking-actions {
  position: sticky;
  bottom: 0;
  z-index: 1;
  margin-top: 0;
  padding-top: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 22px);
}

.email-note {
  color: var(--muted);
  line-height: 1.5;
}

.diagnosis-output h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.diagnosis-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.diagnosis-stats span {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.diagnosis-stats strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

.diagnosis-output ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-shell {
  display: grid;
  gap: 26px;
  padding: 72px clamp(20px, 4vw, 56px);
}

.admin-copy {
  max-width: 760px;
}

.admin-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
}

.admin-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-toolbar input[type="date"] {
  width: auto;
  min-width: 220px;
}

.admin-status {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.admin-session {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.admin-session span {
  color: var(--text);
  font-weight: 700;
}

.auth-form {
  display: grid;
  gap: 10px;
  max-width: 420px;
}

.auth-form label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-form input[type="email"] {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  border-radius: 8px;
}

.auth-form button {
  justify-self: start;
}

.meeting-list {
  display: grid;
  gap: 16px;
}

.meeting-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.06);
}

.meeting-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.meeting-card-head h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

.meeting-card-head p {
  margin: 0;
  color: var(--muted);
}

.meeting-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meeting-status.booked {
  color: #0b64f4;
  background: #eef5ff;
}

.meeting-status.confirmed {
  color: #1f9d63;
  background: #ecfaf3;
}

.meeting-status.reschedule_requested {
  color: #b7791f;
  background: #fff7e9;
}

.meeting-status.closed {
  color: #5e6a82;
  background: #eef1f6;
}

.meeting-card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.meeting-card-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.meeting-card-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meeting-card-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.meeting-notes {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.meeting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .nerd-grid,
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .pricing-principles {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    grid-column: 1 / -1;
  }

  .meeting-card-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .service-desk,
  .tutorial,
  .flow,
  .site-footer,
  .about-hero,
  .truth-section,
  .movement-section,
  .mural-section,
  .standard-section,
  .install-section,
  .booking-panel,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: center;
  }

  .about-hero-lineup img:nth-child(1),
  .about-hero-lineup img:nth-child(4) {
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 48px 24px 24px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media::before {
    inset: -1px 0 auto 0;
    width: 100%;
    height: 38%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .modal-aside {
    min-height: 270px;
  }

  .booking-aside {
    min-height: 220px;
  }

  .intake-form {
    min-height: 420px;
    padding: 30px;
  }

  .booking-form {
    padding: 28px;
  }

  .tutorial-stage {
    min-height: 440px;
  }

  .flow-copy {
    position: static;
  }

  .standard-image img {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .brand {
    width: 72px;
    height: 42px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .pricing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

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

  .dispatch,
  .flow,
  .service-desk,
  .tutorial,
  .site-footer,
  .truth-section,
  .movement-section,
  .mural-section,
  .install-section,
  .standard-section,
  .belief-section {
    padding: 52px 18px;
  }

  .booking-day-grid,
  .booking-time-grid,
  .booking-fields {
    grid-template-columns: 1fr;
  }

  .meeting-card-meta {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 52px 18px;
  }

  .about-hero-lineup {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 18px;
  }

  .about-hero p,
  .truth-copy p,
  .movement-copy p,
  .standard-copy p,
  .install-section p,
  .belief-section p {
    font-size: 17px;
  }

  .standard-image img {
    min-height: 320px;
  }

  .flow-card {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .flow-card span {
    width: 42px;
    height: 42px;
  }

  .flow-track::before {
    left: 39px;
  }

  .pricing,
  .proof {
    margin-left: 18px;
    margin-right: 18px;
  }

  .modal {
    padding: 10px;
  }

  .modal-aside,
  .intake-form {
    padding: 26px;
  }

  .question-step label {
    font-size: 21px;
  }

  .contact-fields,
  .diagnosis-stats {
    grid-template-columns: 1fr;
  }

  .tutorial-stage {
    min-height: 430px;
  }

  .tutorial-controls {
    flex-wrap: wrap;
  }

  .board-status,
  .ticket-meta {
    grid-template-columns: 1fr;
  }
}
