:root {
  --ink: #10211c;
  --ink-soft: #49605a;
  --night: #081713;
  --night-soft: #10241e;
  --paper: #f4f3ec;
  --paper-warm: #eee9dc;
  --sage: #dfe9de;
  --white: #fffefa;
  --acid: #d9ff68;
  --acid-deep: #b7df43;
  --coral: #ff8664;
  --line: rgba(16, 33, 28, 0.15);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(10, 30, 24, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 76px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7vw, 6.75rem);
  font-weight: 670;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  font-weight: 650;
}

h3 {
  font-size: 1.35rem;
  font-weight: 650;
}

::selection {
  background: var(--acid);
  color: var(--night);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.locale-copy {
  display: none;
}

html[lang="az"] .locale-copy[lang="az"],
html[lang="ru"] .locale-copy[lang="ru"],
html[lang="en"] .locale-copy[lang="en"] {
  display: contents;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--acid);
  color: var(--night);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 6px 20px;
  background: var(--acid);
  color: var(--night);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 134, 100, 0.2);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 23, 19, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  color: var(--acid);
}

.brand-mark path,
.brand-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.brand-mark circle {
  fill: currentColor;
  stroke: none;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.11em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

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

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 34px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--white);
  color: var(--night);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 730;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.78rem;
}

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

.button-full {
  width: 100%;
}

.button-primary {
  background: var(--acid);
  color: var(--night);
}

.button-primary:hover {
  background: #e5ff95;
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--night);
  color: var(--white);
}

.site-header .button-dark {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--night);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

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

.button-ghost-dark {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 72px) 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 35%),
    var(--night);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-glow-one {
  top: -200px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(217, 255, 104, 0.13), transparent 68%);
}

.hero-glow-two {
  bottom: -300px;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 134, 100, 0.09), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

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

.hero h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5.6vw, 5.25rem);
}

.eyebrow,
.section-kicker,
.overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.71rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--acid);
}

.eyebrow-mark {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.55;
}

.hero-disclaimer {
  max-width: 620px;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 2px solid var(--coral);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.2;
  transition: border-color 160ms ease, color 160ms ease;
}

.hero-secondary-link:hover {
  border-color: var(--white);
  color: var(--white);
}

.hero-microcopy {
  max-width: 620px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}

.hero-example {
  position: relative;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.example-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.example-badge {
  padding: 5px 8px;
  border: 1px solid rgba(217, 255, 104, 0.35);
  border-radius: 999px;
  color: var(--acid);
  font-size: 0.54rem;
  white-space: nowrap;
}

.example-intro {
  margin: 22px 0 18px;
}

.example-intro > span,
.example-caption,
.example-review span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 700;
}

.example-intro h2 {
  margin: 6px 0 0;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.12;
}

.example-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 1.1fr);
  align-items: center;
  gap: 12px;
}

.example-source,
.example-output {
  min-height: 132px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.14);
}

.document-preview {
  position: relative;
  margin-top: 9px;
  padding: 17px 12px 12px;
  overflow: hidden;
  border-radius: 9px;
  background: #f3f0e6;
  color: var(--night);
}

.document-preview i {
  width: 72%;
  height: 3px;
  display: block;
  margin-bottom: 6px;
  border-radius: 99px;
  background: rgba(16, 33, 28, 0.16);
}

.document-preview i:nth-child(2) {
  width: 46%;
}

.document-preview i:nth-child(3) {
  width: 62%;
}

.document-preview p {
  margin: 12px 0 1px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 750;
}

.document-preview small {
  font-size: 0.58rem;
}

.example-arrow {
  color: var(--acid);
}

.example-output {
  display: grid;
  align-content: start;
  gap: 7px;
}

.example-output .example-caption {
  margin-bottom: 3px;
}

.example-output code {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.62rem;
}

.example-output code span {
  color: #9acfff;
}

.example-review {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 134, 100, 0.1);
}

.example-review-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--night) !important;
}

.example-review p {
  margin: 2px 0 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.35;
}

.example-review small {
  color: var(--acid);
  font-size: 0.62rem;
}

.example-outcome {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.71rem;
  font-weight: 650;
}

.hero-system {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.system-header,
.rubric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.system-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

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

.system-orbit {
  position: relative;
  width: min(250px, 66vw);
  aspect-ratio: 1;
  margin: 24px auto 18px;
}

.orbit-ring,
.orbit-core,
.orbit-node {
  position: absolute;
  border-radius: 50%;
}

.orbit-ring {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-ring-one::before,
.orbit-ring-two::before {
  position: absolute;
  inset: -1px;
  border-top: 1px solid var(--acid);
  border-radius: 50%;
  content: "";
  transform: rotate(45deg);
}

.orbit-ring-two {
  inset: 44px;
  border-style: dashed;
}

.orbit-ring-two::before {
  border-color: var(--coral);
  transform: rotate(-35deg);
}

.orbit-core {
  inset: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: var(--acid);
  box-shadow: 0 0 70px rgba(217, 255, 104, 0.28);
  color: var(--night);
}

.orbit-core svg {
  width: 35px;
}

.orbit-core path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.orbit-node {
  width: 12px;
  height: 12px;
  border: 3px solid var(--night-soft);
  background: var(--acid);
}

.node-one {
  top: 10%;
  left: 24%;
}

.node-two {
  top: 52%;
  right: -5px;
  background: var(--coral);
}

.node-three {
  bottom: 5%;
  left: 33%;
  background: #9acfff;
}

.system-loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-loop li {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 8px;
  padding: 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.system-loop li > span {
  grid-row: 1 / 3;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.64rem;
}

.system-loop strong {
  font-size: 0.78rem;
}

.system-loop small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(34px, 4.5vw, 54px);
  border-top: 1px solid var(--line-dark);
}

.hero-facts > div {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px 24px;
  border-right: 1px solid var(--line-dark);
}

.hero-facts > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.hero-facts strong {
  color: var(--acid);
  font-size: clamp(0.95rem, 1.45vw, 1.18rem);
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-facts span {
  max-width: 200px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  line-height: 1.35;
}

.section {
  padding: clamp(90px, 11vw, 154px) 0;
}

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

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

.section-sage {
  background: var(--sage);
}

.section-dark {
  background: var(--night);
  color: var(--white);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(42px, 7vw, 80px);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.56);
}

.section-kicker {
  color: var(--ink-soft);
}

.section-kicker > span:first-child {
  min-width: 30px;
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.section-dark .section-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.35);
}

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

.feature-number {
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 54px 0 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.6rem;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.engineering-cycle {
  margin-top: 44px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sage);
}

.engineering-heading {
  max-width: 760px;
}

.engineering-heading .eyebrow {
  color: var(--ink-soft);
}

.engineering-heading h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.engineering-heading > p:last-child,
.engineering-steps p {
  color: var(--ink-soft);
}

.engineering-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.engineering-steps li {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.engineering-index {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  color: var(--ink-soft);
}

.engineering-steps h4 {
  margin: 10px 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.engineering-steps p,
.engineering-note {
  margin: 0;
  font-size: 0.9rem;
}

.engineering-note {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 580px) {
  .engineering-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

.timeline-item {
  display: grid;
  grid-template-columns: minmax(70px, 0.2fr) minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.timeline-item > div:last-child {
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1.35fr);
  align-items: baseline;
  gap: 20px;
}

.timeline-index {
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

.timeline-meta {
  grid-column: 1 / -1;
  margin: 0 0 -7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item h3,
.timeline-item p {
  margin: 0;
}

.timeline-item p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.fit-grid .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  margin-bottom: 0;
}

.fit-columns {
  display: grid;
  gap: 14px;
}

.fit-card {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.4);
}

.fit-card-yes {
  background: var(--white);
}

.fit-card-path {
  background: rgba(255, 255, 255, 0.62);
}

.fit-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.fit-card-header span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  font-weight: 800;
}

.fit-card-path .fit-card-header span {
  background: rgba(209, 255, 72, 0.58);
}

.fit-card-header h3 {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.projects-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 70px;
  align-items: end;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: clamp(42px, 7vw, 80px);
}

.project-tags span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 650;
}

.guardrail-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 50px;
  padding: clamp(28px, 5vw, 60px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--night);
  color: var(--white);
}

.guardrail-intro {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.guardrail-symbol {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--night);
  font-size: 1.5rem;
}

.guardrail-panel .overline {
  margin-bottom: 18px;
  color: var(--acid);
}

.guardrail-panel h3 {
  max-width: 330px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.guardrail-list,
.terms-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guardrail-list li,
.terms-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.guardrail-list li:first-child,
.terms-list li:first-child {
  padding-top: 0;
}

.guardrail-list li:last-child,
.terms-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guardrail-list span,
.terms-list span {
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
}

.guardrail-list p,
.terms-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
}

.selection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.selection-grid .section-heading {
  margin-bottom: 0;
}

.selection-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 36px 0 20px;
}

.selection-flow span {
  padding: 8px 11px;
  border: 1px solid rgba(16, 33, 28, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 690;
}

.selection-flow i {
  color: var(--coral);
  font-style: normal;
}

.selection-note {
  max-width: 600px;
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--coral);
  font-size: 0.82rem !important;
}

.rubric-card {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--night);
  color: var(--white);
  box-shadow: var(--shadow);
}

.rubric-header {
  margin-bottom: 30px;
}

.rubric-header .overline {
  margin: 0;
  color: var(--acid);
}

.rubric-header > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.rubric-card ul {
  display: grid;
  gap: 20px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.rubric-card li {
  display: grid;
  gap: 8px;
}

.rubric-card li span {
  font-size: 0.81rem;
}

.rubric-card li i {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.rubric-card li i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--acid), var(--coral));
  content: "";
}

.rubric-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.terms-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.62fr);
  gap: 14px;
}

.terms-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.terms-main {
  background: var(--white);
}

.terms-main h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
}

.terms-main > p:not(.section-kicker) {
  max-width: 680px;
  color: var(--ink-soft);
}

.terms-list {
  margin-top: 42px;
}

.terms-list li {
  border-color: var(--line);
}

.terms-list span {
  color: var(--coral);
}

.terms-list p {
  color: var(--ink-soft);
}

.terms-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--acid);
}

.terms-side .overline {
  margin-bottom: 12px;
}

.terms-status {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(16, 33, 28, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.price-placeholder {
  display: grid;
  gap: 8px;
  margin: 50px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(16, 33, 28, 0.22);
  border-bottom: 1px solid rgba(16, 33, 28, 0.22);
}

.price-placeholder span {
  color: rgba(16, 33, 28, 0.6);
  font-size: 0.76rem;
}

.price-placeholder strong {
  max-width: 330px;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.terms-side > p {
  color: rgba(16, 33, 28, 0.68);
  font-size: 0.84rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  margin-bottom: 0;
}

.faq-grid .section-heading h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.6rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.07rem;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 30px;
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 130px) 0;
  background: var(--night);
  color: var(--white);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black, transparent);
  opacity: 0.28;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 255, 104, 0.18), transparent 70%);
  transform: translateY(-50%);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.final-cta .overline {
  color: var(--acid);
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p:not(.overline) {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

.final-cta-action {
  display: grid;
  justify-items: center;
  gap: 13px;
}

.final-cta-action small {
  color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  padding: 35px 0;
  border-top: 1px solid var(--line-dark);
  background: var(--night);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 35px;
}

.brand-footer .brand-mark {
  width: 26px;
  height: 26px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.text-button,
.inline-button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.text-button {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
}

.text-button:hover,
.inline-button:hover {
  border-color: currentColor;
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  text-align: right;
}

.brand-parent {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.modal {
  width: min(760px, calc(100vw - 32px));
  max-height: min(90vh, 900px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.38);
}

.modal::backdrop {
  background: rgba(3, 11, 9, 0.76);
  backdrop-filter: blur(6px);
}

.modal-shell {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
}

.modal-shell-small {
  max-width: 640px;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-intro {
  padding-right: 48px;
}

.modal .overline {
  margin-bottom: 14px;
  color: var(--coral);
}

.modal h2 {
  margin-bottom: 15px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.modal-intro > p:not(.overline) {
  color: var(--ink-soft);
}

.form-setup-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 24px 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 134, 100, 0.35);
  border-radius: 12px;
  background: rgba(255, 134, 100, 0.09);
  color: #794332;
  font-size: 0.78rem;
}

.form-setup-note[hidden] {
  display: none;
}

.form-setup-note > span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
}

.form-setup-note p {
  margin: 0;
}

.form-progress {
  height: 4px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(16, 33, 28, 0.09);
}

.form-progress span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transition: width 200ms ease;
}

.form-progress-copy {
  display: flex;
  justify-content: space-between;
  margin: 7px 0 28px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden],
.form-actions .button[hidden] {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.field-wide {
  grid-column: 1 / -1;
}

.field small {
  color: rgba(73, 96, 90, 0.62);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(16, 33, 28, 0.2);
  border-radius: 11px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 0.93rem;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(217, 255, 104, 0.55);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid,
.choice-field input:user-invalid + span {
  border-color: #c74e34;
}

.choice-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 20px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.79rem;
}

.choice-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--night);
}

.choice-field-muted {
  opacity: 0.72;
}

.inline-button {
  color: var(--ink);
  font-weight: 680;
}

.form-status {
  min-height: 24px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.form-status.is-error {
  color: #a73523;
}

.form-status.is-success {
  color: #176344;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-modal p:not(.overline) {
  color: var(--ink-soft);
}

.privacy-modal .button {
  margin-top: 12px;
}

.noscript-message {
  position: fixed;
  z-index: 500;
  right: 15px;
  bottom: 15px;
  max-width: 420px;
  padding: 14px;
  border-radius: 10px;
  background: var(--coral);
  color: var(--night);
  font-size: 0.8rem;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
    gap: 45px;
  }

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

  .feature-card {
    min-height: 285px;
  }

  .selection-grid {
    grid-template-columns: 1fr 360px;
    gap: 50px;
  }
}

@media (max-width: 850px) {
  :root {
    --shell: min(100% - 32px, 720px);
    --header-height: 68px;
  }

  .site-header {
    position: sticky;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px 22px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: rgba(8, 23, 19, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav a:nth-last-child(-n + 2) {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .hero-grid,
  .fit-grid,
  .projects-head,
  .guardrail-panel,
  .selection-grid,
  .terms-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-example {
    max-width: 520px;
  }

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

  .hero-facts > div:nth-child(odd) {
    border-left: 1px solid var(--line-dark);
  }

  .hero-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .fit-grid .section-heading,
  .faq-grid .section-heading {
    position: static;
    margin-bottom: 0;
  }

  .projects-head {
    gap: 0;
  }

  .guardrail-panel {
    gap: 40px;
  }

  .selection-grid {
    gap: 55px;
  }

  .final-cta-action {
    justify-items: start;
  }

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

  .footer-inner > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .announcement {
    font-size: 0.63rem;
  }

  .header-inner {
    min-height: var(--header-height);
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 8px;
  }

  .site-header {
    height: auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .language-switcher button {
    min-width: 31px;
    padding: 0 6px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 11.8vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

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

  .hero-actions {
    gap: 10px;
  }

  .hero-secondary-link {
    margin-inline: auto;
  }

  .hero-microcopy {
    max-width: 340px;
    margin-top: 10px;
    margin-inline: auto;
    margin-left: 0;
    text-align: center;
  }

  .hero-example {
    padding: 18px;
    border-radius: 24px;
  }

  .example-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .example-intro {
    margin-top: 18px;
  }

  .example-workspace {
    grid-template-columns: 1fr;
  }

  .example-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .hero-facts > div {
    min-height: 94px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 16px;
  }

  .hero-facts strong {
    font-size: 0.96rem;
  }

  .hero-facts span {
    max-width: none;
  }

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

  .feature-card {
    min-height: 260px;
  }

  .feature-icon {
    margin: 38px 0 28px;
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .timeline-item > div:last-child {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .timeline-meta {
    margin-bottom: 1px;
  }

  .guardrail-panel,
  .terms-card {
    padding: 26px 20px;
    border-radius: 23px;
  }

  .guardrail-intro {
    flex-direction: column;
  }

  .selection-flow {
    align-items: flex-start;
    flex-direction: column;
  }

  .selection-flow i {
    margin-left: 15px;
    transform: rotate(90deg);
  }

  .final-cta .button {
    width: 100%;
  }

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

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }

  .footer-meta > * {
    width: max-content;
  }

  .modal {
    width: 100%;
    max-height: calc(100dvh - 12px);
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .modal-shell {
    padding: 28px 18px 32px;
  }

  .modal-intro {
    padding-right: 40px;
  }

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

  .field-wide {
    grid-column: auto;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media print {
  .announcement,
  .site-header,
  .hero-actions,
  .final-cta,
  .site-footer,
  dialog {
    display: none !important;
  }

  .hero,
  .section-dark {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 40px 0;
  }
}
