:root {
  --paper: #f4f1e8;
  --paper-deep: #ebe6da;
  --ink: #11120f;
  --ink-soft: #5e6058;
  --line: rgba(17, 18, 15, 0.16);
  --line-soft: rgba(17, 18, 15, 0.09);
  --lime: #c7ff4a;
  --lime-deep: #a8eb17;
  --blue: #3157ff;
  --orange: #ff7f48;
  --white: #fffef9;
  --dark-panel: #171816;
  --shell: min(1240px, calc(100vw - 48px));
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 28px 80px rgba(28, 29, 24, 0.13);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  padding: 11px 0;
  border-color: var(--line-soft);
  background: rgba(244, 241, 232, 0.88);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 15, 0.08);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i::before,
.brand-mark i::after {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.brand-mark::before {
  top: 4px;
  left: 4px;
}

.brand-mark::after {
  top: 4px;
  right: 4px;
}

.brand-mark i::before {
  right: 4px;
  bottom: 4px;
}

.brand-mark i::after {
  bottom: 4px;
  left: 4px;
}

.brand-mark i {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.text-link {
  position: relative;
  color: #3e403a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button span {
  font-size: 17px;
  line-height: 1;
}

.button-small {
  min-height: 42px;
  gap: 12px;
  padding: 0 18px;
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(17, 18, 15, 0.12);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(117, 157, 25, 0.2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 65px;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 30px 24px;
  background: var(--paper);
}

.mobile-nav a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 26px;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 148px 0 0;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(17, 18, 15, 0.035) 50%, transparent 50.05%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 102px;
  right: max(24px, calc((100vw - 1240px) / 2));
  left: max(24px, calc((100vw - 1240px) / 2));
  height: 1px;
  background: var(--line-soft);
  content: "";
}

.hero-glow {
  position: absolute;
  top: 16%;
  left: -14vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(199, 255, 74, 0.2);
  filter: blur(100px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(400px, 0.84fr) minmax(570px, 1.16fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 26px 0 70px;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(49, 87, 255, 0.12);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(58px, 6.55vw, 99px);
  font-weight: 850;
  line-height: 0.88;
  letter-spacing: -0.078em;
}

.headline-accent {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.headline-accent::before {
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: -0.04em;
  left: -0.04em;
  height: 0.34em;
  border-radius: 2px;
  background: var(--lime);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 610px;
  margin: 36px 0 0;
  color: #4e504a;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 32px rgba(105, 142, 24, 0.17);
}

.button-primary:hover {
  background: #d3ff70;
  box-shadow: 0 16px 38px rgba(105, 142, 24, 0.24);
}

.button-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 33px;
  color: #71736c;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.3;
}

.hero-product {
  --spot-x: 56%;
  --spot-y: 40%;
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 650px;
}

.hero-product::before {
  position: absolute;
  inset: 4% -8% 0 -4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(199, 255, 74, 0.35), transparent 28%),
    radial-gradient(circle at 78% 65%, rgba(49, 87, 255, 0.18), transparent 32%);
  content: "";
  filter: blur(28px);
  transition: background-position 0.2s ease;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(17, 18, 15, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -40px;
  right: -210px;
  width: 610px;
  height: 610px;
}

.orbit-two {
  right: -40px;
  bottom: -160px;
  width: 420px;
  height: 420px;
}

.workspace-window {
  position: absolute;
  right: -82px;
  bottom: 54px;
  width: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #151614;
  box-shadow: 0 42px 95px rgba(19, 21, 16, 0.28), 0 4px 0 #0b0c0a;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) rotateZ(-0.5deg);
  transform-origin: center bottom;
}

.workspace-topbar {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  height: 54px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7d9d3;
  background: #1c1d1a;
  font-size: 11px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4e504b;
}

.window-dots i:first-child {
  background: var(--orange);
}

.window-dots i:nth-child(2) {
  background: #ffd355;
}

.window-dots i:last-child {
  background: var(--lime-deep);
}

.workspace-breadcrumb {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-breadcrumb span {
  color: #777a73;
}

.workspace-breadcrumb b {
  margin: 0 8px;
  color: #53564f;
}

.workspace-breadcrumb strong {
  font-weight: 670;
}

.live-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(199, 255, 74, 0.16);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(199, 255, 74, 0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.live-chip i,
.demo-badge-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 255, 74, 0.1);
  animation: livePulse 1.8s ease-in-out infinite;
}

.workspace-body {
  display: grid;
  grid-template-columns: 55px 190px minmax(0, 1fr);
  height: 445px;
}

.workspace-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
  padding: 13px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #181917;
}

.workspace-logo {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
}

.workspace-logo span {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--ink);
  transform: rotate(45deg);
}

.workspace-side-button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: #777a73;
  background: transparent;
  font-size: 14px;
}

.workspace-side-button.active {
  color: var(--white);
  background: #30322e;
}

.workspace-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  margin-top: auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #d1d5cc;
  font-size: 9px;
  font-weight: 800;
}

.file-panel {
  padding: 16px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #1e1f1c;
}

.panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 12px;
  color: #8d9088;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-label button {
  width: 21px;
  height: 21px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #afb2aa;
  background: #272925;
}

.file-row {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr) auto;
  min-height: 37px;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #b8bbb3;
  font-size: 10px;
}

.file-row.selected {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.file-row small {
  color: #6f726b;
  font-size: 9px;
}

.file-type,
.mini-file {
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-style: normal;
  font-weight: 850;
}

.file-type {
  width: 22px;
  height: 22px;
  font-size: 7px;
}

.file-type-code,
.mini-code {
  color: #9fb0ff;
  background: rgba(49, 87, 255, 0.16);
}

.file-type-doc,
.mini-doc {
  color: #94b9ff;
  background: rgba(59, 130, 246, 0.16);
}

.file-type-sheet,
.mini-sheet {
  color: #9be4b5;
  background: rgba(32, 181, 94, 0.15);
}

.file-type-image {
  color: #ffc4a8;
  background: rgba(255, 127, 72, 0.15);
}

.mini-pdf {
  color: #ff9e9a;
  background: rgba(232, 62, 55, 0.13);
}

.file-divider {
  height: 1px;
  margin: 14px 7px;
  background: rgba(255, 255, 255, 0.07);
}

.project-health {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 5px 8px;
}

.project-health span {
  color: #757870;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-health strong {
  color: #bec1b8;
  font-size: 9px;
  font-weight: 600;
}

.project-health > i {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #343631;
}

.project-health > i b {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.agent-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 21px 23px 17px;
  color: #e8eae3;
  background:
    radial-gradient(circle at 80% 10%, rgba(49, 87, 255, 0.08), transparent 30%),
    #181917;
}

.agent-header,
.agent-header > div {
  display: flex;
  align-items: center;
}

.agent-header {
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.agent-header > div {
  gap: 8px;
}

.agent-header strong {
  font-size: 12px;
}

.agent-spark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
}

.agent-status {
  color: #858880;
  font-size: 8px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.user-prompt {
  align-self: flex-end;
  max-width: 76%;
  margin: 19px 0 16px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px 13px 4px 13px;
  color: #dfe1da;
  background: #292b27;
  font-size: 9px;
  line-height: 1.5;
}

.task-stream {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.task-line {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  min-height: 31px;
  align-items: center;
  gap: 8px;
  color: #bfc2ba;
  font-size: 9px;
}

.task-line > i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #4a4d46;
  border-radius: 50%;
  color: var(--ink);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.task-line.done > i {
  border-color: var(--lime);
  background: var(--lime);
}

.task-line.active > i::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  content: "";
}

.task-line small {
  color: #71746c;
  font-size: 8px;
}

.task-line.active small {
  color: var(--lime);
}

.code-preview {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  gap: 5px;
  margin: 6px 0 0 28px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  color: #aeb1a9;
  background: #111210;
  font: 8px/1.45 ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: nowrap;
}

.code-preview span b {
  display: inline-block;
  width: 22px;
  color: #4d5049;
  font-weight: 400;
}

.code-preview i {
  font-style: normal;
}

.tok-pink {
  color: #ff82b5;
}

.tok-blue {
  color: #8aa4ff;
}

.tok-lime {
  color: var(--lime);
}

.tok-orange {
  color: #ffc074;
}

.tok-muted {
  color: #5d6059;
}

.agent-composer {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 6px 7px 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  color: #666961;
  background: #20211e;
  font-size: 9px;
}

.agent-composer button {
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.project-float {
  position: absolute;
  z-index: 8;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  min-width: 260px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 18, 15, 0.1);
  border-radius: 17px;
  background: rgba(255, 254, 249, 0.94);
  box-shadow: 0 18px 45px rgba(34, 35, 29, 0.17);
  backdrop-filter: blur(12px);
  animation: floatCard 5s ease-in-out infinite;
}

.project-float-one {
  top: 35px;
  right: -30px;
}

.project-float-two {
  right: 360px;
  bottom: 16px;
  animation-delay: -2.4s;
}

.project-float > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-float strong {
  font-size: 10px;
  font-weight: 780;
}

.project-float small {
  color: #85877f;
  font-size: 8px;
}

.float-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 850;
}

.float-icon-blue {
  color: #fff;
  background: var(--blue);
}

.float-icon-lime {
  color: var(--ink);
  background: var(--lime);
  font-size: 20px;
}

.project-float > b {
  color: #777a72;
  font-size: 9px;
}

.project-float > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3bd072;
  box-shadow: 0 0 0 5px rgba(59, 208, 114, 0.12);
}

.hero-strip {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.hero-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hero-strip div span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #71736c;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.projects-section,
.workflow-section,
.capabilities-section,
.closing-section {
  position: relative;
  padding: 140px 0;
}

.projects-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 160px minmax(440px, 1fr) minmax(250px, 0.52fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 68px;
}

.section-index {
  align-self: start;
  margin: 12px 0 0;
  color: #74766f;
}

.section-heading h2,
.workflow-intro h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 76px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.064em;
}

.section-heading h2 span,
.workflow-intro h2 span {
  color: #94978f;
}

.section-heading > p:last-child {
  max-width: 370px;
  margin: 0 0 4px;
  color: #64665f;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.project-showcase {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.project-tabs {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: #efece3;
}

.project-tab {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding: 23px 17px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 16px;
  color: #777970;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.project-tab:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.project-tab.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(25, 26, 21, 0.08);
}

.project-tab > span {
  grid-row: span 2;
  padding-top: 2px;
  color: #8c8e87;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.project-tab strong {
  font-size: 16px;
  font-weight: 790;
  letter-spacing: -0.03em;
}

.project-tab small {
  margin-top: 5px;
  color: #8a8c85;
  font-size: 10px;
}

.project-tab.active::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-deep);
  content: "";
  transform: translateY(-50%);
}

.project-demo {
  min-width: 0;
  padding: 20px;
}

.project-panel {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: #f5f6f1;
  background:
    radial-gradient(circle at 75% 15%, rgba(49, 87, 255, 0.13), transparent 30%),
    var(--dark-panel);
  animation: panelIn 0.35s ease both;
}

.project-panel[hidden] {
  display: none;
}

.demo-head {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-head > div,
.demo-head > div > span:last-child {
  display: flex;
}

.demo-head > div {
  align-items: center;
  gap: 12px;
}

.demo-head > div > span:last-child {
  flex-direction: column;
  gap: 3px;
}

.demo-head strong {
  font-size: 13px;
  letter-spacing: -0.02em;
}

.demo-head small {
  color: #7e8179;
  font-size: 9px;
}

.demo-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 850;
}

.demo-icon-blue {
  background: var(--blue);
}

.demo-icon-orange {
  color: var(--ink);
  background: var(--orange);
}

.demo-icon-lime {
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
}

.demo-badge {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(199, 255, 74, 0.06);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-badge-live {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(310px, 1.18fr);
  min-height: 445px;
}

.demo-files {
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-files > p {
  display: flex;
  justify-content: space-between;
  margin: 0 0 19px;
  color: #8b8e86;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-files > p span {
  color: #61645d;
}

.demo-files ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-files li {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  min-height: 59px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.mini-file {
  width: 34px;
  height: 34px;
  font-size: 8px;
}

.demo-files li > span {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  white-space: nowrap;
}

.demo-files li small {
  overflow: hidden;
  color: #6f726a;
  font-size: 8px;
  text-overflow: ellipsis;
}

.demo-files li > b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
}

.demo-result {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 36px 36px 24px;
  background: rgba(255, 255, 255, 0.018);
}

.result-kicker {
  margin: 0 0 13px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-result h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 730;
  line-height: 1;
  letter-spacing: -0.055em;
}

.result-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 26px 0 22px;
}

.result-lines i {
  height: 7px;
  border-radius: 99px;
  background: #343631;
}

.result-lines i:nth-child(1) {
  width: 92%;
}

.result-lines i:nth-child(2) {
  width: 79%;
}

.result-lines i:nth-child(3) {
  width: 86%;
}

.result-lines i:nth-child(4) {
  width: 53%;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding: 15px 17px;
  border: 1px solid rgba(199, 255, 74, 0.16);
  border-radius: 13px;
  background: rgba(199, 255, 74, 0.06);
}

.insight-card span {
  color: #7d8177;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card strong {
  font-size: 11px;
  font-weight: 630;
  line-height: 1.4;
}

.result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #858880;
  font-size: 9px;
}

.result-footer a {
  padding: 8px 11px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 780;
  text-decoration: none;
}

.document-stack {
  position: relative;
  height: 108px;
  margin: 22px 0 18px;
}

.document-stack > i {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 92px;
  height: 105px;
  border-radius: 9px;
  background: #e7e8e2;
  transform: translateX(-50%) rotate(-8deg);
}

.document-stack > i:nth-child(2) {
  background: #babdb5;
  transform: translateX(-33%) rotate(7deg);
}

.document-stack > i:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 15px;
  background: var(--white);
  transform: translateX(-50%) rotate(0);
}

.document-stack i b {
  height: 5px;
  border-radius: 99px;
  background: #c7c9c1;
}

.document-stack i b:nth-child(2) {
  width: 75%;
}

.document-stack i b:last-child {
  width: 55%;
  background: var(--lime-deep);
}

.service-preview {
  position: relative;
  height: 112px;
  overflow: hidden;
  margin: 22px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: #0f100e;
}

.service-preview > span {
  display: block;
  height: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #22231f;
}

.service-preview > div {
  display: flex;
  gap: 8px;
  padding: 16px;
}

.service-preview > div i {
  width: 30%;
  height: 48px;
  border-radius: 8px;
  background: #282a26;
}

.service-preview > div i:nth-child(2) {
  background: var(--blue);
}

.service-preview > b {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 38%;
  height: 4px;
  border-radius: 99px;
  background: var(--lime);
}

.workflow-section {
  background: var(--ink);
  color: var(--white);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: 90px;
}

.workflow-intro {
  position: sticky;
  top: 128px;
}

.workflow-intro .section-index {
  color: #73766e;
}

.workflow-intro h2 span {
  color: var(--lime);
}

.workflow-intro > p:not(.section-index) {
  max-width: 440px;
  margin: 28px 0 34px;
  color: #9b9e96;
  font-size: 16px;
  line-height: 1.6;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 8px;
  border-bottom: 1px solid #565951;
  color: var(--white);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.arrow-link span {
  color: var(--lime);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.arrow-link:hover span {
  transform: translate(3px, -3px);
}

.workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  min-height: 225px;
  align-items: center;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid #343631;
}

.workflow-steps li:last-child {
  border-bottom: 1px solid #343631;
}

.step-number {
  align-self: start;
  padding-top: 4px;
  color: #6f726a;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.workflow-steps h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 37px);
  font-weight: 710;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.workflow-steps p {
  max-width: 470px;
  margin: 15px 0 0;
  color: #8e9189;
  font-size: 14px;
  line-height: 1.55;
}

.step-visual {
  position: relative;
  display: block;
  width: 128px;
  height: 112px;
  border: 1px solid #393b36;
  border-radius: 20px;
  background: #1b1c19;
}

.step-folder b:first-child {
  position: absolute;
  top: 28px;
  left: 25px;
  width: 78px;
  height: 55px;
  border-radius: 7px;
  background: var(--lime);
  transform: rotate(-4deg);
}

.step-folder b:first-child::before {
  position: absolute;
  top: -9px;
  left: 0;
  width: 35px;
  height: 15px;
  border-radius: 5px 5px 0 0;
  background: var(--lime);
  content: "";
}

.step-folder b:nth-child(2),
.step-folder b:nth-child(3) {
  position: absolute;
  right: 18px;
  bottom: 25px;
  width: 34px;
  height: 25px;
  border: 1px solid rgba(17, 18, 15, 0.22);
  border-radius: 6px;
  background: var(--white);
}

.step-folder b:nth-child(3) {
  right: 31px;
  bottom: 36px;
  background: var(--blue);
  transform: rotate(-8deg);
}

.step-files b {
  position: absolute;
  top: 24px;
  left: 34px;
  width: 54px;
  height: 68px;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.25);
}

.step-files b:nth-child(2) {
  background: var(--blue);
  transform: translate(-14px, 5px) rotate(-8deg);
}

.step-files b:nth-child(3) {
  background: var(--lime);
  transform: translate(17px, 3px) rotate(9deg);
}

.step-agent b:first-child {
  position: absolute;
  top: 28px;
  left: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-style: normal;
}

.step-agent b:nth-child(2),
.step-agent b:nth-child(3) {
  position: absolute;
  right: 18px;
  bottom: 37px;
  width: 48px;
  height: 5px;
  border-radius: 99px;
  background: #464943;
}

.step-agent b:nth-child(3) {
  bottom: 25px;
  width: 34px;
  background: var(--blue);
}

.step-result b:first-child {
  position: absolute;
  top: 28px;
  left: 37px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 22px;
  font-style: normal;
}

.step-result b:last-child {
  position: absolute;
  top: 17px;
  left: 52px;
  width: 47px;
  height: 64px;
  border: 1px solid #555850;
  border-radius: 8px;
  background: #252622;
  transform: rotate(12deg);
}

.capabilities-section {
  background: var(--paper);
}

.section-heading-wide {
  grid-template-columns: 160px 1fr;
}

.section-heading-wide h2 {
  max-width: 950px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 390px;
  gap: 18px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.bento-card:nth-child(1),
.bento-card:nth-child(4) {
  grid-column: span 7;
}

.bento-card:nth-child(2),
.bento-card:nth-child(3) {
  grid-column: span 5;
}

.bento-copy {
  position: relative;
  z-index: 3;
  max-width: 430px;
}

.bento-copy > span {
  display: block;
  margin-bottom: 16px;
  color: #777a72;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.bento-copy h3 {
  margin: 0;
  font-size: clamp(27px, 3.1vw, 43px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.055em;
}

.bento-copy p {
  max-width: 390px;
  margin: 17px 0 0;
  color: #666860;
  font-size: 14px;
  line-height: 1.55;
}

.bento-dark {
  color: var(--white);
  background: var(--ink);
}

.bento-dark .bento-copy p {
  color: #95988f;
}

.bento-lime {
  background: var(--lime);
}

.bento-lime .bento-copy > span,
.bento-lime .bento-copy p {
  color: rgba(17, 18, 15, 0.6);
}

.bento-paper {
  background: var(--white);
}

.bento-blue {
  color: var(--white);
  background: var(--blue);
}

.bento-blue .bento-copy > span,
.bento-blue .bento-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.context-map {
  position: absolute;
  right: -25px;
  bottom: -55px;
  width: 330px;
  height: 270px;
  border: 1px solid #353732;
  border-radius: 50%;
}

.context-map::before,
.context-map::after {
  position: absolute;
  inset: 37px;
  border: 1px solid #30322d;
  border-radius: 50%;
  content: "";
}

.context-map::after {
  inset: 75px;
}

.map-core,
.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 820;
}

.map-core {
  top: 90px;
  left: 134px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--lime);
  font-size: 23px;
  box-shadow: 0 0 0 12px rgba(199, 255, 74, 0.07);
}

.map-node {
  width: 47px;
  height: 47px;
  border: 1px solid #3b3e37;
  border-radius: 14px;
  color: #b4b7ae;
  background: #22231f;
  font-size: 8px;
}

.node-one {
  top: 16px;
  left: 89px;
}

.node-two {
  top: 54px;
  right: 21px;
}

.node-three {
  bottom: 28px;
  left: 29px;
}

.node-four {
  right: 44px;
  bottom: 3px;
  color: #aebdff;
}

.map-line {
  position: absolute;
  z-index: 1;
  top: 120px;
  left: 158px;
  width: 100px;
  height: 1px;
  background: #464941;
  transform-origin: left;
}

.line-one {
  transform: rotate(-117deg);
}

.line-two {
  transform: rotate(-39deg);
}

.line-three {
  transform: rotate(143deg);
}

.line-four {
  transform: rotate(51deg);
}

.format-chips {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.format-chips span {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid rgba(17, 18, 15, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.format-chips span::after {
  color: rgba(17, 18, 15, 0.55);
  content: "↗";
  font-size: 15px;
}

.activity-log {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: var(--paper);
}

.activity-log > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 5px 8px;
  border-bottom: 1px solid var(--line-soft);
}

.activity-log > div:last-child {
  border: 0;
}

.activity-log i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.activity-log .is-live i {
  border: 1px solid var(--line);
  background: transparent;
}

.activity-log .is-live i::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  box-shadow: 0 0 0 4px rgba(49, 87, 255, 0.1);
}

.activity-log div > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.activity-log b {
  font-size: 10px;
}

.activity-log small {
  color: #85877f;
  font-size: 8px;
}

.launch-card {
  position: absolute;
  right: 35px;
  bottom: -22px;
  width: 300px;
  min-height: 180px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px 20px 0 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 50px rgba(4, 18, 81, 0.25);
  transform: rotate(-2deg);
}

.launch-card > div {
  display: flex;
  height: 45px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: var(--paper);
}

.launch-card > div i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33c86b;
}

.launch-card > div span {
  flex: 1;
  font-size: 10px;
  font-weight: 650;
}

.launch-card > div b {
  font-size: 15px;
}

.launch-card > strong {
  display: block;
  margin-top: 22px;
  color: var(--blue);
  font-size: 32px;
  letter-spacing: -0.06em;
}

.launch-card > small {
  color: #797b74;
  font-size: 9px;
}

.closing-section {
  padding-top: 30px;
  background: var(--paper);
}

.closing-card {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 44px 44px;
  text-align: center;
}

.closing-card::before,
.closing-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.closing-card::before {
  top: -180px;
  right: -80px;
  width: 460px;
  height: 460px;
  border: 80px solid var(--lime);
  opacity: 0.96;
}

.closing-card::after {
  bottom: -240px;
  left: -100px;
  width: 430px;
  height: 430px;
  border: 1px solid #454840;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.015);
}

.closing-card > *:not(.closing-orbit) {
  position: relative;
  z-index: 2;
}

.closing-card .section-index {
  margin: 0 0 27px;
  color: #8f928a;
}

.closing-card h2 {
  font-size: clamp(55px, 7vw, 102px);
  line-height: 0.9;
}

.closing-card h2 span {
  color: var(--lime);
}

.closing-card > p:not(.section-index) {
  max-width: 590px;
  margin: 30px auto;
  color: #a1a49c;
  font-size: 17px;
  line-height: 1.6;
}

.button-large {
  min-height: 61px;
  padding: 0 28px;
}

.closing-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #74776f;
  font-size: 10px;
}

.closing-note span {
  color: var(--lime);
}

.closing-orbit {
  position: absolute;
  right: 17%;
  bottom: 15%;
  width: 80px;
  height: 80px;
  border: 1px solid #4c4f47;
  border-radius: 50%;
}

.site-footer {
  padding: 78px 0 30px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid > div:first-child p {
  max-width: 260px;
  margin: 0;
  color: #76786f;
  font-size: 13px;
  line-height: 1.5;
}

.footer-links,
.footer-cta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-links > span,
.footer-cta > span {
  margin-bottom: 7px;
  color: #898b84;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.footer-links a {
  color: #4f514b;
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-cta a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.footer-cta a b {
  color: var(--blue);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.footer-cta a:hover b {
  transform: translate(3px, -3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #898b83;
  font-size: 10px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0.6deg);
  }

  50% {
    transform: translateY(-8px) rotate(-0.4deg);
  }
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: minmax(390px, 0.85fr) minmax(490px, 1.15fr);
  }

  .workspace-window {
    right: -175px;
  }

  .project-float-one {
    right: -32px;
  }

  .project-float-two {
    right: 235px;
  }

  .section-heading {
    grid-template-columns: 120px minmax(390px, 1fr) minmax(220px, 0.5fr);
    gap: 25px;
  }

  .workflow-grid {
    gap: 55px;
  }

  .workflow-steps li {
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 18px;
  }

  .step-visual {
    width: 116px;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 860px);
  }

  .desktop-nav,
  .desktop-login {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  body.menu-open .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 20px;
    text-align: center;
  }

  .eyebrow,
  .hero-proof {
    justify-content: center;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(64px, 10vw, 92px);
    text-wrap: balance;
  }

  .hero-title-break {
    display: none;
  }

  .hero-lead {
    margin-inline: auto;
    text-wrap: pretty;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-product {
    width: min(780px, 100%);
    height: 620px;
    margin: 0 auto;
  }

  .workspace-window {
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
  }

  .project-float-one {
    right: -8px;
  }

  .project-float-two {
    right: auto;
    left: -8px;
  }

  .section-heading {
    grid-template-columns: 110px 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .project-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-tab {
    min-height: 105px;
    padding: 17px 13px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 0;
  }

  .project-tab > span {
    display: none;
  }

  .project-tab.active::after {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 13px;
  }

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

  .workflow-intro {
    position: static;
    max-width: 700px;
  }

  .bento-card:nth-child(n) {
    grid-column: span 6;
  }

  .bento-grid {
    grid-auto-rows: 410px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-xl: 25px;
    --radius-lg: 20px;
  }

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

  .site-header,
  .site-header.is-scrolled {
    padding: 10px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button-small {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .header-actions .button-small span {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    top: 61px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero::before {
    top: 78px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.4vw, 72px);
    line-height: 0.92;
  }

  .hero-lead {
    margin: 27px auto 0;
    font-size: 16px;
    line-height: 1.52;
    text-wrap: pretty;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-proof {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .hero-product {
    height: 510px;
    margin-top: 10px;
  }

  .workspace-window {
    bottom: 40px;
    overflow: visible;
    border-radius: 21px;
    box-shadow: 0 30px 70px rgba(19, 21, 16, 0.24);
  }

  .workspace-topbar {
    grid-template-columns: 52px 1fr;
    height: 46px;
    padding: 0 12px;
  }

  .workspace-breadcrumb {
    font-size: 9px;
  }

  .live-chip {
    display: none;
  }

  .workspace-body {
    grid-template-columns: 43px 126px minmax(0, 1fr);
    height: 355px;
    overflow: hidden;
    border-radius: 0 0 21px 21px;
  }

  .workspace-sidebar {
    padding: 10px 5px;
  }

  .workspace-logo,
  .workspace-side-button {
    width: 29px;
    height: 29px;
  }

  .file-panel {
    padding: 12px 6px;
  }

  .panel-label {
    padding: 0 4px 8px;
    font-size: 7px;
  }

  .panel-label button {
    display: none;
  }

  .file-row {
    grid-template-columns: 20px 1fr;
    gap: 5px;
    padding: 4px;
    font-size: 8px;
  }

  .file-row small {
    display: none;
  }

  .file-type {
    width: 19px;
    height: 19px;
    font-size: 6px;
  }

  .project-health {
    display: none;
  }

  .agent-panel {
    padding: 13px 11px 11px;
  }

  .agent-header {
    padding-bottom: 10px;
  }

  .agent-status {
    display: none;
  }

  .user-prompt {
    max-width: 95%;
    margin: 12px 0 9px;
    padding: 8px;
    font-size: 7px;
  }

  .task-line {
    grid-template-columns: 17px 1fr;
    min-height: 24px;
    font-size: 7px;
  }

  .task-line small {
    display: none;
  }

  .task-line > i {
    width: 14px;
    height: 14px;
  }

  .code-preview {
    margin-left: 0;
    padding: 8px;
    font-size: 5.8px;
  }

  .agent-composer {
    min-height: 35px;
    padding-left: 9px;
    font-size: 7px;
  }

  .agent-composer button {
    width: 25px;
    height: 25px;
  }

  .project-float {
    grid-template-columns: 34px 1fr auto;
    min-width: 215px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .project-float-one {
    top: 0;
    right: -6px;
  }

  .project-float-two {
    right: -3px;
    bottom: 5px;
    left: auto;
  }

  .float-icon {
    width: 34px;
    height: 34px;
  }

  .project-float strong {
    font-size: 8px;
  }

  .project-float small,
  .project-float > b {
    font-size: 7px;
  }

  .hero-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 23px 0;
  }

  .hero-strip div {
    justify-content: flex-start;
  }

  .projects-section,
  .workflow-section,
  .capabilities-section,
  .closing-section {
    padding: 92px 0;
  }

  .section-heading,
  .section-heading-wide {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 42px;
  }

  .section-index,
  .section-heading > p:last-child {
    grid-column: 1;
  }

  .section-heading h2,
  .workflow-intro h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .section-heading > p:last-child {
    font-size: 14px;
  }

  .project-showcase {
    border-radius: 23px;
  }

  .project-tabs {
    display: flex;
    overflow-x: auto;
    flex-direction: row;
    padding: 10px;
    scrollbar-width: none;
  }

  .project-tabs::-webkit-scrollbar {
    display: none;
  }

  .project-tab {
    min-width: 175px;
    min-height: 82px;
    flex: 0 0 auto;
    padding: 14px;
  }

  .project-tab strong {
    font-size: 13px;
  }

  .project-demo {
    padding: 9px;
  }

  .project-panel {
    border-radius: 17px;
  }

  .demo-head {
    min-height: 70px;
    padding: 12px;
  }

  .demo-badge {
    max-width: 100px;
    text-align: center;
  }

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

  .demo-files {
    padding: 20px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .demo-result {
    min-height: 350px;
    padding: 26px 19px 18px;
  }

  .demo-result h3 {
    font-size: 34px;
  }

  .workflow-grid {
    gap: 60px;
  }

  .workflow-steps li {
    grid-template-columns: minmax(0, 1fr);
    min-height: 230px;
    gap: 12px;
    padding: 30px 0;
  }

  .step-visual {
    grid-column: 1;
    margin-top: 12px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 420px;
  }

  .bento-card:nth-child(n) {
    grid-column: 1;
  }

  .bento-card {
    padding: 25px;
  }

  .bento-copy h3 {
    font-size: 32px;
  }

  .context-map {
    right: -76px;
    transform: scale(0.88);
  }

  .launch-card {
    right: 22px;
    width: 260px;
  }

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

  .closing-card {
    min-height: 570px;
    padding: 65px 20px;
    border-radius: 24px;
  }

  .closing-card::before {
    top: -155px;
    right: -180px;
  }

  .closing-card h2 {
    font-size: clamp(48px, 14.5vw, 74px);
  }

  .closing-card > p:not(.section-index) {
    font-size: 14px;
  }

  .site-footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-grid > div:first-child,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }

  .hero h1 {
    font-size: clamp(43px, 14.8vw, 62px);
  }

  .workspace-body {
    grid-template-columns: 40px 98px minmax(0, 1fr);
  }

  .file-row span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .code-preview {
    display: none;
  }

  .task-stream {
    margin-top: 6px;
  }

  .project-float-one {
    display: none;
  }

  .demo-head small {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026 visual refresh: brand, typography and real product screens */
:root {
  --font-display: "Onest", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.brand-name,
.button,
.desktop-nav,
.mobile-nav {
  font-family: var(--font-display);
}

.hero h1,
.section-heading h2,
.workflow-intro h2,
.closing-card h2 {
  font-weight: 800;
  letter-spacing: -0.058em;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(17, 18, 15, 0.12);
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.workspace-window {
  display: none;
}

.live-app-frame {
  position: absolute;
  right: -84px;
  bottom: 62px;
  z-index: 3;
  width: 780px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: #181917;
  box-shadow: 0 42px 100px rgba(17, 18, 15, 0.3), 0 4px 0 #0b0c0a;
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) rotateZ(-0.4deg);
  transform-origin: center bottom;
}

.live-app-bar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #f7f7f2;
  background: #11120f;
  font-size: 11px;
  font-weight: 700;
}

.live-app-bar > div,
.capture-label {
  display: flex;
  align-items: center;
}

.live-app-bar > div {
  gap: 9px;
}

.live-app-bar img {
  border-radius: 6px;
}

.capture-label {
  gap: 7px;
  color: #aeb0aa;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capture-label i,
.screen-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4be17a;
  box-shadow: 0 0 0 4px rgba(75, 225, 122, 0.12);
}

.live-app-shot {
  display: block;
  width: 100%;
  height: auto;
  background: #202120;
}

.project-float-one {
  top: 20px;
  right: -18px;
}

.project-float-two {
  right: 380px;
  bottom: 18px;
}

.project-float > b {
  color: #3f6044;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.project-showcase {
  display: none;
}

.real-screens {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: 20px;
}

.screen-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ece9e0;
  box-shadow: 0 26px 70px rgba(23, 24, 20, 0.12);
}

.screen-card-tall {
  background: var(--lime);
}

.screen-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}

.screen-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 700 10px/1 var(--font-display);
}

.screen-card-head small {
  display: block;
  margin-bottom: 5px;
  color: #72746d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.screen-card-tall .screen-card-head small {
  color: rgba(17, 18, 15, 0.55);
}

.screen-card-head h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.screen-state {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5e6058;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.screen-visual {
  position: relative;
  overflow: hidden;
  margin: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: #1f201f;
  box-shadow: 0 24px 58px rgba(17, 18, 15, 0.24);
}

.screen-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-visual-crop {
  aspect-ratio: 0.86;
}

.screen-visual-crop img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
}

.screen-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 18px 20px 21px;
}

.screen-card-foot span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #686a63;
  background: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.screen-card-tall .screen-card-foot span {
  color: rgba(17, 18, 15, 0.72);
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1160px) {
  .live-app-frame {
    right: -180px;
    width: 720px;
  }
}

@media (max-width: 980px) {
  .live-app-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 820px);
    margin: 20px auto 0;
    transform: none;
  }

  .real-screens {
    grid-template-columns: 1fr;
  }

  .screen-visual-crop {
    aspect-ratio: 16 / 9;
  }

  .screen-visual-crop img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .live-app-frame {
    overflow: hidden;
    border-radius: 21px;
  }

  .live-app-bar {
    height: 42px;
    padding: 0 12px;
  }

  .capture-label {
    display: none;
  }

  .project-float-one,
  .project-float-two {
    display: none;
  }

  .screen-card {
    border-radius: 23px;
  }

  .screen-card-head {
    grid-template-columns: minmax(0, 1fr);
    min-height: 96px;
    gap: 12px;
    padding: 17px;
  }

  .screen-number {
    width: 32px;
    height: 32px;
  }

  .screen-state {
    display: none;
  }

  .screen-card-head h3 {
    font-size: 20px;
  }

  .screen-visual {
    margin: 0 10px;
    border-radius: 15px;
  }

  .screen-card-foot {
    padding: 13px 13px 16px;
  }
}

.timeweb-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: #f8f9f3;
  background:
    radial-gradient(circle at 8% 10%, rgba(49, 87, 255, 0.2), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(199, 255, 74, 0.1), transparent 26%),
    #11120f;
}

.timeweb-orbit {
  position: absolute;
  top: -320px;
  right: -260px;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.timeweb-orbit::before,
.timeweb-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  content: "";
}

.timeweb-orbit::before {
  inset: 120px;
}

.timeweb-orbit::after {
  inset: 250px;
}

.timeweb-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 180px minmax(430px, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 70px;
}

.timeweb-heading .section-index {
  color: rgba(248, 249, 243, 0.48);
}

.timeweb-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(248, 249, 243, 0.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeweb-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 255, 74, 0.11);
}

.timeweb-heading h2 {
  margin: 0;
  font: 800 clamp(44px, 5vw, 76px)/0.98 var(--font-display);
  letter-spacing: -0.06em;
}

.timeweb-heading h2 span {
  color: #7f837a;
}

.timeweb-lead p {
  margin: 0 0 22px;
  color: #afb2aa;
  font-size: 15px;
  line-height: 1.65;
}

.timeweb-lead a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.timeweb-lead a span {
  transition: transform 0.2s ease;
}

.timeweb-lead a:hover span {
  transform: translate(3px, -3px);
}

.timeweb-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.timeweb-card {
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.timeweb-card-primary {
  background:
    radial-gradient(circle at 85% 20%, rgba(199, 255, 74, 0.16), transparent 30%),
    #1b1d18;
}

.timeweb-card-accent {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(199, 255, 74, 0.2), transparent 30%),
    #2446d8;
}

.timeweb-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 58px;
}

.timeweb-card-top span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 800;
}

.timeweb-card-top i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeweb-card h3 {
  margin: 0 0 12px;
  font: 750 clamp(25px, 2.8vw, 39px)/1.02 var(--font-display);
  letter-spacing: -0.048em;
}

.timeweb-card p {
  max-width: 520px;
  margin: 0;
  color: #aeb1a9;
  font-size: 14px;
  line-height: 1.62;
}

.timeweb-card-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.deploy-flow,
.data-stack,
.cloud-nodes {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.deploy-flow span,
.data-stack span,
.cloud-nodes span {
  display: grid;
  min-width: 54px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #d9dcd3;
  background: rgba(255, 255, 255, 0.05);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.deploy-flow i,
.cloud-nodes i {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-style: normal;
}

.deploy-flow .is-online {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.server-meter {
  display: grid;
  gap: 7px;
  margin-top: 31px;
}

.server-meter b {
  position: relative;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.server-meter b::after {
  display: block;
  width: var(--meter);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #7290ff);
  content: "";
}

.data-stack span:nth-child(2) {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.cloud-nodes i {
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.timeweb-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 0;
  color: #868981;
  font-size: 11px;
  line-height: 1.5;
}

.timeweb-note span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #c9ccc3;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .timeweb-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .timeweb-heading h2 {
    max-width: 760px;
  }

  .timeweb-lead {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .timeweb-section {
    padding: 92px 0;
  }

  .timeweb-heading {
    margin-bottom: 44px;
  }

  .timeweb-heading h2 {
    font-size: 44px;
  }

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

  .timeweb-card {
    min-height: 300px;
    padding: 23px;
    border-radius: 23px;
  }

  .timeweb-card-top {
    margin-bottom: 44px;
  }

  .timeweb-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Glass edition: cool palette, translucent surfaces, no green accents */
:root {
  --paper: #eaf1ff;
  --paper-deep: #dbe7fb;
  --ink: #0a1020;
  --ink-soft: #5d6880;
  --line: rgba(50, 74, 122, 0.18);
  --line-soft: rgba(50, 74, 122, 0.11);
  --lime: #7a94ff;
  --lime-deep: #516df2;
  --blue: #3157ff;
  --orange: #8b5cf6;
  --white: #f8fbff;
  --dark-panel: #0c1325;
  --glass: rgba(255, 255, 255, 0.52);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(9, 16, 32, 0.68);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 26px 75px rgba(27, 47, 88, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --shadow: var(--glass-shadow);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(92, 124, 255, 0.24), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(139, 92, 246, 0.16), transparent 26%),
    linear-gradient(145deg, #edf4ff 0%, #e3edff 46%, #f2f6ff 100%);
  background-attachment: fixed;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--ink);
  background: rgba(238, 244, 255, 0.2);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(238, 244, 255, 0.67);
  box-shadow: 0 12px 38px rgba(37, 57, 96, 0.1);
  backdrop-filter: blur(26px) saturate(1.35);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
}

.brand-logo {
  box-shadow: 0 10px 25px rgba(40, 66, 130, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-dark {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  background: rgba(10, 16, 32, 0.88);
  box-shadow: 0 14px 34px rgba(13, 24, 52, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #3157ff, #6d71ff);
  box-shadow: 0 16px 38px rgba(49, 87, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #2649e8, #7258f4);
  box-shadow: 0 20px 44px rgba(49, 87, 255, 0.34);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.button-ghost:hover {
  border-color: rgba(74, 99, 158, 0.32);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(38, 68, 126, 0.045) 50%, transparent 50.05%),
    radial-gradient(circle at 8% 38%, rgba(66, 106, 255, 0.28), transparent 31%),
    radial-gradient(circle at 82% 4%, rgba(145, 108, 255, 0.18), transparent 29%),
    linear-gradient(145deg, rgba(242, 247, 255, 0.94), rgba(222, 234, 255, 0.9));
}

.hero::before {
  background: rgba(61, 82, 126, 0.13);
}

.hero-glow {
  background: rgba(74, 112, 255, 0.2);
  filter: blur(110px);
}

.eyebrow > span {
  background: #3157ff;
  box-shadow: 0 0 0 5px rgba(49, 87, 255, 0.12), 0 0 22px rgba(49, 87, 255, 0.45);
}

.headline-accent::before {
  background: linear-gradient(90deg, #6886ff, #9180ff);
  box-shadow: 0 8px 24px rgba(79, 109, 236, 0.2);
}

.hero-lead,
.section-heading > p:last-child {
  color: #536078;
}

.hero-product::before {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(80, 111, 255, 0.25), transparent 30%),
    radial-gradient(circle at 78% 65%, rgba(139, 92, 246, 0.2), transparent 34%);
}

.orbit {
  border-color: rgba(57, 82, 138, 0.12);
}

.live-app-frame {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(9, 16, 32, 0.78);
  box-shadow: 0 44px 110px rgba(28, 47, 91, 0.33), 0 3px 0 rgba(8, 14, 29, 0.88), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.live-app-frame::after,
.screen-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(92, 124, 255, 0.08), rgba(139, 92, 246, 0.035) 55%, transparent);
  content: "";
  pointer-events: none;
}

.live-app-bar {
  position: relative;
  z-index: 4;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 13, 28, 0.74);
  backdrop-filter: blur(18px);
}

.live-app-shot,
.screen-visual img {
  filter: saturate(0.28) contrast(1.04) brightness(0.96);
}

.capture-label i,
.screen-state i,
.project-float > i {
  background: #6988ff;
  box-shadow: 0 0 0 4px rgba(105, 136, 255, 0.14), 0 0 18px rgba(105, 136, 255, 0.48);
}

.project-float {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 52px rgba(30, 52, 98, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
}

.float-icon-lime {
  color: #fff;
  background: linear-gradient(135deg, #3157ff, #8b5cf6);
}

.hero-strip {
  min-height: 76px;
  margin-bottom: 22px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.projects-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(139, 92, 246, 0.12), transparent 25%),
    radial-gradient(circle at 10% 78%, rgba(63, 105, 255, 0.16), transparent 28%),
    rgba(240, 246, 255, 0.72);
}

.section-heading h2 span,
.workflow-intro h2 span {
  color: #8793aa;
}

.section-index {
  color: #6e7890;
}

.screen-card {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
}

.screen-card::before,
.bento-card::before,
.timeweb-card::before,
.workflow-steps li::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  content: "";
  pointer-events: none;
}

.screen-card-tall {
  background:
    radial-gradient(circle at 84% 12%, rgba(139, 92, 246, 0.17), transparent 30%),
    rgba(217, 228, 255, 0.58);
}

.screen-state {
  border-color: rgba(70, 94, 146, 0.16);
  background: rgba(255, 255, 255, 0.38);
}

.screen-visual {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 64px rgba(21, 37, 76, 0.28);
}

.screen-card-foot span,
.screen-card-tall .screen-card-foot span {
  border-color: rgba(76, 101, 155, 0.16);
  color: #58647c;
  background: rgba(255, 255, 255, 0.46);
}

.workflow-section {
  color: #f4f7ff;
  background:
    radial-gradient(circle at 18% 18%, rgba(49, 87, 255, 0.23), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(139, 92, 246, 0.18), transparent 30%),
    #091122;
}

.workflow-intro .section-index {
  color: #76829c;
}

.workflow-intro h2 span {
  color: #809aff;
}

.workflow-intro > p:not(.section-index),
.workflow-steps p {
  color: #9faac1;
}

.arrow-link {
  border-color: rgba(255, 255, 255, 0.19);
}

.arrow-link span {
  color: #809aff;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps li {
  position: relative;
  min-height: 205px;
  padding: 30px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.workflow-steps li:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.step-visual {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.capabilities-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(49, 87, 255, 0.15), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 26%),
    rgba(231, 239, 255, 0.76);
}

.bento-card {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(26px) saturate(1.2);
  -webkit-backdrop-filter: blur(26px) saturate(1.2);
}

.bento-dark {
  color: #f6f8ff;
  background:
    radial-gradient(circle at 88% 16%, rgba(80, 113, 255, 0.18), transparent 28%),
    rgba(10, 17, 34, 0.9);
}

.bento-lime,
.bento-paper {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
}

.bento-lime .bento-copy > span,
.bento-lime .bento-copy p,
.bento-copy > span,
.bento-copy p {
  color: #647087;
}

.bento-blue {
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(180, 160, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(47, 78, 219, 0.92), rgba(89, 76, 210, 0.9));
}

.timeweb-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(66, 101, 255, 0.28), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(139, 92, 246, 0.2), transparent 28%),
    #080f20;
}

.timeweb-kicker i {
  background: #7c96ff;
  box-shadow: 0 0 0 4px rgba(124, 150, 255, 0.13), 0 0 18px rgba(124, 150, 255, 0.38);
}

.timeweb-lead a {
  color: #8da3ff;
}

.timeweb-card {
  position: relative;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 65px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
}

/* Tablet/mobile alignment and stronger format chips. */
.hero-strip div span {
  padding: 8px 13px;
  border-color: rgba(56, 78, 132, 0.16);
  color: #26334f;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 22px rgba(36, 54, 96, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 9px;
}

@media (max-width: 980px) {
  .hero-strip {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 18px;
    text-align: center;
  }

  .hero-strip div {
    justify-content: center;
  }

  .workflow-intro {
    width: min(100%, 720px);
    margin-inline: auto;
    text-align: center;
  }

  .workflow-intro .section-index {
    justify-content: center;
    text-align: center;
  }

  .workflow-intro > p:not(.section-index) {
    margin-right: auto;
    margin-left: auto;
  }

  .workflow-intro .arrow-link {
    width: fit-content;
    margin-inline: auto;
  }

  .timeweb-heading {
    justify-items: center;
    text-align: center;
  }

  .timeweb-heading > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .timeweb-kicker {
    justify-content: center;
  }

  .timeweb-heading h2,
  .timeweb-lead {
    margin-inline: auto;
  }

  .timeweb-lead {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero-strip div {
    gap: 7px;
  }

  .hero-strip div span {
    min-width: 72px;
    padding: 8px 10px;
    font-size: 8px;
  }

  .workflow-intro h2,
  .timeweb-heading h2 {
    text-wrap: balance;
  }
}

.timeweb-card-primary {
  background:
    radial-gradient(circle at 85% 20%, rgba(78, 111, 255, 0.23), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.timeweb-card-accent {
  background:
    radial-gradient(circle at 85% 15%, rgba(177, 145, 255, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(42, 70, 186, 0.7), rgba(74, 56, 170, 0.72));
}

.deploy-flow .is-online,
.data-stack span:nth-child(2) {
  color: #fff;
  border-color: rgba(117, 145, 255, 0.8);
  background: linear-gradient(135deg, #3157ff, #806cf0);
}

.server-meter b::after {
  background: linear-gradient(90deg, #4a6dff, #9b7cff);
}

.closing-section {
  background: transparent;
}

.closing-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 82% 14%, rgba(83, 110, 255, 0.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(139, 92, 246, 0.16), transparent 30%),
    rgba(8, 15, 31, 0.91);
  box-shadow: 0 34px 90px rgba(34, 51, 91, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(26px);
}

.closing-card::before {
  border-color: rgba(96, 124, 255, 0.54);
  opacity: 0.72;
}

.closing-card h2 span {
  color: #8299ff;
}

.closing-note span {
  color: #8299ff;
}

.site-footer {
  background: rgba(229, 238, 255, 0.76);
  backdrop-filter: blur(20px);
}

.footer-grid > div:first-child p,
.footer-links > span,
.footer-cta > span,
.footer-bottom {
  color: #6f7a91;
}

.footer-links a {
  color: #48546b;
}

.footer-cta a {
  border-color: #52617d;
}

.footer-cta a b {
  color: #3157ff;
}

@media (max-width: 720px) {
  .site-header.is-scrolled,
  body.menu-open .site-header {
    background: rgba(238, 244, 255, 0.79);
  }

  .mobile-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(235, 242, 255, 0.88);
    backdrop-filter: blur(28px) saturate(1.25);
    -webkit-backdrop-filter: blur(28px) saturate(1.25);
  }

  .hero-strip {
    padding: 14px;
  }

  .workflow-steps li {
    padding: 26px 18px;
  }
}

/* Navigation, closing composition and motion pass */
.site-header,
.site-header.is-scrolled,
body.menu-open .site-header {
  padding: 16px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.header-inner {
  min-height: 66px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(247, 250, 255, 0.58);
  box-shadow: 0 18px 52px rgba(31, 51, 93, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  pointer-events: auto;
  animation: headerArrival 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: min-height 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .header-inner,
body.menu-open .header-inner {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(244, 248, 255, 0.8);
  box-shadow: 0 14px 42px rgba(31, 51, 93, 0.16), inset 0 1px 0 #fff;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  animation: logoBreathe 5.5s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.brand:hover .brand-logo {
  filter: saturate(1.18) brightness(1.08);
  transform: rotate(-5deg) scale(1.07);
}

.desktop-nav {
  gap: 3px;
  margin-right: auto;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.desktop-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #46536d;
  font-size: 12px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.desktop-nav a::after {
  display: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 7px 20px rgba(40, 60, 104, 0.09);
  transform: translateY(-1px);
}

.header-actions {
  flex: 0 0 auto;
  gap: 12px;
}

.header-actions .button-small {
  min-height: 44px;
  padding: 0 17px;
}

.menu-toggle {
  border-color: rgba(65, 83, 122, 0.22);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(49, 87, 255, 0.36);
  background: rgba(255, 255, 255, 0.82);
  transform: scale(1.04);
}

.menu-toggle span {
  height: 2px;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), width 0.25s ease;
}

.mobile-nav-head,
.mobile-nav > p {
  display: none;
}

.headline-accent::before {
  background: linear-gradient(90deg, #5578ff, #a174ff, #5578ff);
  background-size: 220% 100%;
  animation: accentFlow 5s ease-in-out infinite;
}

@media (min-width: 981px) {
  .live-app-frame {
    animation: productHover 7.5s ease-in-out infinite;
  }

  .orbit-one {
    animation: orbitPulse 8s ease-in-out infinite;
  }

  .orbit-two {
    animation: orbitPulse 8s ease-in-out -4s infinite reverse;
  }
}

.screen-card,
.bento-card,
.timeweb-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.screen-card:hover,
.bento-card:hover,
.timeweb-card:hover {
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 82px rgba(27, 47, 88, 0.21), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateY(-7px);
}

.screen-card::after,
.bento-card::after,
.timeweb-card::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  z-index: 5;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg) translateX(-150%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-card:hover::after,
.bento-card:hover::after,
.timeweb-card:hover::after {
  transform: skewX(-18deg) translateX(720%);
}

.closing-section {
  padding: 68px 0 26px;
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  min-height: 560px;
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
  padding: clamp(52px, 6vw, 78px);
  text-align: left;
}

.closing-card::before {
  top: -260px;
  right: -170px;
  width: 600px;
  height: 600px;
  border-width: 100px;
  animation: closingHalo 10s ease-in-out infinite;
}

.closing-card::after {
  bottom: -285px;
  left: -180px;
  animation: closingHalo 12s ease-in-out -4s infinite reverse;
}

.closing-copy,
.closing-board {
  position: relative;
  z-index: 3;
}

.closing-card .section-index {
  margin: 0 0 24px;
  color: #8994ad;
}

.closing-card h2 {
  max-width: 700px;
  font-size: clamp(50px, 5.5vw, 78px);
  line-height: 0.93;
}

.closing-copy > p:not(.section-index) {
  max-width: 570px;
  margin: 28px 0 30px;
  color: #a8b2c8;
  font-size: 16px;
  line-height: 1.62;
}

.closing-note {
  margin-top: 19px;
  color: #7f8aa2;
}

.closing-board {
  overflow: hidden;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  transform: rotate(1.8deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.closing-card:hover .closing-board {
  border-color: rgba(136, 158, 255, 0.38);
  transform: rotate(0deg) translateY(-5px);
}

.closing-board-head,
.closing-board-head > span,
.closing-board-head > b,
.closing-timeline > div,
.closing-result {
  display: flex;
  align-items: center;
}

.closing-board-head {
  justify-content: space-between;
  padding: 2px 2px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-board-head > span {
  gap: 9px;
  font-size: 11px;
  font-weight: 780;
}

.closing-board-head img {
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.closing-board-head > b {
  gap: 6px;
  color: #9cabc9;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.closing-board-head > b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #839aff;
  box-shadow: 0 0 0 4px rgba(131, 154, 255, 0.12), 0 0 17px rgba(131, 154, 255, 0.55);
  animation: liveDot 1.9s ease-in-out infinite;
}

.closing-project {
  margin: 14px 0 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(72, 101, 230, 0.2), rgba(137, 95, 236, 0.1));
}

.closing-project span,
.closing-result > span {
  display: block;
  margin-bottom: 9px;
  color: #8290ac;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.closing-project strong {
  display: block;
  font-size: 23px;
  letter-spacing: -0.05em;
}

.closing-project small {
  display: block;
  margin-top: 5px;
  color: #95a1ba;
  font-size: 9px;
}

.closing-timeline {
  padding: 5px 5px 8px;
}

.closing-timeline > div {
  position: relative;
  gap: 11px;
  min-height: 52px;
}

.closing-timeline > div:not(:last-child)::after {
  position: absolute;
  top: 34px;
  bottom: -12px;
  left: 11px;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.closing-timeline > div > i {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #b8c4dd;
  background: rgba(255, 255, 255, 0.08);
  font-size: 9px;
  font-style: normal;
}

.closing-timeline .is-live > i::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8299ff;
  box-shadow: 0 0 13px rgba(130, 153, 255, 0.8);
  content: "";
  animation: liveDot 1.9s ease-in-out infinite;
}

.closing-timeline > div > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.closing-timeline b {
  font-size: 10px;
}

.closing-timeline small {
  color: #78849d;
  font-size: 8px;
}

.closing-result {
  position: relative;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px 19px;
  border: 1px solid rgba(126, 151, 255, 0.3);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(55, 88, 230, 0.85), rgba(113, 83, 216, 0.82));
  box-shadow: 0 18px 38px rgba(31, 50, 139, 0.28);
}

.closing-result::before {
  position: absolute;
  inset: -60% -30%;
  background: linear-gradient(90deg, transparent 35%, rgba(255, 255, 255, 0.16), transparent 65%);
  content: "";
  transform: translateX(-55%) rotate(12deg);
  animation: resultShine 4.6s ease-in-out infinite;
}

.closing-result > span {
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.closing-result strong,
.closing-result b {
  position: relative;
  z-index: 1;
}

.closing-result strong {
  margin-left: auto;
  font-size: 19px;
  letter-spacing: 0.06em;
}

.closing-result b {
  margin-left: 15px;
  font-size: 19px;
}

.site-footer {
  padding: 14px 0 28px;
  background: transparent;
  backdrop-filter: none;
}

.footer-grid {
  position: relative;
  gap: 44px;
  margin-bottom: 0;
  padding: 43px 45px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 22px 60px rgba(34, 55, 99, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
}

.footer-grid::before {
  position: absolute;
  top: -110px;
  right: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(95, 124, 255, 0.11);
  filter: blur(2px);
  content: "";
  pointer-events: none;
}

.footer-grid > div {
  position: relative;
  z-index: 1;
}

.footer-grid > div:first-child p {
  color: #59657c;
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  text-decoration: none;
  transform: translateX(4px);
}

.footer-cta a {
  padding: 14px 15px;
  border: 1px solid rgba(61, 82, 126, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.42);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta a:hover {
  color: #fff;
  background: #0a1020;
  box-shadow: 0 14px 30px rgba(10, 16, 32, 0.18);
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  display: grid;
  min-height: 68px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  padding: 12px 14px 12px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  color: #aeb9cf;
  background:
    radial-gradient(circle at 65% 0%, rgba(84, 112, 255, 0.2), transparent 38%),
    linear-gradient(120deg, #091225, #111a31 60%, #0a1020);
  box-shadow: 0 18px 42px rgba(20, 35, 68, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.footer-bottom::before {
  position: absolute;
  top: -72px;
  right: 12%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(129, 151, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer-bottom > * {
  position: relative;
  z-index: 1;
}

.footer-copyright {
  white-space: nowrap;
}

.footer-bottom-note {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 9px;
  color: #edf2ff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-bottom-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6f8cff;
  box-shadow: 0 0 0 5px rgba(111, 140, 255, 0.12), 0 0 18px rgba(111, 140, 255, 0.7);
  animation: liveDot 1.9s ease-in-out infinite;
}

.footer-top-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 18px;
  padding: 0 15px 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-top-link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.footer-top-link b {
  color: #8299ff;
  font-size: 17px;
}

@keyframes headerArrival {
  from { opacity: 0; transform: translateY(-18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoBreathe {
  0%, 100% { box-shadow: 0 10px 25px rgba(40, 66, 130, 0.22), 0 0 0 rgba(92, 124, 255, 0); }
  50% { box-shadow: 0 13px 30px rgba(40, 66, 130, 0.28), 0 0 20px rgba(92, 124, 255, 0.18); }
}

@keyframes accentFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes productHover {
  0%, 100% { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) rotateZ(-0.4deg) translateY(0); }
  50% { transform: perspective(1400px) rotateY(-2.5deg) rotateX(0.7deg) rotateZ(-0.2deg) translateY(-10px); }
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.58; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.045); }
}

@keyframes closingHalo {
  0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.78; transform: scale(1.08) rotate(8deg); }
}

@keyframes liveDot {
  0%, 100% { opacity: 0.65; transform: scale(0.84); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes resultShine {
  0%, 18% { transform: translateX(-58%) rotate(12deg); }
  55%, 100% { transform: translateX(58%) rotate(12deg); }
}

@keyframes menuLinkIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) and (min-width: 981px) {
  .desktop-nav a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11px;
  }

  .desktop-login {
    display: none;
  }
}

@media (max-width: 980px) {
  body::after {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(7, 12, 25, 0.28);
    content: "";
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
  }

  body.menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav,
  body.menu-open .mobile-nav {
    position: fixed;
    top: 98px;
    right: max(18px, calc((100vw - 860px) / 2));
    bottom: auto;
    left: max(18px, calc((100vw - 860px) / 2));
    z-index: 105;
    display: flex;
    max-height: calc(100svh - 116px);
    gap: 0;
    padding: 15px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 27px;
    background: rgba(246, 249, 255, 0.96);
    box-shadow: 0 32px 90px rgba(15, 27, 56, 0.28), inset 0 1px 0 #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(34px) saturate(1.3);
    -webkit-backdrop-filter: blur(34px) saturate(1.3);
    transform: translateY(-14px) scale(0.975);
    transform-origin: top center;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 7px 12px;
    color: #7a869c;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.13em;
  }

  .mobile-nav-head i {
    font-style: normal;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
  }

  .mobile-nav a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 62px;
    gap: 9px;
    padding: 0 13px;
    border: 0;
    border-top: 1px solid rgba(55, 75, 116, 0.11);
    border-radius: 13px;
    font-size: 21px;
    letter-spacing: -0.045em;
    opacity: 0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .mobile-nav a {
    animation: menuLinkIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  body.menu-open .mobile-nav a:nth-of-type(1) { animation-delay: 0.04s; }
  body.menu-open .mobile-nav a:nth-of-type(2) { animation-delay: 0.08s; }
  body.menu-open .mobile-nav a:nth-of-type(3) { animation-delay: 0.12s; }
  body.menu-open .mobile-nav a:nth-of-type(4) { animation-delay: 0.16s; }
  body.menu-open .mobile-nav a:nth-of-type(5) { animation-delay: 0.2s; }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: #1c42d2;
    background: rgba(82, 111, 238, 0.08);
    transform: translateX(3px);
  }

  .mobile-nav a small {
    color: #8a96aa;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .mobile-nav a b {
    color: #5573ee;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-nav > p {
    display: block;
    margin: 10px 5px 0;
    padding: 13px 8px 2px;
    border-top: 1px solid rgba(55, 75, 116, 0.11);
    color: #7b879d;
    font-size: 9px;
    line-height: 1.4;
    text-align: center;
  }

  .closing-card {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 58px;
  }

  .closing-copy {
    max-width: 700px;
  }

  .closing-board {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-header.is-scrolled,
  body.menu-open .site-header {
    padding: 10px 0;
  }

  .header-inner,
  .site-header.is-scrolled .header-inner,
  body.menu-open .header-inner {
    min-height: 58px;
    padding: 8px 9px 8px 10px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .header-actions .button-small span {
    display: inline;
  }

  .mobile-nav,
  body.menu-open .mobile-nav {
    top: 82px;
    right: 14px;
    left: 14px;
    max-height: calc(100svh - 96px);
    border-radius: 23px;
  }

  .closing-section {
    padding: 24px 0 16px;
  }

  .closing-card {
    min-height: auto;
    gap: 38px;
    padding: 48px 22px 23px;
  }

  .closing-card::before {
    top: -210px;
    right: -250px;
  }

  .closing-card h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .closing-copy > p:not(.section-index) {
    margin: 23px 0 26px;
    font-size: 14px;
  }

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

  .closing-note {
    justify-content: center;
  }

  .closing-board {
    padding: 13px;
    border-radius: 21px;
    transform: none;
  }

  .closing-card:hover .closing-board {
    transform: translateY(-3px);
  }

  .closing-project {
    padding: 18px;
  }

  .footer-grid {
    gap: 34px 22px;
    padding: 34px 24px;
    border-radius: 23px;
  }

  .footer-bottom {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    gap: 7px 14px;
    margin-top: 10px;
    padding: 12px 13px 12px 16px;
    border-radius: 18px;
  }

  .footer-bottom-note {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: start;
    font-size: 10px;
  }

  .footer-top-link {
    grid-row: 1;
    grid-column: 2;
    min-height: 38px;
    gap: 12px;
    padding: 0 13px;
  }

  .footer-brand .brand-name {
    display: inline;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .header-actions .button-small {
    min-height: 40px;
    padding: 0 13px;
  }

  .header-actions .button-small .header-cta-label {
    font-size: 0;
  }

  .header-actions .button-small .header-cta-label::after {
    content: "Открыть";
    font-size: 11px;
  }

  .mobile-nav a {
    min-height: 58px;
    font-size: 19px;
  }

  .closing-card {
    padding-right: 18px;
    padding-left: 18px;
  }

  .closing-project strong {
    font-size: 20px;
  }
}

/* Section density and label legibility pass. */
.section-index {
  font-size: 12px;
  letter-spacing: 0.11em;
}

.timeweb-kicker,
.screen-card-head small,
.result-kicker,
.bento-copy > span,
.timeweb-card-top i,
.footer-links > span,
.footer-cta > span {
  font-size: 10px;
}

.screen-card-foot span {
  font-size: 9px;
}

.projects-section,
.workflow-section,
.capabilities-section,
.timeweb-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section-heading,
.section-heading-wide {
  margin-bottom: 52px;
}

.timeweb-heading {
  margin-bottom: 54px;
}

.closing-section {
  padding-top: 54px;
  padding-bottom: 22px;
}

@media (max-width: 980px) {
  .projects-section,
  .workflow-section,
  .capabilities-section,
  .timeweb-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading,
  .section-heading-wide {
    margin-bottom: 36px;
  }

  .workflow-grid {
    gap: 48px;
  }

  .timeweb-heading {
    gap: 20px;
    margin-bottom: 38px;
  }

  .closing-section {
    padding-top: 40px;
    padding-bottom: 18px;
  }
}

@media (max-width: 720px) {
  .section-index {
    font-size: 11px;
  }

  .timeweb-kicker {
    font-size: 10px;
  }

  .projects-section,
  .workflow-section,
  .capabilities-section,
  .timeweb-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .workflow-grid {
    gap: 40px;
  }

  .closing-section {
    padding-top: 28px;
    padding-bottom: 14px;
  }
}

/* Mobile control polish: compact header, vector arrows and a refined live marker. */
.header-cta-label-short {
  display: none;
}

.direction-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s ease;
}

.direction-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button .direction-icon {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
}

.button-dark .direction-icon,
.button-primary .direction-icon {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-ghost .direction-icon {
  color: #3157ff;
  background: rgba(49, 87, 255, 0.09);
}

.header-actions .button-small {
  min-height: 40px;
  gap: 9px;
  padding: 0 9px 0 15px;
  font-size: 12px;
}

.header-actions .button-small .direction-icon {
  width: 23px;
  height: 23px;
  padding: 4px;
}

.header-actions .button-small .header-cta-label {
  font-size: 12px;
}

.button:hover .direction-icon-external,
.arrow-link:hover .direction-icon-external,
.result-footer a:hover .direction-icon-external {
  transform: translate(2px, -2px);
}

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

.eyebrow > span {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1px solid rgba(70, 105, 255, 0.2);
  border-radius: 50%;
  background: rgba(70, 105, 255, 0.09);
  box-shadow: 0 5px 16px rgba(49, 87, 255, 0.18);
}

.eyebrow > span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5b83ff, #244cff);
  box-shadow: 0 0 10px rgba(49, 87, 255, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  content: "";
  transform: translate(-50%, -50%);
}

.eyebrow > span::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(49, 87, 255, 0.12);
  border-radius: 50%;
  content: "";
  animation: eyebrowSignal 2.8s ease-in-out infinite;
}

@keyframes eyebrowSignal {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

@media (max-width: 720px) {
  .site-header,
  .site-header.is-scrolled,
  body.menu-open .site-header {
    padding: 8px 0;
  }

  .header-inner,
  .site-header.is-scrolled .header-inner,
  body.menu-open .header-inner {
    min-height: 50px;
    gap: 7px;
    padding: 6px 7px;
    border-radius: 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: -0.035em;
  }

  .header-actions {
    gap: 6px;
    margin-left: auto;
  }

  .header-actions .button-small {
    min-height: 34px;
    gap: 7px;
    padding: 0 9px 0 12px;
    font-size: 11px;
    white-space: nowrap;
    box-shadow: 0 7px 18px rgba(13, 24, 52, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .header-actions .button-small span {
    display: inline-flex;
  }

  .header-actions .button-small .header-cta-label-long {
    display: none;
  }

  .header-actions .button-small .header-cta-label-short {
    display: inline;
    font-size: 11px;
  }

  .header-actions .button-small .header-cta-label::after {
    content: none;
  }

  .header-actions .button-small .direction-icon {
    width: 22px;
    height: 22px;
    padding: 4px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .hero-actions .button {
    min-height: 50px;
    gap: 11px;
  }

  .hero-actions .button .direction-icon {
    width: 25px;
    height: 25px;
  }

  .eyebrow {
    gap: 9px;
  }

  .eyebrow > span {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow > span::after {
    animation: none;
  }
}
