

@font-face {
  font-family: "Lexend";
  src: url("lexend.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lexend";
  src: url("lexend-ext.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #101623;
  --ink-soft: #4b5565;
  --muted: #8a93a5;
  --line: #e8ebf1;
  --paper: #ffffff;
  --paper-soft: #f7f8fb;
  --accent: #2e5fe8;
  --accent-soft: #e9eefd;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}
.nav {
  view-transition-name: site-nav;
}
.agenda-rail {
  view-transition-name: agenda-rail;
}
.footer {
  view-transition-name: site-footer;
}

::view-transition-old(root) {
  animation-duration: 0.22s;
}
::view-transition-new(root) {
  animation-duration: 0.28s;
}

::view-transition-group(site-nav),
::view-transition-group(agenda-rail),
::view-transition-group(site-footer) {
  animation-duration: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}
body {
  font-family:
    "Lexend",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 650;
}
h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 650;
}
h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

h2 + p,
h3 + p {
  margin-top: 14px;
}

.kicker {
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 16px;
}
.section-sub.center {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 18px;
  font: inherit;
  font-size: 14.5px;
  font-weight: 550;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn-lg {
  padding: 12px 26px;
  font-size: 15.5px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(46, 95, 232, 0.35);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}
.btn-ghost:hover {
  border-color: var(--ink);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 0 var(--line);
}

body:has(.agenda-rail) .nav.scrolled {
  box-shadow: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links > a,
.nav-trigger {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
}
.nav-links > a:hover,
.nav-trigger:hover {
  color: var(--ink);
}
.nav-links > a[aria-current="page"] {
  color: var(--ink);
}

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
}
.lang a {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
}
.lang a:hover {
  color: var(--ink);
}
.lang a[aria-current="true"] {
  background: var(--paper-soft);
  color: var(--ink);
  font-weight: 550;
}
@media (max-width: 860px) {
  .lang {
    align-self: flex-start;
    margin: 10px 8px 0;
  }
}

.nav-item {
  position: relative;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14.5px;
  cursor: pointer;
  padding: 0;
}
.nav-trigger svg {
  width: 11px;
  height: 11px;
  transition: transform 0.18s ease;
}
.nav-item.open .nav-trigger {
  color: var(--ink);
}
.nav-item.open .nav-trigger svg {
  transform: rotate(180deg);
}
.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 340px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(16, 22, 35, 0.3);
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s;
}
.nav-item.open .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  text-decoration: none;
}
.nav-panel a:hover {
  background: var(--paper-soft);
}
.nav-panel b {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
}
.nav-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.nav-panel .nav-panel-all {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 12px;
  border-radius: 0 0 9px 9px;
}

.nav-burger {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 7px 9px;
  cursor: pointer;
  color: var(--ink);
}
.nav-burger svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow-x: clip;
}
.hero-signals {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 520px;
  pointer-events: none;
}
.hero-signals path {
  fill: none;
  stroke: var(--accent);
}
.hero-signals path:nth-child(1) {
  stroke-width: 1.4;
  opacity: 0.07;
}
.hero-signals path:nth-child(2) {
  stroke-width: 2;
  opacity: 0.1;
}
.hero-signals path:nth-child(3) {
  stroke-width: 2.6;
  opacity: 0.13;
}
.hero-inner {
  position: relative;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5em;
}
.hero-sub {
  color: var(--ink-soft);
  max-width: 860px;
  margin: 5em auto 0;
  font-size: 18px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.cst {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: clamp(280px, 36vw, 400px);
  margin: 8px auto 0;
}
.cst-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(168px, 24vw, 262px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}
.cst-logo {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.cst-wordmark {
  display: none;
  font-size: clamp(30px, 9vw, 40px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.cst-logo circle {
  stroke: var(--ink);
  stroke-width: 5.5;
  fill: none;
}

.cst-word {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}
.cst-word span {
  display: inline-block;
  white-space: nowrap;
  font-size: 14.5px;
  font-weight: 550;
  color: var(--ink-soft);

  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 15px;
  box-shadow: 0 6px 18px -12px rgba(16, 22, 35, 0.4);
  opacity: 0;
  transform: scale(0.88);
  filter: blur(5px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.cst-word.on span {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);

  transition:
    opacity 0.34s ease-out,
    transform 0.42s cubic-bezier(0.18, 0.9, 0.28, 1.06),
    filter 0.34s ease-out;
}

.shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 24px 60px -24px rgba(16, 22, 35, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -24px rgba(16, 22, 35, 0.32);
}
.shot-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}
.shot-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}
.hero-shot {
  margin: 64px auto 0;
  max-width: 980px;
  will-change: transform;
}
.shot-wide {
  max-width: 980px;
  margin: 40px auto;
}

.shot-secondary {
  max-width: 720px;
  margin: 18px auto 0;
}

.wiki {
  padding: 110px 0 40px;
}
.wiki-stage {
  position: relative;
  margin-top: 48px;
  padding-bottom: 130px;
}
.wiki-shot-main {
  max-width: 880px;
}
.wiki-shot-editor {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: min(46%, 470px);
  transform: rotate(1.2deg);
}
.wiki-shot-editor:hover {
  transform: rotate(0deg) translateY(-4px);
}
.callout {
  position: absolute;
  max-width: 230px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 12px 30px -12px rgba(16, 22, 35, 0.5);
}
.callout::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 22px;
  width: 10px;
  height: 10px;
  background: var(--ink);
  transform: rotate(45deg);
}
.co-1 {
  top: 42px;
  right: 6%;
}
.co-2 {
  top: 46%;
  left: -8px;
}
.co-2::before {
  left: auto;
  right: 26px;
}
.co-3 {
  bottom: 46px;
  right: 40%;
}
.wiki .mini-grid {
  margin-top: 8px;
}

.chapter {
  text-align: center;
  padding: 76px 24px 0;
}
.chapter-rule {
  display: flex;
  align-items: center;
  gap: 18px;
}
.chapter-rule::before,
.chapter-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.chapter-num {
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.chapter h3 {
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 650;
  margin-top: 24px;
}
.chapter-sub {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 540px;
  margin: 10px auto 0;
}
.chapter-mods {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.mod {
  padding: 84px 0;
}
.chapter + .mod {
  padding-top: 44px;
}
.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}
.split .split-text {
  order: 0;
}
.split.flip > .split-text {
  order: 1;
}
.split-text > p {
  color: var(--ink-soft);
}
.aside {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}

.ticks {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 9px;
}
.ticks li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chips li {
  border: 1px solid var(--line);
  background: var(--paper-soft);
  border-radius: 999px;
  padding: 4px 13px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.mini-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  margin-top: 36px;
}
.mini-grid li {
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.mini-grid b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 15px;
}

.mini-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

.band {
  background: var(--paper-soft);
}
.band-plain {
  background: var(--paper);
}
.band-head {
  text-align: center;
}

.duo {
  position: relative;
  padding: 0 0 56px 0;
}
.duo-back {
  max-width: 86%;
}
.duo-front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  transform: rotate(-1.2deg);
}
.duo-front:hover {
  transform: rotate(0deg) translateY(-4px);
}

.band-duo {
  position: relative;
  padding-bottom: 96px;
}
.band-duo .shot-wide {
  max-width: 92%;
}
.band-duo-front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  transform: rotate(1.1deg);
}
.band-duo-front:hover {
  transform: rotate(0deg) translateY(-4px);
}

.band-duo-front-tall {
  width: 34%;
}

.band-duo-xtall {
  padding-bottom: 200px;
}
.band-duo-xtall .band-duo-front-tall {
  width: 29%;
}

.gov .band-head {
  margin-bottom: 8px;
}
.gov-block {
  padding-top: 48px;
}
.gov-caption {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 56px;
}
.gov .shot-wide {
  margin-top: 18px;
}
.split-text h3 {
  font-size: clamp(21px, 2.7vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 650;
}

.spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  margin-top: 48px;
}

.spec-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-inline: auto;
}
.spec-col h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 650;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.spec-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.spec-col li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.spec-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.5;
}
.note-plain {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
}
.note-plain b {
  color: var(--ink);
  font-weight: 650;
}

.agents {
  padding: 96px 0;
}
.agent-lead {
  max-width: 620px;
  margin: 56px auto 26px;
  text-align: center;
}
.agent-lead h3 {
  font-size: clamp(21px, 2.6vw, 27px);
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.agent-lead p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 12px;
}

.chat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: 0 18px 44px -30px rgba(16, 22, 35, 0.35);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.chat:hover {
  transform: translateY(-3px);
  border-color: #cdd6e6;
}
.chat-wide {
  max-width: 820px;
  margin: 0 auto;
}
.chat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.chat-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.chat-wall {
  margin-top: 26px;
}

.msg {
  font-size: 14.5px;
  line-height: 1.55;
}
.msg b {
  display: block;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.msg-you {
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 12px 15px;
}
.msg-you b {
  color: var(--accent);
}
.msg-ai {
  color: var(--ink-soft);
  padding: 0 3px;
  display: grid;
  gap: 12px;
}
.msg-ai strong {
  color: var(--ink);
  font-weight: 600;
}
.msg-foot {
  font-size: 13px;
  color: var(--muted);
}

.msg-ai code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 3px;
}
.tools code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 3px 11px 3px 9px;
}
.tools code::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.tools code.refused {
  border-color: #f0cdb8;
  background: #fdf2ec;
  color: #9a4a19;
}
.tools code.refused::before {
  background: #c2410c;
}

.md {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  line-height: 1.7;
  background: var(--ink);
  color: #c3cee4;
  border-radius: 12px;
  padding: 16px 18px;
  overflow-x: auto;
  white-space: pre;
}

.md-sample {
  max-width: 820px;
  margin: 0 auto;
}
.md-sample + .mini-grid {
  margin-top: 40px;
}

.agent-notes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 36px;
  margin-top: 48px;
}
.agent-notes li {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.agent-notes span {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.scene {
  display: grid;

  text-align: left;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 36px;
}

.hero-rotator {
  --mark: clamp(168px, 24vw, 262px);
  position: relative;
  display: grid;
  margin: 26px 0 6px;
}
.hero-rotator > .scene {
  grid-area: 1 / 1;
}

.hero-rotator > .scene.reveal {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}
.hero-rotator > .scene.reveal.is-current {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.35s ease 0.3s,
    visibility 0s linear 0s;
}

.hero-rotator:not(:has(> .is-current)) > .scene.reveal:first-of-type {
  opacity: 1;
  visibility: visible;
}

.hero-rotator .scene {
  grid-template-columns:
    clamp(220px, 24vw, 316px) var(--mark)
    clamp(220px, 24vw, 316px);
  justify-content: center;
  gap: 26px;
  align-items: stretch;
  margin: 0;
}

.hero-rotator .scene-app {
  grid-column: 1;
  zoom: 0.6;
}
.hero-rotator .scene-chat {
  grid-column: 3;
  zoom: 0.6;
}

.hero-rotator .scene-app {
  margin-right: 5em;
}
.hero-rotator .scene-chat {
  margin-left: 5em;
}

.hero-rotator .scene-thread .msg {
  font-size: 19px;
}
.hero-rotator .scene-thread .msg b,
.hero-rotator .scene-thread .tools code,
.hero-rotator .scene-crumb em {
  font-size: 15px;
}
.hero-rotator .scene-thread .tools code {
  padding: 3px 12px 3px 11px;
}

.scene-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--mark);
  aspect-ratio: 1;
}
.scene-mark .cst-logo {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.scene-mark .cst-logo circle {
  stroke: var(--ink);
  stroke-width: 5.5;
  fill: none;
}

.scene-mark .cst-logo circle.flash {
  animation: ringFlash 0.72s ease-out;
}
@keyframes ringFlash {
  0% {
    stroke: var(--ink);
    stroke-width: 5.5;
  }
  22% {
    stroke: var(--accent);
    stroke-width: 6.6;
  }
  100% {
    stroke: var(--ink);
    stroke-width: 5.5;
  }
}

@supports not (zoom: 0.6) {
  .hero-rotator .scene {
    grid-template-columns: minmax(0, 1fr) var(--mark) minmax(0, 1fr);
  }
  .hero-rotator .scene-app,
  .hero-rotator .scene-chat {
    zoom: normal;
    margin: 0;
  }
  .hero-rotator .scene-thread .msg,
  .hero-rotator .scene-thread .msg b,
  .hero-rotator .scene-thread .tools code,
  .hero-rotator .scene-crumb em {
    font-size: inherit;
  }
}

.scene-app {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper);
  border: 1px solid #e3e7ef;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px -42px rgba(16, 22, 35, 0.5);
}

.scene-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.scene-chrome > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7dce6;
}

.scene-crumb {
  position: relative;
  margin-left: 10px;
  height: 14px;
  flex: 1;
}
.scene-crumb em {
  position: absolute;
  inset: 0;
  font-style: normal;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.scene-crumb em.is-on {
  opacity: 1;
}

.scene-body {
  display: flex;
  min-height: 0;
  flex: 1;
}

.scene-rail {
  flex: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px 0;
  align-items: center;
  border-right: 1px solid var(--line);
  background: var(--paper-soft);
}
.scene-rail i {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: #dfe4ee;
  transition: background 0.35s ease;
}

.scene-rail i.is-on {
  background: var(--accent);
}

.scene-stage {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 360px;
}
.scene-view {
  position: absolute;
  inset: 0;
  overflow: hidden; 
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.scene-view.is-live {
  opacity: 1;
  transform: none;
}

.scene:not([data-stage]) .scene-view:first-of-type,
.scene:not([data-stage]) .scene-crumb em:first-of-type {
  opacity: 1;
  transform: none;
}

.scene [data-in] {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.32s cubic-bezier(0.22, 1.2, 0.4, 1);
}
.scene [data-in].is-on {
  opacity: 1;
  transform: none;
}

.sk-line,
.sk-title,
.sk-key {
  display: block;
  width: var(--w, 100%);
  border-radius: 3px;
  background: #e6e9f1;
}
.sk-title {
  height: 13px;
  border-radius: 4px;
  background: #cfd5e1;
}
.sk-line {
  height: 7px;
}

.sk-flow {
  display: grid;
  align-content: start;
  gap: 9px;
}

.sk-picks {
  list-style: none;
  margin: 16px 0 14px;
  display: grid;
  gap: 5px;
}
.sk-picks li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 8px;
  margin: 0 -8px;
  border-radius: 7px;
  background: transparent;
  transition: background 0.3s ease;
}
.sk-picks li > i {
  flex: 0 0 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfd5e1;
  transition: background 0.3s ease;
}
.sk-picks li > span {
  height: 7px;
  width: var(--w, 70%);
  border-radius: 3px;
  background: #e6e9f1;
  transition: background 0.3s ease;
}
.sk-picks li.is-on {
  background: var(--accent-soft);
}
.sk-picks li.is-on > i {
  background: var(--accent);
}
.sk-picks li.is-on > span {
  background: #b9caf6;
}

.sk-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
}
.sk-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.sk-colhead {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.sk-colhead > i {
  height: 7px;
  width: var(--w, 44%);
  border-radius: 3px;
  background: #cfd5e1;
}
.sk-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 8px 9px;
  display: grid;
  gap: 5px;
}
.sk-card .sk-line {
  height: 6px;
}
.sk-cardtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1px;
}
.sk-key {
  height: 7px;
  width: 30px;
  border-radius: 3px;
  background: #cdd8f4;
}
.sk-av {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dfe4ee;
}

.sk-card.is-idle {
  opacity: 0.65;
}
.sk-card.is-idle .sk-key {
  background: #dfe4ee;
}

.sk-card[data-in].is-on {
  animation: cardLand 1.1s ease-out;
}
@keyframes cardLand {
  0%,
  35% {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }
  100% {
    border-color: var(--line);
    box-shadow: 0 0 0 0 rgba(46, 95, 232, 0);
  }
}

.sk-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 250px;
  margin: 2px 0 4px;
}
.sk-bars > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
}

.sk-bars i {
  display: block;
  width: min(100%, 54px);
  margin: 0 auto;
  height: var(--h, 40%);
  border-radius: 5px 5px 0 0;
  background: var(--c, #dfe4ee);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.22, 1.2, 0.4, 1);
}
.sk-bars i.is-on {
  transform: none;
}

.sk-bars b {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: #e6e9f1;
  margin: 0 auto;
  width: 60%;
}

.sk-rows {
  list-style: none;
  display: grid;
  gap: 8px;
}
.sk-rows > * {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sk-rows .sk-grow {
  flex: 1;
}

.sk-pill {
  flex: 0 0 auto;
  width: var(--w, 34px);
  height: 12px;
  border-radius: 999px;
  background: #e6e9f1;
  transition: background 0.35s ease;
}
.sk-pill.is-on {
  background: var(--accent);
}
.sk-pill.warn.is-on {
  background: #c2410c;
}

.sk-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.sk-page {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px 16px;
}

.sk-band {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sk-page .sk-hero {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 6px 0 2px;
}
.sk-page .sk-btn {
  height: 20px;
  width: 96px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
}
.sk-page .sk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sk-page .sk-cards > div {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px;
  display: grid;
  gap: 6px;
}

.sk-img {
  position: relative;
  height: var(--h, 96px);
  border-radius: 8px;
  background: linear-gradient(#eef1f6, #e4e9f2);
  overflow: hidden;
}
.sk-img::before {
  content: "";
  position: absolute;
  top: 16%;
  left: 20%;
  width: 14%;
  aspect-ratio: 1;
  max-width: 18px;
  border-radius: 50%;
  background: #cfd7e5;
}
.sk-img::after {
  content: "";
  position: absolute;
  inset: 38% 0 0 0;
  background: #c5cfe1;
  clip-path: polygon(
    0% 100%,
    26% 30%,
    47% 100%,
    39% 100%,
    67% 8%,
    100% 100%
  );
}

.sk-steps {
  display: flex;
  gap: 7px;
}
.sk-steps > .sk-cell {
  flex: 1;
  max-width: none;
  width: auto;
  height: 14px;
}
.sk-cell.is-on {
  background: var(--accent);
}

.sk-matrix {
  display: grid;
  gap: 9px;
}
.sk-mrow {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 7px;
  align-items: center;
  padding: 3px 6px;
  margin: 0 -6px;
  border-radius: 7px;
  transition: background 0.3s ease;
}
.sk-mrow.is-on {
  background: var(--accent-soft);
}

.sk-mrow.warn.is-on {
  background: #fdf2ec;
}

.sk-cell {
  height: 22px;
  width: min(100%, 46px);
  margin: 0 auto;
  border-radius: 6px;
  background: #eef1f6;
  border: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.sk-cell.granted {
  background: #cdd8f4;
}
.sk-mrow.is-on .sk-cell.granted {
  background: var(--accent);
}
.sk-cell.deny.is-on {
  background: #fdf2ec;
  border-color: #f0cdb8;
}

.sk-cell.deny.is-on::after {
  content: "";
  display: block;
  width: 13px;
  height: 3px;
  border-radius: 2px;
  background: #c2410c;
  margin: 9px auto 0;
}

.sk-md {
  height: 100%;
  background: var(--ink);
  border-radius: 10px;
  padding: 16px 18px;
  display: grid;
  align-content: start;
  gap: 15px;
  overflow: hidden;
}

.sk-md > div {
  display: grid;
  gap: 7px;
}
.sk-md .sk-line {
  height: 6px;
  background: #2f3d59;
}
.sk-md .sk-title {
  height: 9px;
  background: #4d6ea8;
}

.scene-chat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper-soft);
  border: 1px solid #e3e7ef;
  border-radius: var(--radius);
  padding: 14px;
}
.scene-chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.scene-chat-head .sk-av {
  width: 18px;
  height: 18px;
  background: #cdd8f4;
}
.scene-thread {
  display: grid;
  align-content: start;
  gap: 10px;
  flex: 1;
}
.scene-thread .msg {
  font-size: 13.5px;
}
.scene-thread .msg p {
  line-height: 1.5;
}
.scene-thread .msg-you {
  padding: 10px 12px;
  border-radius: 10px;
}
.scene-thread .tools {
  gap: 5px;
  padding: 0;
}
.scene-thread .tools code {
  font-size: 11px;
  padding: 2px 9px 2px 8px;
  background: var(--paper);
}
.scene-thread .tools code b {
  font-weight: 600;
  color: var(--muted);
}

.scene-composer {
  margin-top: 12px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.scene-composer i {
  width: 1.5px;
  height: 13px;
  background: var(--accent);
  animation: sceneCaret 1.1s steps(1) infinite;
}
@keyframes sceneCaret {
  50% {
    opacity: 0;
  }
}

.details {
  padding: 84px 0 96px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: #cdd6e6;
}
.card p {
  color: var(--ink-soft);
  font-size: 14.5px;
}
.card code {
  font-size: 13px;
  background: var(--paper-soft);
  padding: 1px 6px;
  border-radius: 6px;
}

.vision {
  padding: 40px 0 96px;
}

.beta {
  padding: 20px 0 110px;
}
.beta-inner {
  background: var(--accent-soft);
  border-radius: 24px;
  padding: 64px 32px;
  text-align: center;
}
.beta-inner > p {
  color: var(--ink-soft);
  margin: 12px auto 28px;
  max-width: 480px;
}
.beta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.beta-row input {
  font: inherit;
  font-size: 15.5px;
  padding: 12px 20px;
  border: 1px solid #c6d3f5;
  border-radius: 999px;
  width: min(360px, 100%);
  background: var(--paper);
  color: var(--ink);
}
.beta-row input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.beta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.beta-note:empty {
  margin: 0;
}
.beta-note.error {
  color: #c2410c;
}
.beta-done {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
#companyField {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.agendas {
  padding: 96px 0 40px;
}
.agendas .band-head {
  text-align: center;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.agenda {
  position: relative;
  overflow: hidden; 
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background: var(--paper-soft);
  border: 1px solid #e3e7ef;
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.agenda::before {
  content: "";
  position: absolute;

  top: -108px;
  right: -86px;
  width: 210px;
  height: 212px; 
  background: #ccd3e0;
  -webkit-mask: url("img/logo.svg") no-repeat center / contain;
  mask: url("img/logo.svg") no-repeat center / contain;
  opacity: 0.45;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    background 0.25s ease;
}

.agenda > * {
  position: relative;
}
.agenda:nth-child(4),
.agenda:nth-child(5) {
  grid-column: span 3;
}
.agenda:hover {
  transform: translateY(-3px);
  background: var(--paper);
  border-color: #cdd6e6;
  box-shadow: 0 24px 50px -34px rgba(16, 22, 35, 0.45);
}
.agenda:hover::before {
  background: var(--accent);
  opacity: 0.14;
}
.agenda-num {
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.agenda h3 {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-top: 10px;
}
.agenda p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 8px;
}

.agenda-mods {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.agenda-mods li {
  border: 1px solid #e3e7ef;
  background: var(--paper);
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12.5px;
  color: var(--ink-soft);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.agenda:hover .agenda-mods li {
  border-color: #dfe5ef;
  background: var(--paper-soft);
}

.agenda-go {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.agenda:hover .agenda-go {
  text-decoration: underline;
}

.page-head {
  padding: 64px 0 8px;
}
.page-head h1 {
  font-size: clamp(34px, 4.6vw, 52px);
}

.page-head-panel {
  background: var(--paper-soft);
  border: 1px solid #d9d9d9;
  border-radius: 26px;
  padding: 44px 44px 40px;
}
.page-head-panel .section-sub {
  color: var(--ink-soft);
  max-width: 720px;
}

.page-head-panel .toc a {
  background: var(--paper);
  border-color: transparent;
}
.page-head-panel .toc a:hover {
  border-color: var(--ink);
}

.agenda-rail {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.agenda-rail-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.agenda-rail-inner::-webkit-scrollbar {
  display: none;
}
.rail-seg {
  flex: 1 0 auto;
  min-width: 96px;
  text-decoration: none;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 550;
  white-space: nowrap;
  display: grid;
  gap: 6px;
}
.rail-seg::before {
  content: "";
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  transition: background 0.2s ease;
}

.rail-seg.done::before {
  background: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.rail-seg[aria-current="page"]::before {
  background: var(--accent);
}
.rail-seg[aria-current="page"] {
  color: var(--ink);
}
.rail-seg:hover {
  color: var(--ink);
}
.rail-seg:hover::before {
  background: color-mix(in srgb, var(--accent) 70%, var(--line));
}
.rail-num {
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0.08em;
  margin-right: 6px;
}
.rail-seg[aria-current="page"] .rail-num {
  color: var(--accent);
}
.page-head .section-sub {
  font-size: 18px;
  margin-top: 18px;
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.crumbs a {
  color: var(--muted);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--ink);
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.toc a {
  border: 1px solid var(--line);
  background: var(--paper-soft);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: none;
}
.toc a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.pagenav {
  border-top: 1px solid var(--line);
  padding: 28px 0 96px;
}
.pagenav-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.pagenav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.pagenav a:hover {
  color: var(--ink);
}
.pagenav b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 2px;
}

.switches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}
.seg {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.seg button {
  border: 0;
  background: none;
  font: inherit;
  font-size: 13.5px;
  font-weight: 550;
  color: var(--ink-soft);
  padding: 5px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.seg button:hover {
  color: var(--ink);
}
.seg button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.tiles {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  column-gap: 18px;
  row-gap: 0;
}
.tile {
  position: relative;
  background: var(--paper);
  border: 1px solid #e3e7ef;
  border-radius: 18px;
  padding: 26px 24px 28px;
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.tile:hover {
  transform: translateY(-3px);
  border-color: #cdd6e6;
  box-shadow: 0 26px 55px -38px rgba(16, 22, 35, 0.5);
}

.tile-seats {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
  font-weight: 550;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 6px 14px;
}
.tile-seats b {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.tile-total {
  display: flex;

  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 7px;
  align-self: end;
  padding-top: 20px;
}
.tile-total b {
  font-size: clamp(34px, 3.8vw, 46px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1;
}

.tile-total b:lang(cs) {
  font-size: clamp(27px, 2.6vw, 34px);
}
.tile-total small {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.tile-each {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 9px;
  align-self: start;
}

.tile-usage {
  list-style: none;
  display: grid;
  gap: 9px;
  align-content: start;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.tile-usage li {
  position: relative;
  padding-left: 22px;
}

.tick::before,
.tile-usage li::before {
  content: "";
  position: absolute;
  left: var(--tick-x, 0px);
  top: var(--tick-y, 4px);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.tick::after,
.tile-usage li::after {
  content: "";
  position: absolute;
  left: calc(var(--tick-x, 0px) + 7.5px);
  top: calc(var(--tick-y, 4px) + 7.5px);
  width: 5px;
  height: 2.5px;
  border-left: 1.7px solid var(--accent);
  border-bottom: 1.7px solid var(--accent);
  transform: translate(-50%, -54%) rotate(-45deg);
}
.tile-usage b {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.tile-cta {
  align-self: end;
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  font-size: 14.5px;
  padding: 11px 18px;
}

.tile-calc .tile-cta.btn-ghost,
.tile-cta.btn-ghost:hover {
  border-color: #cdd6e6;
}

.tile-inc {
  color: var(--ink-soft);
}
.tile-inc::before {
  background: var(--paper-soft);
}
.tile-inc::after {
  border-color: #b9c4d8;
}

.tile-usage li:not(.tile-inc) + .tile-inc {
  margin-top: 8px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.tile-usage li:not(.tile-inc) + .tile-inc {
  --tick-y: 21px;
}

.tile-usage-plain li {
  color: var(--ink-soft);
}

.tile-calc {
  border-color: #dbe4fb;
  background: linear-gradient(
    180deg,
    var(--accent-soft) 0%,
    rgba(233, 238, 253, 0.35) 26%,
    var(--paper) 46%
  );
  box-shadow: 0 26px 60px -38px rgba(46, 95, 232, 0.45);
}
.tile-calc:hover {
  border-color: #c6d3f7;
  box-shadow: 0 30px 65px -36px rgba(46, 95, 232, 0.55);
}

.tile-calc .tile-seats {
  background: var(--paper);
  box-shadow: 0 1px 3px rgba(46, 95, 232, 0.12);
}
.tile-calc label {
  display: block;
  cursor: pointer;
}

.range {
  width: 100%;
  height: 22px;
  margin-top: 12px;
  cursor: pointer;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.range:focus {
  outline: none;
}
.range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--accent) 0 var(--range-pct, 50%),
    var(--line) var(--range-pct, 50%) 100%
  );
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px -1px rgba(46, 95, 232, 0.45);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.range:hover::-webkit-slider-thumb {
  transform: scale(1.08);
}
.range:active::-webkit-slider-thumb {
  transform: scale(1.16);
}
.range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
}
.range::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px -1px rgba(46, 95, 232, 0.45);
}
.range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.price-fine {
  margin-top: 22px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.table-wrap {
  overflow: hidden auto;
  overflow-x: auto;
  border: 1px solid #e3e7ef;
  border-radius: 18px;
  background: var(--paper);
  margin-top: 44px;
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.ptable th,
.ptable td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.ptable th:first-child {
  width: 32%;
}

.ptable td + td,
.ptable th + th,
.ptable th + td {
  border-left: 1px solid var(--line);
}

.ptable thead th {
  background: #e8ecf4;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 650;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: #dbe1ec;
}
.ptable tbody th {
  color: var(--ink);
  font-weight: 600;
}

.ptable tbody tr:not(.ptable-sec):hover th,
.ptable tbody tr:not(.ptable-sec):hover td {
  background: #fafbfd;
}

.ptable tbody:last-of-type tr:last-child th,
.ptable tbody:last-of-type tr:last-child td {
  border-bottom: 0;
}

.ptable-sec th {
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 13px;
  padding-bottom: 13px;
  border-top: 1px solid #e3e7ef;
  border-bottom-color: #e3e7ef;
}

.ptable-sec th + th {
  border-left: 0;
}

.ptable tbody:first-of-type .ptable-sec th {
  border-top: 0;
}
.ptable-3 td:last-child {
  color: var(--muted);
}

.ptable .hl {
  color: var(--accent);
  font-weight: 600;
}

.ptable .yes {
  position: relative;
  padding-left: 45px;
  --tick-x: 22px;
  --tick-y: 16px;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.ptable .na {
  color: #c9d0dd;
}

[hidden] {
  display: none !important;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-top: 48px;
}
.faq h3 {
  font-size: 16px;
  font-weight: 650;
}
.faq p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 6px;
}

.factsheet {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--paper-soft);
}
.factsheet h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 650;
}
.factsheet dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin-top: 16px;
  font-size: 14.5px;
}
.factsheet dt {
  color: var(--muted);
}
.factsheet dd {
  color: var(--ink);
}
.factsheet a {
  color: var(--accent);
  text-decoration: none;
}
.factsheet a:hover {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: var(--paper-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand {
  font-size: 17px;
}
.footer-tag {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 12px;
  max-width: 260px;
}
.footer-col h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}
.footer-link {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}
.footer-link:hover {
  color: var(--ink);
}
.footer-legal {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  gap: 10px 28px;
  flex-wrap: wrap;
  align-items: baseline;
  font-size: 13px;
  color: var(--muted);
}
.footer-legal b {
  color: var(--ink-soft);
  font-weight: 600;
}
.footer-legal .footer-copy {
  margin-left: auto;
}

.shot img {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 40px);
  background: rgba(16, 22, 35, 0.82);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
  animation: lb-in 0.16s ease-out;
}
.lightbox[hidden] {
  display: none;
}
@keyframes lb-in {
  from {
    opacity: 0;
  }
}
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: clamp(10px, 2vw, 22px);
  right: clamp(10px, 2vw, 22px);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
}
.lightbox-close svg {
  width: 18px;
  height: 18px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .shot,
  .card,
  .btn {
    transition: none;
  }

  .scene *,
  .scene *::before,
  .scene *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 860px) {

  .nav-burger {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -28px rgba(16, 22, 35, 0.5);
    padding: 8px 16px 16px;
    margin-left: 0;
  }
  .nav.nav-open .nav-links {
    display: flex;
  }
  .nav-links > a,
  .nav-trigger {
    padding: 11px 8px;
    font-size: 15.5px;
  }
  .nav-item {
    position: static;
  }
  .nav-trigger {
    display: none;
  }
  .nav-panel {
    position: static;
    transform: none;
    width: auto;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    transition: none;
  }
  .nav-item.open .nav-panel {
    transform: none;
  }
  .nav-panel a {
    padding: 9px 8px;
  }
  .nav-panel span {
    display: none;
  }
  .nav-panel .nav-panel-all {
    margin-top: 4px;
    padding-top: 10px;
  }

  .hero {
    padding-top: 64px;
  }

  .cst {
    height: clamp(360px, 96vw, 430px);
    margin-top: 14px;
  }
  .cst-word span {
    font-size: 13px;
    padding: 4px 12px;
  }
  .agendas {
    padding: 64px 0 24px;
  }
  .agenda-grid {
    grid-template-columns: 1fr;
  }

  .agenda::before {
    top: -120px;
    right: -96px;
  }
  .agenda,
  .agenda:nth-child(4),
  .agenda:nth-child(5) {
    grid-column: span 1;
  }

  .scene {
    display: none;
  }
  .hero-rotator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 8px auto 26px;
  }
  .scene-mark {
    position: static;
    transform: none;
    width: clamp(132px, 42vw, 180px);
  }
  .hero-rotator .cst-wordmark {
    display: block;
  }

  .hero h1 {
    margin-bottom: 0.7em;
  }

  .hero-sub {
    margin-top: 3.4em;
  }
  .page-head {
    padding-top: 32px;
  }
  .page-head-panel {
    padding: 30px 22px 26px;
    border-radius: 20px;
  }

  .agenda-rail {
    top: 64px;
  }
  .rail-seg {
    min-width: 0;
    flex: 1 1 0;
    font-size: 12px;
    position: relative;
  }
  .rail-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .rail-num {
    margin-right: 0;
  }
  .agenda-rail-inner {
    gap: 10px;
    overflow-x: hidden;
  }
  .faq {
    grid-template-columns: 1fr;
  }

  .tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    row-gap: 16px;
  }
  .tile {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
  }
  .tile-total {
    margin-top: auto;
  }
  .pagenav {
    padding-bottom: 64px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-legal .footer-copy {
    margin-left: 0;
  }
  .mod {
    padding: 56px 0;
  }
  .chapter {
    padding-top: 52px;
  }
  .chapter + .mod {
    padding-top: 32px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split.flip > .split-text {
    order: 0;
  }
  .mini-grid,
  .grid {
    grid-template-columns: 1fr;
  }
  .spec {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-cta {
    flex-wrap: wrap;
  }

  .wiki-stage {
    padding-bottom: 0;
  }
  .wiki-shot-main {
    max-width: none;
  }
  .wiki-shot-editor {
    position: static;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }
  .callout {
    position: static;
    display: block;
    max-width: none;
    margin-top: 12px;
  }
  .callout::before {
    display: none;
  }
  .duo {
    padding-bottom: 0;
  }
  .duo-back {
    max-width: none;
  }
  .duo-front {
    position: static;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }
  .band-duo {
    padding-bottom: 0;
  }
  .band-duo .shot-wide {
    max-width: none;
  }
  .band-duo-front {
    position: static;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }
  .band-duo-front-tall {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .agents {
    padding: 56px 0;
  }
  .chat-grid,
  .agent-notes {
    grid-template-columns: 1fr;
  }
  .chat {
    padding: 16px;
  }
  .md {
    font-size: 11.5px;
    padding: 14px;
  }
}

@media (max-width: 620px) {
  .tiles {
    grid-template-columns: 1fr;
  }

  .cst {
    height: auto;

    margin: 4px auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cst-core {
    position: static;
    transform: none;
    width: clamp(132px, 42vw, 180px);
  }
  .cst-word {
    display: none;
  }
  .cst-wordmark {
    display: block;
  }
}

.scene-head {
  margin-top: 56px;
}
