: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 moved to ::before so it does NOT create a containing
     block for position:fixed children (the mobile nav overlay) */
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.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;
  text-decoration: none;
}

.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(160px, 0.7fr) minmax(200px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding: 54px clamp(20px, 4vw, 56px) 32px;
  color: #fff;
  background: #070d19;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  text-decoration: none;
  word-break: break-all;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 960px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-nav,
  .footer-contact,
  .footer-cta {
    grid-column: 1 / -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,
.thesis-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,
.thesis-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,
.thesis-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.truth-copy p:first-child,
.thesis-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: 20;
  pointer-events: auto;
  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;
}

[hidden] {
  display: none !important;
}

.legal-page {
  padding: 64px clamp(20px, 5vw, 80px) 96px;
  background: #fff;
}

.legal-shell {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}

.legal-shell h1 {
  margin: 8px 0 4px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
}

.legal-shell h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.legal-shell p,
.legal-shell ul {
  margin: 0 0 14px;
}

.legal-shell ul {
  padding-left: 22px;
}

.legal-shell li {
  margin-bottom: 8px;
}

.legal-shell code {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(11, 100, 244, 0.08);
  color: var(--blue);
  font-size: 0.92em;
}

.legal-shell a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-shell a:hover {
  color: var(--blue-dark);
}

.legal-shell .eyebrow {
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px !important;
}

.booking-form {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 0;
  max-height: calc(100dvh - 44px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  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;
}

.field-note {
  margin: -8px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.nerd-apply-confirmation {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f5f8fc;
}

.nerd-apply-confirmation h3 {
  margin: 0;
  font-size: 22px;
}

.nerd-apply-confirmation p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
}

.link-btn:hover {
  color: var(--fg);
}

.result-restart {
  margin-top: 4px;
  font-size: 13px;
}

.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-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
}

.admin-tab {
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-tab:hover {
  color: #fff;
}

.admin-tab.active {
  background: #242424;
  border-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: #242424;
  color: #F0FF41;
  position: relative;
  top: 1px;
}

.admin-panel {
  display: grid;
  gap: 20px;
}

.admin-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 28px;
}

.count-total {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 46, 215, 0.18);
  color: #c8d2ff;
  font-size: 13px;
  font-weight: 800;
}

.count-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-transform: capitalize;
}

.count-chip strong {
  color: #F0FF41;
  margin-right: 6px;
}

.admin-toolbar select {
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: var(--panel, #fff);
  color: var(--ink, #101522);
  font: inherit;
}

body.admin-page .admin-toolbar select {
  background: #242424;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color-scheme: dark;
}

.application-narrative {
  white-space: pre-wrap;
  line-height: 1.55;
}

body.admin-page .meeting-status.new {
  background: rgba(240, 255, 65, 0.14);
  color: #F0FF41;
}

body.admin-page .meeting-status.reviewed {
  background: rgba(200, 200, 200, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

body.admin-page .meeting-status.routed,
body.admin-page .meeting-status.contacted {
  background: rgba(23, 46, 215, 0.3);
  color: #c8d2ff;
}

body.admin-page .meeting-status.accepted {
  background: rgba(46, 204, 113, 0.2);
  color: #6de9a4;
}

body.admin-page .meeting-status.declined {
  background: rgba(231, 76, 60, 0.2);
  color: #ff9a8f;
}

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

.auth-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.auth-success {
  display: grid;
  gap: 12px;
  max-width: 480px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(23, 46, 215, 0.12);
}

.auth-success h2 {
  margin: 0;
  font-size: 26px;
  color: #FFFFFF;
}

.auth-success p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.auth-success .eyebrow {
  margin: 0;
  color: #F0FF41;
}

.auth-success-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.text-btn {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: #F0FF41;
  text-decoration: underline;
  cursor: pointer;
}

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

/* ─── Hamburger (desktop: hidden) ───────────────────────────────────────── */
.nav-toggle {
  display: none;
}

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

  .header-cta {
    display: none;
  }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Nav hidden by default on mobile */
  .main-nav {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #000000;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Opened via body class */
  body.nav-open .main-nav {
    display: flex;
  }

  /* Nav links */
  .main-nav > a:not(.nav-mobile-cta) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 0 28px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #1c2030;
    -webkit-tap-highlight-color: transparent;
  }

  .main-nav > a:not(.nav-mobile-cta):active {
    background: #10151B;
    color: #F0FF41;
  }

  /* CTA inside overlay */
  .nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 24px 0;
    min-height: 56px;
    border-radius: 10px;
    background: #172ED7;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-mobile-cta:active {
    background: #1228b0;
  }

  .hero,
  .service-desk,
  .tutorial,
  .flow,
  .site-footer,
  .about-hero,
  .truth-section,
  .movement-section,
  .mural-section,
  .standard-section,
  .install-section,
  .thesis-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,
  .thesis-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;
  }
}

/* Internal admin pages — brand dark theme */
body.admin-page {
  background: #10151B;
  color: #FFFFFF;
}

body.admin-page .site-header {
  background: #000000;
  border-bottom: 1px solid rgba(240, 255, 65, 0.12);
}

body.admin-page .site-header .main-nav a,
body.admin-page .site-header .header-cta {
  color: rgba(255, 255, 255, 0.78);
}

body.admin-page .site-header .main-nav a[aria-current="page"] {
  color: #F0FF41;
}

body.admin-page .admin-shell {
  background: transparent;
}

body.admin-page .admin-copy h1 {
  color: #FFFFFF;
}

body.admin-page .admin-copy p,
body.admin-page .admin-session,
body.admin-page .admin-status {
  color: rgba(255, 255, 255, 0.72);
}

body.admin-page .admin-session span {
  color: #FFFFFF;
}

body.admin-page .eyebrow {
  color: #F0FF41;
}

body.admin-page .auth-form label {
  color: rgba(255, 255, 255, 0.72);
}

body.admin-page .auth-form input[type="email"] {
  background: #242424;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.admin-page .auth-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

body.admin-page .primary-btn {
  background: #172ED7;
  color: #FFFFFF;
  border: none;
}

body.admin-page .primary-btn:hover,
body.admin-page .primary-btn:focus-visible {
  background: #0f22a8;
}

body.admin-page .primary-btn:disabled {
  background: rgba(23, 46, 215, 0.35);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
}

body.admin-page .secondary-btn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.admin-page .secondary-btn:hover,
body.admin-page .secondary-btn:focus-visible {
  border-color: #F0FF41;
  color: #F0FF41;
}

body.admin-page .admin-toolbar input[type="date"] {
  background: #242424;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  color-scheme: dark;
}

body.admin-page .meeting-card {
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  box-shadow: none;
}

body.admin-page .meeting-card h3 {
  color: #FFFFFF;
}

body.admin-page .meeting-card-head p,
body.admin-page .meeting-card-meta dt,
body.admin-page .meeting-card-meta dd,
body.admin-page .meeting-notes {
  color: rgba(255, 255, 255, 0.72);
}

body.admin-page .meeting-card-meta dt {
  color: rgba(255, 255, 255, 0.5);
}

body.admin-page .meeting-card-meta div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.admin-page .meeting-card-meta dd {
  color: #FFFFFF;
}

body.admin-page .meeting-status {
  background: rgba(240, 255, 65, 0.14);
  color: #F0FF41;
}

body.admin-page .meeting-status.confirmed {
  background: rgba(23, 46, 215, 0.3);
  color: #c8d2ff;
}

body.admin-page .meeting-status.closed {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

body.admin-page .meeting-status.reschedule_requested {
  background: rgba(217, 144, 18, 0.22);
  color: #ffd27a;
}

body.admin-page .site-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.admin-page .site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

body.admin-page .site-footer a:hover {
  color: #F0FF41;
}

/* === Operator-bridge section (about.html) === */
.bridge-section {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  padding: 86px clamp(20px, 5vw, 72px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.bridge-intro {
  max-width: 880px;
}

.bridge-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
}

.bridge-intro p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

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

.bridge-pillar {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.04);
}

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

.bridge-pillar h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

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

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

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

@media (max-width: 620px) {
  .bridge-section {
    padding: 52px 18px;
  }

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

  .bridge-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* === Operator School (school.html) === */
.school-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 96px clamp(20px, 5vw, 72px) 78px;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  border-bottom: 1px solid var(--line);
}

.school-hero-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.school-hero-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  max-width: 560px;
}

.school-hero-copy .hero-actions {
  margin-top: 28px;
}

.school-hero-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 28px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.school-hero-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.school-hero-points li:last-child {
  border-bottom: none;
}

.school-hero-points li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 100, 244, 0.16);
}

.school-tiers {
  display: grid;
  gap: 28px;
  margin: 56px 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;
}

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

/* Single-tier layout (school.html — only the Apprentice card is publicly
   visible). Center the lone card at a comfortable max-width so it doesn't
   stretch absurdly wide on desktop and doesn't squeeze into 1/3 of the row. */
.tier-grid--single {
  grid-template-columns: minmax(0, min(520px, 100%));
  justify-content: center;
}

.tier-card {
  display: grid;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
}

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

.tier-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

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

.tier-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 18px;
  padding: 0;
  list-style: none;
}

.tier-card li {
  padding: 10px 14px;
  border-left: 3px solid var(--blue);
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}

.tier-card .primary-btn,
.tier-card .secondary-btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.tier-card--featured {
  position: relative;
  border-color: var(--blue);
  box-shadow: 0 22px 60px rgba(11, 100, 244, 0.18);
  transform: translateY(-6px);
}

.tier-card--featured::after {
  content: "Where you go deployable";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Single-tier mode: keep the blue border + shadow on the lone card (visual
   emphasis is still nice), but drop the lift and the comparison-only badge —
   neither makes sense when there's no second card to compare against. */
.tier-grid--single .tier-card--featured {
  transform: none;
}

.tier-grid--single .tier-card--featured::after {
  display: none;
}

@media (max-width: 1080px) {
  .school-hero {
    grid-template-columns: 1fr;
    padding: 64px clamp(20px, 5vw, 56px);
  }

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

  .tier-card--featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .school-hero,
  .school-tiers {
    padding: 52px 18px;
  }

  .school-tiers {
    margin: 32px 16px;
  }
}

/* === Fuel The Grid (grid.html) === */

/* Hero — dark electric panel, mirrors install/mural precedent */
.grid-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 540px;
  padding: 110px clamp(20px, 5vw, 72px) 96px;
  overflow: hidden;
  color: #fff;
  background: #050a14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(11, 100, 244, 0.28), transparent 55%),
    radial-gradient(circle at 82% 78%, rgba(240, 255, 65, 0.10), transparent 55%),
    linear-gradient(180deg, #060c19 0%, #02060d 100%);
}

.grid-hero-bg::before,
.grid-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(114, 183, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(114, 183, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}

.grid-hero-bg::after {
  background-size: 14px 14px;
  opacity: 0.4;
}

.grid-hero-copy {
  position: relative;
  max-width: 880px;
}

.grid-hero-copy .eyebrow {
  color: #f0ff41;
}

.grid-hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #fff;
}

.grid-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.7;
}

.grid-hero-copy .hero-actions {
  margin-top: 30px;
}

.grid-hero-anchor {
  margin: 22px 0 0;
  padding: 12px 0 12px 16px;
  max-width: 660px;
  border-left: 3px solid #f0ff41;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.6;
}

.grid-hero-anchor strong {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.005em;
}

.secondary-btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.secondary-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Live counter */
.grid-counter {
  display: grid;
  gap: 32px;
  padding: 86px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.grid-counter-intro {
  max-width: 720px;
}

.grid-counter-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
}

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

.counter-block {
  display: grid;
  gap: 10px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.counter-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counter-value {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

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

.grid-progress {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: var(--soft);
  overflow: hidden;
  border: 1px solid var(--line);
}

.grid-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, #2f7ff5 100%);
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.grid-progress-meta {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.grid-progress-meta strong {
  color: var(--ink);
  font-weight: 900;
}

.grid-progress-meta-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Countdown */
.countdown-section {
  display: grid;
  gap: 22px;
  padding: 82px clamp(20px, 5vw, 72px);
  background: #050a14;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.countdown-section .eyebrow {
  color: #f0ff41;
}

.countdown-section h2 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  color: #fff;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 18px auto 0;
}

.countdown-cell {
  display: grid;
  gap: 8px;
  padding: 26px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.countdown-cell span {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.countdown-cell label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.countdown.countdown--done span {
  color: #f0ff41;
}

.countdown-meta {
  margin: 14px auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* Pledge cards */
.pledge-section {
  display: grid;
  gap: 36px;
  padding: 96px clamp(20px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.pledge-intro {
  max-width: 820px;
}

.pledge-intro h2 {
  margin: 12px 0 14px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
}

.pledge-intro p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.pledge-card {
  display: grid;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pledge-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 18px 50px rgba(11, 100, 244, 0.14);
}

.pledge-amount {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pledge-tokens {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pledge-card .primary-btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin-top: 4px;
}

.pledge-card--featured {
  position: relative;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 22px 60px rgba(11, 100, 244, 0.16);
}

.pledge-card--featured::after {
  content: "One install fueled";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pledge-card--custom {
  background: #fff;
  border-style: dashed;
  border-color: rgba(11, 100, 244, 0.45);
}

.pledge-card--custom:hover {
  border-style: solid;
  border-color: var(--blue);
}

/* Grid Wall */
.grid-wall {
  display: grid;
  gap: 32px;
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.grid-wall-intro {
  max-width: 760px;
}

.grid-wall-intro h2 {
  margin: 12px 0 12px;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
}

.grid-wall-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.grid-wall-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--line);
}

.grid-wall-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 0.9fr) minmax(140px, 0.8fr) minmax(160px, 1.4fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
}

.grid-wall-name {
  font-weight: 900;
  color: var(--ink);
}

.grid-wall-city {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.grid-wall-tokens {
  color: var(--blue);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.grid-wall-msg {
  color: var(--ink);
  font-style: italic;
  font-size: 15px;
}

/* Why this matters */
.why-section {
  display: grid;
  gap: 36px;
  padding: 96px clamp(20px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.why-intro {
  max-width: 880px;
}

.why-intro h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
}

.why-intro p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

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

.why-pillar {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.why-pillar span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Disclaimer */
.grid-disclaimer {
  padding: 36px clamp(20px, 5vw, 72px);
  background: #f1f3f7;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}

.grid-disclaimer p {
  margin: 0 auto;
  max-width: 920px;
}

/* Responsive */
@media (max-width: 1080px) {
  .pledge-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .counter-blocks {
    grid-template-columns: 1fr;
  }

  .grid-wall-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 6px;
  }

  .grid-wall-msg {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .grid-hero {
    padding: 78px 18px 64px;
    min-height: auto;
  }

  .grid-counter,
  .countdown-section,
  .pledge-section,
  .grid-wall,
  .why-section {
    padding: 56px 18px;
  }

  .pledge-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .countdown-cell {
    padding: 18px 6px;
  }

  .countdown-cell span {
    font-size: 28px;
  }

  .grid-wall-row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .grid-wall-msg {
    grid-column: auto;
  }

  .grid-disclaimer {
    padding: 28px 18px;
  }
}

/* ─── Social Proof Carousel ──────────────────────────────────────────────── */
.social-carousel {
  background: #000000;
  padding: 100px 0 80px;
  overflow-x: clip;
}

.sc-header {
  text-align: center;
  padding: 0 24px 52px;
  max-width: 640px;
  margin: 0 auto;
}

.sc-header .eyebrow {
  color: #F0FF41;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sc-header h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sc-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
}

.sc-outer {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.sc-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
  cursor: grab;
}

.sc-track::-webkit-scrollbar {
  display: none;
}

.sc-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.sc-card {
  flex: 0 0 calc(33.333% - 22px);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #10151B;
  border: 1px solid #242424;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px #172ED7;
}

.sc-card img {
  width: 100%;
  height: auto;
  display: block;
}

.sc-arrow {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #F0FF41;
  background: transparent;
  color: #F0FF41;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  z-index: 2;
  padding: 0 0 2px;
  flex-shrink: 0;
}

.sc-arrow:hover {
  background: #F0FF41;
  color: #000000;
  transform: scale(1.1);
}

.sc-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none;
}

.sc-arrow.sc-prev { margin-right: 8px; }
.sc-arrow.sc-next { margin-left: 8px; }

.sc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 28px;
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #242424;
  cursor: pointer;
  transition: background 0.2s, width 0.25s;
  padding: 0;
}

.sc-dot.active {
  background: #F0FF41;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .sc-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 600px) {
  .social-carousel {
    padding: 64px 0 52px;
  }
  .sc-card {
    flex: 0 0 82vw;
  }
  .sc-arrow {
    display: none;
  }
  .sc-outer {
    padding: 0 12px;
  }
}

/* ─── Operator School Apply Form ─────────────────────────────────────────── */

/* Progress bar + labels */
.sa-progress {
  margin-top: 32px;
}
.sa-progress-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}
.sa-progress-track span {
  display: block;
  width: 33%;
  height: 100%;
  border-radius: inherit;
  background: #F0FF41;
  transition: width 240ms ease;
}
.sa-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Step label + heading */
.sa-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #172ED7;
  margin: 0 0 20px;
}
.sa-step-heading {
  font-size: 26px;
  font-weight: 850;
  color: #101522;
  line-height: 1.15;
  margin: 0 0 6px;
}
.sa-step-sub {
  font-size: 14px;
  color: #5c6575;
  margin: 0 0 20px;
}

/* Field wrapper */
.sa-field {
  margin-bottom: 20px;
}
.sa-field label,
.sa-field-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 8px;
}
.sa-field input[type="text"],
.sa-field input[type="email"],
.sa-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #dde3ee;
  border-radius: 8px;
  font-size: 15px;
  color: #101522;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.sa-field input:focus,
.sa-field textarea:focus {
  border-color: #172ED7;
  box-shadow: 0 0 0 3px rgba(23,46,215,0.1);
}
.sa-field input.sa-invalid,
.sa-field textarea.sa-invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.sa-field textarea {
  resize: none;
}

/* Inline error */
.sa-field-error {
  font-size: 13px;
  color: #e53e3e;
  font-weight: 600;
  margin: 5px 0 0;
  min-height: 18px;
}

/* Character counter */
.sa-char-counter {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: #9aa5b5;
  margin-top: 5px;
  font-variant-numeric: tabular-nums;
}
.sa-char-counter.sa-met { color: #38a169; }
.sa-char-counter.sa-over { color: #d97706; }
.sa-char-min { color: #9aa5b5; }
.sa-char-counter.sa-met .sa-char-min { display: none; }

/* Radio cards */
.sa-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sa-card-grid--row {
  grid-template-columns: repeat(4, 1fr);
}
.sa-card {
  position: relative;
  display: flex;
  padding: 12px 14px;
  border: 1.5px solid #dde3ee;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.sa-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.sa-card:has(input:checked) {
  border-color: #172ED7;
  background: #f4f6ff;
  box-shadow: 0 0 0 3px rgba(23,46,215,0.1);
}
.sa-card:hover:not(:has(input:checked)) {
  border-color: #b0bcda;
}
.sa-card-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sa-card-inner strong {
  font-size: 14px;
  font-weight: 700;
  color: #101522;
  line-height: 1.2;
}
.sa-card-inner span {
  font-size: 12px;
  color: #5c6575;
  line-height: 1.3;
}

/* Form actions */
.sa-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}

/* Mobile: full-screen modal */
@media (max-width: 860px) {
  #schoolApplyModal {
    padding: 0;
    place-items: stretch;
  }
  #schoolApplyModal .sa-panel {
    width: 100%;
    max-width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  #schoolApplyModal .sa-aside {
    min-height: auto;
    padding: 28px 24px 24px;
  }
  #schoolApplyModal .sa-form {
    min-height: auto;
    padding: 28px 24px 40px;
  }
  .sa-card-grid--row {
    grid-template-columns: repeat(2, 1fr);
  }
  .sa-step-heading {
    font-size: 22px;
  }
}

/* ─── Apply Complete Page ────────────────────────────────────────────────── */
.ac-page {
  background: #000;
}

.ac-main {
  min-height: calc(100dvh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px clamp(20px, 4vw, 48px) 80px;
}

.ac-shell {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* Top position display */
.ac-top {
  text-align: center;
  margin-bottom: 52px;
}

.ac-eyebrow {
  color: #F0FF41;
  margin-bottom: 16px;
}

.ac-position-label {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1;
}

.ac-position-number {
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 900;
  color: #F0FF41;
  line-height: 1;
  margin: 4px 0 8px;
  letter-spacing: -0.03em;
}

.ac-position-loading {
  color: rgba(255,255,255,0.3);
  font-size: 0.5em;
}

.ac-position-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 20px;
}

.ac-slots-note {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 16px;
}

/* Decision cards */
.ac-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ac-card {
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ac-card--primary {
  background: #10151B;
  border: 1px solid #172ED7;
  box-shadow: 0 0 40px rgba(23,46,215,0.15);
}

.ac-card--secondary {
  background: #10151B;
  border: 1px solid #242424;
}

.ac-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F0FF41;
  background: rgba(240,255,65,0.1);
  border: 1px solid rgba(240,255,65,0.25);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}

.ac-card-badge--muted {
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.ac-card-heading {
  font-size: 28px;
  font-weight: 850;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.1;
}

.ac-card-price {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ac-card-price span {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.ac-card-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0 0 24px;
}

.ac-card-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ac-card-perks li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}

.ac-card-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #F0FF41;
  font-weight: 700;
}

.ac-skip-btn {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
  margin-top: auto;
  background: #172ED7;
  box-shadow: 0 8px 24px rgba(23,46,215,0.3);
}

.ac-skip-btn:hover {
  background: #1228b0;
}

.ac-wait-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-top: auto;
}

.ac-wait-btn:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.ac-card-fine {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 12px 0 0;
}

.ac-error {
  margin-top: 12px;
  font-size: 13px;
  color: #fc8181;
  text-align: center;
}

.ac-error a {
  color: #fc8181;
}

/* Confirmed state */
.ac-confirmed {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.ac-confirmed-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(240,255,65,0.12);
  border: 2px solid #F0FF41;
  color: #F0FF41;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.ac-confirmed-heading {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ac-confirmed-body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 12px;
}

.ac-confirmed-position {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin: 0 0 36px;
}

.ac-confirmed-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 720px) {
  .ac-cards {
    grid-template-columns: 1fr;
  }
  .ac-card {
    padding: 28px 24px;
  }
  .ac-position-number {
    font-size: clamp(56px, 18vw, 96px);
  }
}
