@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&family=Roboto+Condensed:ital,wght@0,600;0,700;1,700&display=swap");

:root {
  --ink: #06245f;
  --ink-soft: #0b3475;
  --paper: #fcf9f3;
  --concrete: #edf6f5;
  --muted: #617082;
  --line: #cbd9dc;
  --acid: #0dc3d2;
  --cyan: #0dc3d2;
  --cyan-soft: #a6edf0;
  --navy: #06245f;
  --amber: #ffb766;
  --shell: min(1240px, calc(100vw - 64px));
  --display: "Roboto Condensed", "Arial Narrow", sans-serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.mono {
  font-family: var(--mono);
  letter-spacing: .045em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--acid);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto 20px auto;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.brand i {
  display: block;
  width: 20px;
  height: 7px;
  background: var(--acid);
  transform: skewX(-20deg);
}

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  margin-left: 34px;
}

.button {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.7;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.button--accent {
  background: var(--acid);
}

.button--accent:hover {
  color: var(--paper);
  background: var(--ink);
}

.button--large {
  min-height: 62px;
  padding-inline: 28px;
  font-size: 15px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  overflow: hidden;
  padding-top: 74px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(23, 26, 24, .04) 50%, transparent calc(50% + 1px)),
    var(--paper);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 82px;
}

.hero-copy h1,
.section-heading h2,
.contrast-intro h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 710px;
  font-size: clamp(59px, 5.8vw, 93px);
  line-height: .88;
}

.hero-copy h1 em,
.section-heading h2 em {
  color: inherit;
  font-style: italic;
}

.hero-copy h1 em {
  display: inline-block;
  margin-top: 11px;
  padding: 3px 10px 8px 7px;
  background: var(--acid);
  box-decoration-break: clone;
}

.hero-lead {
  max-width: 600px;
  margin: 35px 0 0;
  color: #454a45;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  margin-left: 15px;
}

.hero-note {
  margin: 64px 0 0;
  padding-left: 21px;
  position: relative;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-note::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--acid);
  transform: translateY(-50%) rotate(45deg);
}

.shift-board {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--concrete);
}

.shift-board::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 86px;
  height: 86px;
  top: -22px;
  right: -22px;
  background:
    linear-gradient(90deg, transparent 47%, var(--ink) 48%, var(--ink) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--ink) 48%, var(--ink) 52%, transparent 53%);
  background-size: 14px 14px;
  opacity: .16;
}

.board-topline {
  min-height: 90px;
  padding: 21px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
}

.board-topline div {
  display: grid;
  gap: 7px;
}

.board-topline .mono {
  color: #9fa49e;
  font-size: 9px;
}

.board-topline strong {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
}

.live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c7cbc5;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(217, 255, 67, .15);
}

.board-columns,
.shift-row {
  display: grid;
  grid-template-columns: 1.4fr .82fr .9fr 1fr;
  gap: 12px;
  align-items: center;
}

.board-columns {
  padding: 12px 22px;
  color: var(--muted);
  background: var(--concrete);
  border-bottom: 1px solid var(--line);
  font-size: 8px;
}

.shift-row {
  min-height: 78px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.person {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
}

.person div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.person strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person small {
  color: var(--muted);
  font-size: 9px;
}

.equipment,
.shift-time {
  color: #4e534e;
}

.status {
  justify-self: start;
  padding: 6px 7px;
  border-left: 3px solid;
  font-family: var(--mono);
  font-size: 8px;
  white-space: nowrap;
}

.status--work {
  border-color: #9fbf2f;
  background: #f0f7d3;
}

.status--pause {
  border-color: #d7a73d;
  background: #fff4d7;
}

.status--done {
  border-color: #8f958f;
  background: var(--concrete);
}

.board-summary {
  padding: 24px 22px;
  background: #f8f8f5;
}

.board-summary > span {
  color: var(--muted);
  font-size: 8px;
}

.summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.summary-list span {
  padding: 5px 8px;
  border: 1px solid #c5c9c1;
  font-size: 8px;
  font-weight: 600;
}

.hero-ticker {
  width: 100%;
  overflow: hidden;
  color: var(--acid);
  background: var(--ink);
}

.hero-ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 14px 0;
  animation: ticker 32s linear infinite;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
}

.hero-ticker b {
  font-size: 10px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.25fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 62px;
}

.section-index {
  align-self: start;
  padding-top: 9px;
  color: var(--muted);
  font-size: 10px;
}

.section-heading h2,
.contrast-intro h2,
.contact h2 {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .94;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.workflow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.workflow-item {
  min-height: 410px;
  display: grid;
  grid-template-columns: .42fr 1.05fr 1.8fr;
  gap: 40px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  align-self: start;
  font-size: 12px;
}

.step-copy h3 {
  max-width: 340px;
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.step-copy p {
  max-width: 340px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.telegram-demo {
  width: 302px;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #e8efed;
  box-shadow: 9px 9px 0 var(--acid);
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--paper);
  border-bottom: 1px solid #d4ddda;
}

.bot-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--display);
  font-weight: 700;
}

.phone-head div {
  display: grid;
  gap: 2px;
}

.phone-head strong {
  font-size: 11px;
}

.phone-head small {
  color: var(--muted);
  font-size: 8px;
}

.phone-head > .mono {
  margin-left: auto;
  font-size: 10px;
}

.chat-date {
  width: fit-content;
  margin: 12px auto;
  padding: 3px 6px;
  color: #60706b;
  background: rgba(255, 255, 255, .72);
  font-size: 7px;
}

.chat-message {
  width: 73%;
  margin: 0 12px 12px auto;
  padding: 12px;
  display: grid;
  gap: 5px;
  background: #d9ffc8;
  border-radius: 9px 9px 2px 9px;
  font-size: 9px;
}

.chat-message strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.chat-message time {
  justify-self: end;
  color: #72826c;
  font-size: 7px;
}

.bot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #cfd8d5;
  border-top: 1px solid #cfd8d5;
}

.bot-actions button {
  padding: 12px;
  color: #2879a2;
  background: var(--paper);
  border: 0;
  font-size: 9px;
  font-weight: 700;
}

.manager-view {
  border: 1px solid var(--ink);
  box-shadow: 9px 9px 0 var(--concrete);
}

.manager-head {
  min-height: 65px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.manager-head > span {
  font-size: 9px;
}

.manager-head div {
  display: flex;
  gap: 17px;
  color: #b9bdb8;
  font-size: 8px;
}

.manager-head div span:nth-child(2) {
  color: var(--acid);
}

.manager-line {
  min-height: 52px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: .5fr 1.2fr 1.4fr 8px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.manager-line:last-child {
  border: 0;
}

.manager-line b {
  font-family: var(--mono);
  font-size: 9px;
}

.manager-line span:nth-child(3) {
  color: var(--muted);
}

.line-state {
  width: 7px;
  height: 7px;
  background: #a7aca6;
}

.line-state--lime {
  background: #abd030;
}

.line-state--amber {
  background: var(--amber);
}

.report-demo {
  border: 1px solid var(--ink);
  box-shadow: 9px 9px 0 var(--concrete);
}

.report-head {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.file-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: #267451;
  font-family: var(--display);
  font-weight: 700;
}

.report-head div {
  display: grid;
  gap: 3px;
}

.report-head strong {
  font-size: 11px;
}

.report-head small {
  color: var(--muted);
  font-size: 8px;
}

.report-head svg {
  width: 18px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

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

.report-grid span,
.report-grid b {
  min-height: 35px;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 7px;
}

.report-grid span {
  color: var(--muted);
  background: var(--concrete);
}

.report-grid b {
  font-weight: 400;
}

.report-grid > :nth-child(4n) {
  border-right: 0;
}

.report-grid > :nth-last-child(-n + 4) {
  border-bottom: 0;
}

.section--dark {
  color: var(--paper);
  background: var(--ink);
}

.section-heading--light .section-index,
.section-heading--light > p {
  color: #9ca19b;
}

.section-heading--light h2 em {
  color: var(--acid);
}

.capability-ledger {
  border-top: 1px solid #50554f;
}

.ledger-row {
  min-height: 120px;
  display: grid;
  grid-template-columns: .55fr 1.25fr 1.35fr .25fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid #3e433e;
  transition: color .25s ease, background .25s ease;
}

.ledger-row:hover {
  color: var(--ink);
  background: var(--acid);
}

.ledger-number {
  color: #868b85;
  font-size: 10px;
}

.ledger-row:hover .ledger-number {
  color: var(--ink);
}

.ledger-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.ledger-row p {
  max-width: 400px;
  margin: 0;
  color: #aeb2ad;
  font-size: 12px;
  line-height: 1.6;
}

.ledger-row:hover p {
  color: #363a36;
}

.ledger-sign {
  justify-self: end;
  font-size: 29px;
}

.contrast {
  background: #f4f5f1;
}

.contrast-grid {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 100px;
}

.contrast-intro .section-index {
  display: block;
  margin-bottom: 42px;
}

.contrast-list {
  border-top: 1px solid var(--ink);
}

.contrast-list > div {
  min-height: 115px;
  display: grid;
  grid-template-columns: 28px 1fr 40px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.contrast-list p,
.contrast-list strong {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.contrast-list p {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.cross {
  font-size: 23px;
}

.arrow {
  color: var(--muted);
}

.teams {
  overflow: hidden;
}

.section-heading--compact {
  grid-template-columns: .5fr 1.6fr;
}

.section-heading--compact h2 {
  grid-column: 2;
}

.team-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.team-rail > div {
  min-height: 270px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
  transition: color .25s ease, background .25s ease;
}

.team-rail > div:last-child {
  border: 0;
}

.team-rail > div:hover {
  background: var(--acid);
}

.team-rail span {
  font-size: 9px;
}

.team-rail strong {
  font-family: var(--display);
  font-size: 31px;
  line-height: .98;
  text-transform: uppercase;
}

.contact {
  background: var(--acid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 100px;
  align-items: end;
}

.contact .section-index {
  display: block;
  margin-bottom: 30px;
  color: #50583a;
}

.contact h2 {
  font-size: clamp(68px, 8vw, 120px);
  line-height: .82;
}

.contact-copy p {
  max-width: 420px;
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
}

.contact-copy small {
  display: block;
  margin-top: 14px;
  color: #50583a;
  font-family: var(--mono);
  font-size: 9px;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-inner {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.brand--footer i {
  background: var(--acid);
}

.footer-inner p,
.footer-inner > div {
  color: #989d97;
  font-size: 11px;
}

.footer-inner > div {
  display: flex;
  justify-content: space-between;
}

.footer-inner a:hover {
  color: var(--acid);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .shift-board {
    width: min(100%, 720px);
    justify-self: end;
  }

  .section-heading {
    grid-template-columns: .6fr 1.8fr;
  }

  .section-heading > p {
    grid-column: 2;
    max-width: 520px;
  }

  .workflow-item {
    grid-template-columns: .2fr 1fr 1.4fr;
  }

  .contrast-grid {
    gap: 50px;
  }

  .team-rail strong {
    font-size: 25px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  html {
    scroll-padding-top: 66px;
  }

  .header-inner {
    height: 66px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--ink);
    background: var(--paper);
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 66px 0 0;
    z-index: 49;
    height: calc(100dvh - 66px);
    padding: 32px 16px;
    display: grid;
    align-content: start;
    overflow-y: auto;
    background: var(--acid);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 19px 0;
    border-bottom: 1px solid rgba(23, 26, 24, .3);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero {
    padding-top: 42px;
    background: var(--paper);
  }

  .hero-grid {
    min-height: auto;
    gap: 48px;
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(47px, 14.5vw, 68px);
  }

  .hero-copy h1 em {
    margin-top: 7px;
    padding-right: 5px;
  }

  .hero-lead {
    margin-top: 27px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-note {
    margin-top: 40px;
    line-height: 1.5;
  }

  .shift-board {
    box-shadow: 8px 8px 0 var(--concrete);
  }

  .shift-board::before,
  .board-columns,
  .equipment {
    display: none;
  }

  .board-topline {
    min-height: 78px;
    padding: 17px;
  }

  .board-topline strong {
    font-size: 21px;
  }

  .shift-row {
    min-height: 74px;
    padding: 11px 14px;
    grid-template-columns: 1.45fr .85fr;
    gap: 8px;
  }

  .shift-time {
    display: none;
  }

  .status {
    justify-self: end;
    font-size: 7px;
  }

  .board-summary {
    padding: 18px 14px;
  }

  .hero-ticker > div {
    gap: 24px;
    font-size: 14px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading,
  .section-heading--compact {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 42px;
  }

  .section-heading h2,
  .section-heading--compact h2,
  .section-heading > p {
    grid-column: 1;
  }

  .section-heading h2,
  .contrast-intro h2 {
    font-size: 48px;
  }

  .section-index {
    padding-top: 0;
  }

  .workflow-item {
    min-height: 0;
    grid-template-columns: 37px 1fr;
    gap: 24px 13px;
    padding: 38px 0 46px;
  }

  .step-number {
    grid-row: span 2;
  }

  .step-copy h3 {
    font-size: 29px;
  }

  .step-copy p {
    margin-top: 17px;
  }

  .telegram-demo,
  .manager-view,
  .report-demo {
    width: 100%;
    grid-column: 1 / -1;
    box-shadow: 6px 6px 0 var(--concrete);
  }

  .telegram-demo {
    width: min(100%, 320px);
  }

  .manager-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .manager-line {
    padding-inline: 12px;
    grid-template-columns: .6fr 1.1fr 1.5fr 7px;
    gap: 8px;
  }

  .report-grid span,
  .report-grid b {
    padding-inline: 5px;
    font-size: 6px;
  }

  .ledger-row {
    min-height: 0;
    grid-template-columns: 36px 1fr 22px;
    gap: 16px;
    padding: 28px 0;
  }

  .ledger-row h3 {
    font-size: 26px;
  }

  .ledger-row p {
    grid-column: 2 / -1;
  }

  .ledger-sign {
    grid-column: 3;
    grid-row: 1;
  }

  .contrast-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contrast-intro .section-index {
    margin-bottom: 26px;
  }

  .contrast-list > div {
    grid-template-columns: 24px 1fr;
    gap: 8px 14px;
    padding: 23px 0;
  }

  .contrast-list .arrow {
    grid-column: 1;
  }

  .contrast-list strong {
    grid-column: 2;
  }

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

  .team-rail > div {
    min-height: 190px;
    padding: 18px;
    border-bottom: 1px solid var(--ink);
  }

  .team-rail > div:nth-child(2) {
    border-right: 0;
  }

  .team-rail > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .team-rail strong {
    font-size: 23px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact h2 {
    font-size: clamp(62px, 19vw, 90px);
  }

  .contact-copy .button {
    width: 100%;
  }

  .footer-inner {
    min-height: 230px;
    grid-template-columns: 1fr;
    gap: 15px;
    align-content: center;
  }

  .footer-inner p {
    margin: 5px 0 18px;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 17px;
  }

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

  .live {
    font-size: 7px;
  }

  .person strong {
    font-size: 10px;
  }

  .status {
    padding-inline: 4px;
  }

  .manager-line {
    font-size: 8px;
  }

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

  .team-rail > div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--ink) !important;
  }

  .team-rail > div:last-child {
    border-bottom: 0 !important;
  }
}

/* Brand direction: orbit of a working shift */
.site-header {
  background: rgba(252, 249, 243, .9);
  box-shadow: 0 10px 40px rgba(6, 36, 95, 0);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(6, 36, 95, .08);
}

.brand {
  display: block;
  width: 238px;
  height: 52px;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav a::after {
  height: 2px;
  background: var(--cyan);
}

.button {
  border-radius: 999px;
  border-color: var(--navy);
}

.button--dark {
  background: var(--navy);
}

.button--dark:hover {
  color: var(--navy);
  background: var(--cyan);
}

.button--accent {
  color: white;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 14px 32px rgba(13, 195, 210, .22);
}

.button--accent:hover {
  color: white;
  background: var(--navy);
}

.hero {
  position: relative;
  padding-top: 50px;
  background:
    linear-gradient(rgba(6, 36, 95, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 36, 95, .045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -360px;
  top: 40px;
  border: 68px solid rgba(13, 195, 210, .08);
  border-radius: 50%;
}

.hero-grid {
  min-height: 690px;
  grid-template-columns: .88fr 1.12fr;
  gap: 56px;
}

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

.hero-copy h1,
.section-heading h2,
.contrast-intro h2,
.contact h2 {
  font-family: var(--sans);
  color: var(--navy);
  letter-spacing: -.07em;
  text-transform: none;
}

.hero-copy h1 {
  font-size: clamp(66px, 6.7vw, 106px);
  line-height: .9;
}

.hero-copy h1 em {
  margin-top: 8px;
  padding: 0;
  color: var(--cyan);
  background: none;
  font-style: normal;
}

.hero-lead {
  max-width: 540px;
  color: #43536a;
}

.hero-note::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(13, 195, 210, .12);
}

.shift-visual {
  min-height: 590px;
  position: relative;
  display: grid;
  align-items: end;
  perspective: 1200px;
}

.orbit-scene {
  position: absolute;
  z-index: 0;
  width: 510px;
  height: 510px;
  top: -34px;
  right: -36px;
  transform-style: preserve-3d;
  animation: orbitBreathe 7s ease-in-out infinite;
}

.orbit-scene > img {
  position: absolute;
  width: 220px;
  height: 220px;
  left: 145px;
  top: 130px;
  object-fit: contain;
  opacity: .82;
  filter: drop-shadow(0 32px 28px rgba(6, 36, 95, .14));
  transform: translateZ(42px);
}

.orbit-ring {
  position: absolute;
  inset: 72px;
  border: 24px solid rgba(13, 195, 210, .24);
  border-right-color: var(--cyan);
  border-bottom-color: var(--navy);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit-ring--back {
  transform: rotateX(68deg) rotateZ(-18deg) translateZ(-28px);
  box-shadow: 0 36px 50px rgba(6, 36, 95, .12);
}

.orbit-ring--front {
  inset: 112px;
  border-width: 10px;
  border-color: rgba(6, 36, 95, .2);
  border-left-color: var(--cyan);
  transform: rotateY(65deg) rotateZ(16deg) translateZ(34px);
}

.orbit-node {
  position: absolute;
  z-index: 2;
  padding: 8px 11px;
  color: white;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 12px 25px rgba(6, 36, 95, .18);
  font-size: 8px;
  white-space: nowrap;
}

.orbit-node::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.orbit-node--time {
  top: 95px;
  left: 30px;
  transform: translateZ(74px) rotate(-5deg);
}

.orbit-node--kpi {
  top: 188px;
  right: -4px;
  transform: translateZ(52px) rotate(5deg);
}

.orbit-node--shift {
  top: 318px;
  left: 54px;
  background: var(--cyan);
}

.shift-board {
  z-index: 3;
  width: 96%;
  margin: 0 0 10px auto;
  overflow: hidden;
  border-color: rgba(6, 36, 95, .42);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(6, 36, 95, .18);
  transform: rotateY(-4deg) rotateX(1.5deg) translateZ(20px);
  transform-origin: right bottom;
}

.shift-board::before {
  display: none;
}

.board-topline {
  background: linear-gradient(105deg, var(--navy), #0a438c);
}

.board-columns,
.board-summary {
  background: rgba(237, 246, 245, .94);
}

.avatar {
  border-radius: 50%;
  background: var(--navy);
}

.status {
  border: 0;
  border-radius: 999px;
}

.status--work {
  color: #075d68;
  background: #c9f5f2;
}

.status--pause {
  color: #7b4c09;
  background: #ffedcb;
}

.status--done {
  color: #4e5f72;
  background: #e5edf0;
}

.summary-list span {
  border-color: rgba(6, 36, 95, .2);
  border-radius: 999px;
}

.hero-ticker {
  color: white;
  background: var(--cyan);
  transform: rotate(-1deg) scale(1.01);
  transform-origin: center;
}

.hero-ticker > div {
  font-family: var(--sans);
}

.workflow {
  position: relative;
  overflow: hidden;
}

.workflow::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  max-width: 720px;
  max-height: 720px;
  right: -26vw;
  top: 250px;
  border: 1px dashed rgba(13, 195, 210, .38);
  border-radius: 50%;
}

.section-index {
  color: #248a98;
}

.workflow-item {
  position: relative;
}

.workflow-item::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: -4px;
  top: -5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px var(--paper);
}

.telegram-demo,
.manager-view,
.report-demo {
  overflow: hidden;
  border-color: rgba(6, 36, 95, .45);
  border-radius: 18px;
  box-shadow: 10px 12px 0 rgba(13, 195, 210, .15);
}

.bot-mark,
.manager-head {
  background: var(--navy);
}

.bot-mark {
  color: var(--cyan);
}

.chat-message {
  background: #c7f4f1;
}

.section--dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(13, 195, 210, .19), transparent 28%),
    var(--navy);
}

.section-heading--light h2 {
  color: white;
}

.section-heading--light h2 em {
  color: var(--cyan);
}

.ledger-row:hover {
  color: var(--navy);
  background: var(--cyan);
}

.contrast {
  background: #eaf6f5;
}

.team-rail > div {
  border-color: var(--navy);
}

.team-rail > div:nth-child(odd) {
  transform: translateY(18px);
}

.team-rail > div:hover {
  color: white;
  background: var(--navy);
  transform: translateY(-6px) rotate(-1deg);
}

.contact {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--cyan);
}

.contact-grid {
  position: relative;
  z-index: 2;
}

.contact h2 {
  color: white;
}

.contact .section-index,
.contact-copy small {
  color: #074c71;
}

.contact-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: -115px;
  opacity: .32;
  transform: rotate(-14deg);
}

.contact-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.4) brightness(4);
}

.contact-orbit i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .18);
}

.contact-orbit i:nth-of-type(1) { left: 12%; top: 44%; }
.contact-orbit i:nth-of-type(2) { right: 10%; top: 26%; }
.contact-orbit i:nth-of-type(3) { right: 22%; bottom: 12%; }

.site-footer {
  color: white;
  background: #041d4f;
}

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

.footer-brand {
  width: 170px;
  height: 122px;
  padding: 9px;
  display: block;
  border-radius: 26px;
  background: var(--paper);
  transform: rotate(-3deg);
  transition: transform .25s ease;
}

.footer-brand:hover {
  transform: rotate(0) scale(1.02);
}

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

.footer-inner p,
.footer-inner > div {
  color: #a9c5d5;
}

.footer-inner a:hover {
  color: var(--cyan);
}

@keyframes orbitBreathe {
  0%, 100% { transform: translateY(0) rotateZ(0); }
  50% { transform: translateY(-12px) rotateZ(2deg); }
}

@media (max-width: 1100px) {
  .brand {
    width: 205px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .shift-visual {
    width: min(100%, 760px);
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .brand {
    width: 178px;
    height: 44px;
  }

  .mobile-nav {
    color: white;
    background:
      radial-gradient(circle at 90% 15%, rgba(13, 195, 210, .95), transparent 30%),
      var(--navy);
  }

  .mobile-nav a {
    border-color: rgba(255, 255, 255, .2);
  }

  .hero {
    padding-top: 35px;
    background-size: 42px 42px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(51px, 14.5vw, 68px);
  }

  .shift-visual {
    min-height: 540px;
    width: 100%;
  }

  .orbit-scene {
    width: 360px;
    height: 360px;
    top: -8px;
    right: -35px;
  }

  .orbit-scene > img {
    width: 150px;
    height: 150px;
    left: 105px;
    top: 98px;
  }

  .orbit-ring {
    inset: 52px;
    border-width: 17px;
  }

  .orbit-ring--front {
    inset: 85px;
    border-width: 8px;
  }

  .orbit-node--time { top: 57px; left: 8px; }
  .orbit-node--kpi { top: 140px; right: -1px; }
  .orbit-node--shift { top: 235px; left: 31px; }

  .shift-board {
    width: 100%;
    margin-bottom: 0;
    border-radius: 18px;
    transform: none;
  }

  .team-rail > div:nth-child(odd) {
    transform: none;
  }

  .contact-orbit {
    width: 360px;
    height: 360px;
    right: -160px;
    top: -30px;
  }

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

  .footer-brand {
    width: 142px;
    height: 102px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
