/* CNTXT_ design tokens, reusable components, and responsive rules. */
@font-face {
  font-family:Sora;
  src:url('assets/sora.woff2') format('woff2');
  font-style:normal;
  font-weight:100 800;
  font-display:swap;
}
@font-face {
  font-family:Inter;
  src:url('assets/inter.woff2') format('woff2');
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
}
:root {
  --midnight:#080f14;
  --slate:#1b2a2f;
  --mist:#e6ecef;
  --pink:#ff0085;
  --pink-dark:#c90068;
  --mint:#34d1b2;
  --ink:#101d23;
  --muted:#57646b;
  --line:#dbe2e5;
  --paper:#fff;
  --soft:#f4f7f8;
  --radius:16px;
  --wide:1280px;
  --space:clamp(24px,5.5vw,88px);
  --heading:Sora,'Avenir Next',Arial,sans-serif;
  --body:Inter,'Helvetica Neue',Arial,sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}
body {
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font:400 16px/1.65 var(--body);
  -webkit-font-smoothing:antialiased;
}
body.locked {
  overflow:hidden;
}
button,input,select,textarea {
  font:inherit;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  cursor:pointer;
}
img {
  display:block;
  max-width:100%;
}
svg {
  display:block;
}
h1,h2,h3,h4,p {
  margin:0;
}
h1,h2,h3,h4 {
  font-family:var(--heading);
  font-weight:400;
  line-height:1.16;
  letter-spacing:-.045em;
}
h1 {
  font-size:clamp(48px,6.5vw,92px);
}
h2 {
  font-size:clamp(34px,4vw,56px);
}
h3 {
  font-size:25px;
  letter-spacing:-.035em;
}
p+p {
  margin-top:18px;
}
::selection {
  background:#ff008530;
}
a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid var(--mint);
  outline-offset:5px;
}
input:focus,textarea:focus,select:focus {
  outline:2px solid var(--pink);
  outline-offset:2px;
}
.skip {
  position:fixed;
  z-index:100;
  top:8px;
  left:8px;
  background:white;
  color:black;
  padding:10px 20px;
  transform:translateY(-200%);
}
.skip:focus {
  transform:none;
}
.container {
  width:min(var(--wide),calc(100% - var(--space)*2));
  margin-inline:auto;
}
.section {
  padding-block:clamp(70px,8vw,120px);
}
.dark {
  background:var(--midnight);
  color:white;
}
.soft {
  background:var(--soft);
}
.eyebrow {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  line-height:1.5;
  font-weight:600;
  letter-spacing:.19em;
  text-transform:uppercase;
  margin-bottom:24px;
}
.eyebrow:before {
  content:'';
  height:2px;
  width:23px;
  background:var(--pink);
}
.eyebrow.no-line:before {
  display:none;
}
.muted {
  color:var(--muted);
}
.dark .muted {
  color:#a7b7bd;
}
.pink {
  color:var(--pink);
}
.cursor {
  color:var(--pink);
  letter-spacing:-.1em;
  white-space:nowrap;
}
.cursor::after {
  content:'_';
  font-weight:600;
}
.lead {
  font-size:18px;
  line-height:1.7;
  max-width:580px;
}
.section-title {
  max-width:740px;
  margin-bottom:50px;
}
.section-title p {
  margin-top:22px;
}
.split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(40px,7vw,110px);
  align-items:center;
}
.split-top {
  align-items:start;
}
.grid {
  display:grid;
  gap:24px;
}
.grid-3 {
  grid-template-columns:repeat(3,1fr);
}
.grid-4 {
  grid-template-columns:repeat(4,1fr);
}
.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:26px;
  border:1px solid transparent;
  background:var(--pink);
  color:#fff;
  padding:14px 22px;
  min-height:50px;
  border-radius:7px;
  font-size:14px;
  font-weight:600;
  line-height:1.4;
  transition:background .2s,transform .2s,border-color .2s;
}
.button:hover {
  background:#db0071;
  transform:translateY(-2px);
}
.button.secondary {
  background:transparent;
  border-color:#59676d;
  color:inherit;
}
.button.secondary:hover {
  background:#ffffff10;
  border-color:currentColor;
}
.button.ink {
  background:var(--midnight);
  color:white;
}
.button.ink:hover {
  background:var(--slate);
}
.button.light {
  background:white;
  color:var(--ink);
}
.button.small {
  min-height:42px;
  padding:11px 18px;
}
.button .icon {
  width:18px;
  height:18px;
}
.actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:32px;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-size:14px;
  font-weight:600;
  border-bottom:1px solid var(--line);
  padding-bottom:7px;
}
.text-link:hover {
  color:var(--pink-dark);
}
.icon {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex:none;
}
.icon-box {
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--soft);
  margin-bottom:26px;
}
.dark .icon-box {
  background:#ffffff05;
  border-color:#ffffff25;
}
.pill {
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius:5px;
  background:#ffffff0a;
  border:1px solid #ffffff20;
  font-size:12px;
  letter-spacing:.02em;
  line-height:1.5;
}
.pill.pink-pill {
  border-color:#ff008540;
  color:var(--pink);
  background:#ff008508;
}
.site-header {
  height:94px;
  position:relative;
  z-index:20;
  background:var(--midnight);
  color:#fff;
  border-bottom:1px solid #ffffff12;
}
.header-inner {
  height:100%;
  display:flex;
  align-items:center;
  gap:30px;
}
.brand {
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  flex-shrink:0;
}
.brand-word {
  font-family:var(--heading);
  font-size:25px;
  letter-spacing:.24em;
  line-height:1.25;
  font-weight:500;
}
.brand-word b {
  font-size:29px;
  color:var(--pink);
  letter-spacing:0;
  font-weight:600;
  margin-left:-4px;
}
.brand-by {
  font-size:10px;
  letter-spacing:.12em;
  color:#adbdc3;
  margin-top:6px;
}
.brand-by strong {
  font-weight:500;
  color:inherit;
}
.navigation {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:27px;
}
.navigation>a {
  font-size:13px;
  white-space:nowrap;
  position:relative;
  padding:12px 0;
  color:#ced8dc;
}
.navigation>a:hover,.navigation>a[aria-current=page] {
  color:white;
}
.navigation>a[aria-current=page]:after {
  content:'';
  height:2px;
  background:var(--pink);
  position:absolute;
  bottom:4px;
  left:0;
  right:0;
}
.nav-cta {
  margin-left:12px;
}
.menu-toggle {
  display:none;
  background:none;
  border:1px solid #ffffff40;
  border-radius:6px;
  color:white;
  padding:10px;
}
.hero {
  position:relative;
  isolation:isolate;
  min-height:730px;
  background:radial-gradient(ellipse at 80% 75%,#473c45 0,transparent 43%),linear-gradient(130deg,#071216,#20343c);
  color:white;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-photo {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-3;
}
.hero:after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-2;
  background:linear-gradient(90deg,#041015e8 0,#07121675 53%,#07121610 100%),linear-gradient(0deg,#080f14 0,transparent 35%,#080f1440);
}
.hero .container {
  position:relative;
  padding-block:85px 150px;
}
.hero h1 {
  max-width:900px;
  font-weight:300;
  line-height:1.08;
}
.hero .lead {
  color:#c8d2d7;
  margin-top:29px;
  max-width:505px;
  font-size:18px;
}
.hero .eyebrow {
  color:#d6dfe2;
}
.hero-side {
  position:absolute;
  right:0;
  top:35px;
  font-size:11px;
  letter-spacing:.21em;
  line-height:2.6;
  text-transform:uppercase;
  color:#d4dee2;
}
.hero-bottom {
  position:absolute;
  bottom:0;
  left:var(--space);
  right:var(--space);
  max-width:var(--wide);
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:30px;
  border-top:1px solid #ffffff25;
  padding:24px 0 30px;
  font-size:12px;
  letter-spacing:.07em;
  color:#afbec5;
}
.hero-bottom span:last-child {
  color:#fff;
}
.hero-small {
  min-height:440px;
}
.hero-small .container {
  padding-block:65px 85px;
}
.hero-small h1 {
  font-size:clamp(44px,5vw,70px);
  max-width:950px;
}
.hero-small .lead {
  max-width:660px;
}
.hero-small .hero-side {
  display:none;
}
.intro {
  padding-block:90px;
}
.intro h2 {
  max-width:600px;
}
.intro-copy {
  padding-top:22px;
}
.intro-copy p {
  font-size:18px;
  color:var(--muted);
}
.intro-copy .text-link {
  margin-top:25px;
}
.principles-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding-top:60px;
  gap:30px;
}
.principles-strip>div {
  border-top:1px solid var(--line);
  padding-top:20px;
  display:flex;
  align-items:center;
  gap:14px;
  font-size:14px;
}
.principles-strip .icon {
  color:#52646b;
}
.step-card {
  border-top:1px solid var(--line);
  padding:28px 0 0;
}
.step-number {
  font-size:12px;
  color:var(--pink-dark);
  font-weight:600;
  letter-spacing:.1em;
  display:block;
  margin-bottom:24px;
}
.step-card p {
  margin-top:15px;
  color:var(--muted);
  font-size:15px;
}
.section-heading-row {
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:end;
  margin-bottom:55px;
}
.section-heading-row>p {
  max-width:360px;
  color:var(--muted);
}
.memory-visual {
  border:1px solid #ffffff20;
  border-radius:18px;
  padding:30px;
  background:radial-gradient(ellipse at center,#27474c55,transparent 65%);
  box-shadow:0 25px 60px #0002;
}
.visual-label {
  color:#98aab2;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11px;
  text-align:center;
  margin-bottom:20px;
}
.tool-row {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.tool-chip {
  border:1px solid #ffffff20;
  border-radius:7px;
  padding:10px 14px;
  color:#d4dde1;
  font-size:13px;
  background:#17272c;
}
.memory-core {
  padding:25px 20px;
  text-align:center;
  border:1px solid #ff008590;
  border-radius:10px;
  background:linear-gradient(110deg,#ff008508,#ff008518);
  box-shadow:0 0 40px #ff008512;
}
.memory-core strong {
  display:block;
  font-family:var(--heading);
  font-weight:500;
  font-size:27px;
  letter-spacing:.2em;
}
.memory-core small {
  font-size:12px;
  letter-spacing:.04em;
  color:#b6c2c8;
}
.connector {
  height:37px;
  width:1px;
  background:linear-gradient(var(--pink),#ffffff20);
  margin:auto;
  position:relative;
}
.connector:after {
  content:'';
  position:absolute;
  bottom:0;
  left:-2px;
  border-left:3px solid transparent;
  border-right:3px solid transparent;
  border-top:4px solid var(--pink);
}
.visual-note {
  font-size:11px;
  text-align:center;
  color:#9caeb6;
  margin-top:24px;
}
.check-list {
  list-style:none;
  padding:0;
  margin:25px 0 0;
  display:grid;
  gap:12px;
}
.check-list li {
  position:relative;
  padding-left:24px;
  font-size:14px;
  line-height:1.6;
}
.check-list li:before {
  content:'✓';
  color:var(--pink);
  position:absolute;
  left:0;
  font-weight:600;
}
.feature-list {
  display:grid;
  gap:26px;
  margin-top:36px;
}
.feature-row {
  display:flex;
  gap:18px;
}
.feature-row .icon {
  margin-top:5px;
  color:var(--pink);
}
.feature-row h3 {
  font-family:var(--body);
  font-size:16px;
  font-weight:600;
  letter-spacing:0;
}
.feature-row p {
  font-size:14px;
  color:#a9bac2;
  margin-top:6px;
}
.card {
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  background:white;
}
.card p {
  color:var(--muted);
  margin-top:14px;
}
.deployment-card {
  display:flex;
  flex-direction:column;
  position:relative;
}
.deployment-card.featured {
  background:var(--midnight);
  color:white;
  border-color:var(--midnight);
}
.deployment-card.featured p {
  color:#b4c3ca;
}
.deployment-card .card-tag {
  position:absolute;
  right:26px;
  top:32px;
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--pink);
}
.deployment-card .description {
  font-size:15px;
  min-height:75px;
}
.deployment-card .check-list {
  margin-bottom:30px;
  flex:1;
}
.price {
  border-top:1px solid var(--line);
  padding-top:24px;
  margin-top:auto;
}
.featured .price {
  border-color:#ffffff30;
}
.price-label {
  font-size:12px;
  color:var(--muted);
  display:block;
  margin-bottom:5px;
}
.featured .price-label {
  color:#afc0c8;
}
.price strong {
  font-family:var(--heading);
  font-weight:500;
  font-size:35px;
  letter-spacing:-.04em;
  line-height:1.4;
}
.price small {
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:3px;
}
.featured .price small {
  color:#afc0c8;
}
.deployment-card .button {
  margin-top:25px;
  width:100%;
}
.pricing-note {
  font-size:12px;
  color:var(--muted);
  margin-top:20px;
  line-height:1.7;
}
.ownership-block {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}
.ownership-block h2 {
  font-size:clamp(38px,4.4vw,62px);
}
.export-card {
  color:var(--ink);
  background:#f3f6f7;
  border:1px solid #dce5e8;
  border-radius:12px;
  padding:28px;
  transform:rotate(-2deg);
  box-shadow:0 20px 70px #0002;
}
.export-header {
  display:flex;
  align-items:center;
  gap:12px;
  padding-bottom:23px;
  border-bottom:1px solid #d3dde1;
}
.export-header strong {
  font-size:14px;
}
.export-header small {
  display:block;
  font-size:12px;
  color:var(--muted);
}
.file-row {
  display:flex;
  align-items:center;
  gap:14px;
  font-size:13px;
  padding:13px 0;
  border-bottom:1px solid #dbe2e5;
}
.file-row .icon {
  width:18px;
  height:18px;
  color:#556d77;
}
.file-row span:last-child {
  margin-left:auto;
  font-size:11px;
  color:#657781;
}
.export-footer {
  margin-top:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}
.export-footer p {
  font-size:12px;
  color:var(--muted);
}
.export-footer .pill {
  background:#e1f3ed;
  color:#14664f;
  border-color:#b8dfd1;
}
.archie-preview {
  position:relative;
  min-height:350px;
  background:radial-gradient(ellipse at center,#243d42,var(--midnight));
  border-radius:16px;
  overflow:hidden;
}
.archie-preview img {
  height:420px;
  width:100%;
  object-fit:contain;
  mix-blend-mode:lighten;
}
.archie-preview .caption {
  position:absolute;
  left:25px;
  bottom:20px;
  color:#b7c9d0;
  font-size:11px;
  letter-spacing:.12em;
}
.archie-name {
  font-family:var(--heading);
  font-size:20px;
  color:#acbfc7;
  margin-bottom:16px;
}
.cta-band {
  background:linear-gradient(90deg,#061116f5,#06111680),url('assets/mountains.png') center 67%/cover;
  color:white;
  padding-block:85px;
}
.cta-band .container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}
.cta-band h2 {
  font-size:clamp(34px,3.5vw,48px);
  max-width:660px;
}
.cta-band p {
  color:#b8c8d0;
  margin-top:15px;
}
.site-footer {
  background:var(--midnight);
  color:#fff;
  padding:65px 0 25px;
  border-top:1px solid #ffffff15;
}
.footer-top {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:50px;
  padding-bottom:50px;
}
.footer-top .brand {
  margin-bottom:24px;
}
.footer-tagline {
  font-size:14px;
  color:#a4b6bf;
}
.footer-links {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  font-size:13px;
  color:#afc0c8;
}
.footer-links a:hover {
  color:white;
}
.footer-title {
  font-size:11px;
  color:#afc0c8;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:20px;
}
.footer-bottom {
  border-top:1px solid #ffffff18;
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:#879da8;
  font-size:11px;
}
.footer-bottom a:hover {
  color:white;
}
.page-kicker {
  padding:20px 0;
  border-bottom:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
}
.page-kicker a {
  color:var(--ink);
}
.workflow {
  counter-reset:step;
}
.workflow-item {
  display:grid;
  grid-template-columns:70px 1fr 1fr;
  gap:40px;
  padding:42px 0;
  border-top:1px solid var(--line);
  align-items:start;
}
.workflow-item:last-child {
  border-bottom:1px solid var(--line);
}
.workflow-number {
  font-family:var(--heading);
  font-size:20px;
  color:var(--pink-dark);
}
.workflow-item h3 {
  font-size:29px;
  margin-bottom:14px;
}
.workflow-item p {
  color:var(--muted);
  font-size:15px;
  max-width:400px;
}
.mini-surface {
  background:var(--soft);
  padding:24px;
  border:1px solid var(--line);
  border-radius:10px;
}
.mini-surface .tool-chip {
  background:white;
  color:var(--ink);
  border-color:var(--line);
}
.mini-caption {
  font-size:12px;
  color:var(--muted);
  margin-top:14px!important;
}
.mini-label {
  font-size:11px;
  letter-spacing:.12em;
  color:var(--muted);
  text-transform:uppercase;
  margin-bottom:15px;
}
.mini-question {
  font-family:var(--heading);
  font-size:18px;
  margin-bottom:15px;
}
.answer-surface {
  font-size:14px;
  line-height:1.6;
  color:#2e424b;
}
.citation {
  font-size:12px;
  padding-top:14px;
  margin-top:15px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.table-wrap {
  overflow:auto;
  border:1px solid var(--line);
  border-radius:12px;
}
table {
  border-collapse:collapse;
  width:100%;
  text-align:left;
  min-width:660px;
  font-size:14px;
}
th,td {
  padding:19px 24px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
thead th {
  font-size:12px;
  letter-spacing:.08em;
  background:var(--soft);
}
tbody th {
  font-weight:500;
}
tbody tr:last-child>* {
  border-bottom:none;
}
td {
  color:var(--muted);
}
.faq {
  max-width:870px;
  margin-inline:auto;
}
.faq details {
  border-bottom:1px solid var(--line);
  padding:25px 0;
}
.faq summary {
  display:flex;
  justify-content:space-between;
  gap:30px;
  list-style:none;
  font-weight:500;
  cursor:pointer;
  line-height:1.5;
}
.faq summary::-webkit-details-marker {
  display:none;
}
.faq summary:after {
  content:'+';
  color:var(--pink-dark);
  font-size:22px;
  line-height:1;
}
.faq details[open] summary:after {
  content:'−';
}
.faq details p {
  font-size:15px;
  color:var(--muted);
  max-width:760px;
  margin-top:18px;
}
.manifesto {
  max-width:990px;
}
.manifesto h2 {
  font-size:clamp(36px,5vw,68px);
  line-height:1.3;
}
.manifesto h2 span {
  color:#91a6af;
}
.promise-grid .card {
  border:0;
  border-radius:0;
  border-top:1px solid var(--line);
  padding:30px 0;
}
.promise-grid .card p {
  font-size:15px;
}
.quote {
  border-left:3px solid var(--pink);
  padding-left:28px;
  margin:40px 0;
  font-family:var(--heading);
  font-size:clamp(25px,3vw,38px);
  line-height:1.5;
  letter-spacing:-.03em;
}
.quote cite {
  font-family:var(--body);
  font-size:12px;
  font-style:normal;
  color:#a7b9c1;
  letter-spacing:.07em;
  display:block;
  margin-top:24px;
}
.portability-grid .card h3 {
  font-size:20px;
}
.portability-grid .card p {
  font-size:14px;
}
.large-archie {
  height:550px;
  position:relative;
  overflow:hidden;
}
.large-archie img {
  width:100%;
  height:100%;
  object-fit:contain;
  mix-blend-mode:lighten;
}
.archie-hero {
  background:radial-gradient(ellipse at 80% 60%,#1e363e,#080f14 60%);
}
.archie-hero .container {
  padding-block:50px;
}
.archie-hero h1 {
  font-size:clamp(50px,6vw,84px);
}
.demo-box {
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:white;
  box-shadow:0 20px 70px #1429340a;
}
.demo-top {
  background:var(--midnight);
  padding:22px 25px;
  color:white;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
}
.demo-top span:last-child {
  margin-left:auto;
  font-size:11px;
  color:#a9bec8;
}
.demo-body {
  padding:28px;
}
.demo-prompts {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
}
.prompt-button {
  font-size:12px;
  background:var(--soft);
  border:1px solid var(--line);
  padding:9px 12px;
  border-radius:20px;
  color:var(--ink);
}
.prompt-button:hover,.prompt-button[aria-pressed=true] {
  border-color:var(--pink);
  background:#ff008508;
}
.demo-answer {
  min-height:180px;
}
.demo-answer h3 {
  font-size:20px;
  margin-bottom:16px;
}
.demo-answer p {
  font-size:15px;
  color:var(--muted);
}
.demo-source {
  font-size:12px;
  color:var(--muted);
  border-top:1px solid var(--line);
  padding-top:16px;
  margin-top:25px;
}
.demo-source a {
  color:var(--pink-dark);
  text-decoration:underline;
}
.swatches {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.swatch {
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
}
.swatch-color {
  height:115px;
  background:var(--swatch);
}
.swatch-info {
  padding:15px;
  font-size:13px;
}
.swatch-info code {
  display:block;
  color:var(--muted);
  font-size:12px;
}
.system-section {
  padding:45px 0;
  border-bottom:1px solid var(--line);
}
.system-section h2 {
  font-size:30px;
  margin-bottom:26px;
}
.type-sample {
  padding:25px 0;
  border-top:1px solid var(--line);
}
.type-sample small {
  font-family:var(--body);
  font-size:12px;
  display:block;
  color:var(--muted);
  margin-top:15px;
  letter-spacing:0;
}
.code-snippet {
  background:var(--soft);
  border:1px solid var(--line);
  padding:20px;
  border-radius:9px;
  font:13px/1.7 ui-monospace,monospace;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
}
.dialog {
  border:1px solid #d6e0e5;
  border-radius:18px;
  padding:0;
  max-width:560px;
  width:calc(100% - 32px);
  max-height:calc(100dvh - 40px);
  color:var(--ink);
  background:#fff;
  box-shadow:0 30px 100px #0007;
}
.dialog::backdrop {
  background:#030b11b8;
  backdrop-filter:blur(7px);
}
.dialog-content {
  padding:36px;
}
.dialog-heading {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:start;
  margin-bottom:18px;
}
.dialog h2 {
  font-size:29px;
}
.dialog-close {
  background:var(--soft);
  border:1px solid var(--line);
  padding:8px;
  border-radius:50%;
  color:var(--ink);
  flex-shrink:0;
}
.dialog-close .icon {
  width:17px;
  height:17px;
}
.dialog-intro {
  font-size:14px;
  color:var(--muted);
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:25px;
}
.field {
  display:flex;
  flex-direction:column;
  gap:7px;
  font-size:12px;
  font-weight:500;
}
.field.wide {
  grid-column:1/-1;
}
.field input,.field select,.field textarea {
  width:100%;
  border:1px solid #c6d1d7;
  padding:11px 12px;
  background:#fff;
  color:var(--ink);
  border-radius:6px;
  font-size:14px;
  min-height:45px;
}
.field textarea {
  min-height:88px;
  resize:vertical;
}
.form-note {
  font-size:11px;
  line-height:1.6;
  color:var(--muted);
  margin-top:18px;
}
.form-status {
  font-size:14px;
  padding:16px;
  background:#e9f5f0;
  border:1px solid #badbce;
  border-radius:8px;
  margin-top:18px;
}
.hidden,[hidden] {
  display:none!important;
}
.no-js-note {
  padding:12px 20px;
  background:#fff2f8;
  color:var(--ink);
  font-size:13px;
  text-align:center;
}
.proof-line {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  font-size:12px;
  color:#9db1bb;
  margin-top:30px;
}
.proof-line span {
  display:flex;
  align-items:center;
  gap:8px;
}
.proof-line .icon {
  height:15px;
  width:15px;
}
.page-nav {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  font-size:13px;
  padding-block:18px;
}
.page-nav a:hover {
  color:var(--pink-dark);
}
.portable-steps {
  display:grid;
  gap:30px;
}
.portable-step {
  display:flex;
  gap:22px;
}
.portable-step strong {
  font-size:12px;
  color:var(--pink-dark);
  padding-top:4px;
}
.portable-step h3 {
  font-size:20px;
}
.portable-step p {
  margin-top:8px;
  color:var(--muted);
  font-size:15px;
}
.full-width {
  width:100%;
}
.button {
  background:#db0071;
}
.button:hover {
  background:#c90068;
}
.button.secondary {
  background:transparent;
}
.button.ink {
  background:var(--midnight);
}
.button.light {
  background:white;
}
.cursor {
  display:inline-block;
}
.hero .cursor {
  animation:cursor-breathe 1.5s step-end 3;
}
.deployment-card.featured .icon-box {
  background:#ffffff06;
  border-color:#ffffff30;
}
.deployment-card .description {
  line-height:1.7;
}
.deployment-card .description span {
  display:block;
  margin-top:12px;
}
.grid-4 h3 {
  font-size:23px;
}
.type-sample h1 {
  font-size:clamp(36px,6vw,64px)!important;
}
.hero {
  background-image:url('assets/mountains.png');
  background-size:cover;
  background-position:center;
}
.hero:after {
  background:linear-gradient(90deg,#04101595 0,#07121630 53%,transparent 100%),linear-gradient(0deg,#080f14 0,transparent 38%,#080f1420);
}
@keyframes cursor-breathe {
  0%,40%,100% {
    opacity:1;
  }
  60%,85% {
    opacity:.18;
  }
}
@media(min-width:1600px) {
  .hero-bottom {
    left:calc((100% - 1280px)/2);
    right:calc((100% - 1280px)/2);
  }
}
@media(max-width:1120px) {
  .navigation {
    gap:18px;
  }
  .navigation>a {
    font-size:12px;
  }
  .header-inner {
    gap:20px;
  }
  .brand-word {
    font-size:22px;
  }
  .nav-cta {
    margin-left:0;
  }
  .hero-side {
    display:none;
  }
  .grid-3 {
    gap:16px;
  }
  .card {
    padding:26px;
  }
  .ownership-block {
    gap:45px;
  }
  .workflow-item {
    grid-template-columns:40px 1fr 1fr;
    gap:25px;
  }
}
@media(max-width:960px) {
  .site-header {
    height:82px;
  }
  .navigation {
    display:none;
    position:absolute;
    top:81px;
    left:0;
    right:0;
    padding:24px var(--space) 32px;
    background:var(--midnight);
    border-bottom:1px solid #ffffff25;
    box-shadow:0 20px 30px #0004;
  }
  .navigation.is-open {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:3px;
  }
  .navigation>a {
    font-size:16px;
    padding:12px 0;
    align-self:start;
  }
  .menu-toggle {
    display:block;
    margin-left:auto;
  }
  .nav-cta {
    margin-left:0;
  }
  .hero {
    min-height:670px;
  }
  .hero h1 {
    font-size:clamp(55px,8vw,82px);
  }
  .hero-small {
    min-height:420px;
  }
  .hero-small h1 {
    font-size:56px;
  }
  .split {
    gap:40px;
  }
  .grid-3 {
    grid-template-columns:1fr;
  }
  .deployment-card .description {
    min-height:0;
  }
  .deployment-card {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 36px;
  }
  .deployment-card .icon-box,.deployment-card h3,.deployment-card .description {
    grid-column:1;
  }
  .deployment-card .check-list {
    grid-column:2;
    grid-row:2/5;
    margin-top:0;
  }
  .deployment-card .price {
    grid-column:1;
    margin-top:25px;
  }
  .deployment-card .button {
    grid-column:2;
    align-self:end;
  }
  .grid-4 {
    grid-template-columns:repeat(2,1fr);
  }
  .step-card {
    padding-bottom:20px;
  }
  .ownership-block {
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
  .footer-top {
    grid-template-columns:1.1fr 1fr;
  }
  .footer-top>div:last-child {
    display:none;
  }
  .workflow-item {
    grid-template-columns:35px 1fr;
  }
  .workflow-item>.mini-surface {
    grid-column:2;
  }
  .large-archie {
    height:400px;
  }
  .swatches {
    grid-template-columns:repeat(3,1fr);
  }
}
@media(max-width:680px) {
  :root {
    --space:24px;
  }
  .header-inner {
    gap:12px;
  }
  .brand-word {
    font-size:22px;
  }
  .brand-by {
    font-size:9px;
  }
  .nav-cta {
    font-size:12px;
    padding:11px 13px;
    gap:10px;
    min-height:42px;
  }
  .nav-cta .icon {
    display:none;
  }
  .menu-toggle {
    padding:8px;
  }
  .menu-toggle .icon {
    width:20px;
  }
  .hero {
    min-height:700px;
    align-items:flex-start;
  }
  .hero .container {
    padding-top:70px;
    padding-bottom:145px;
  }
  .hero h1 {
    font-size:clamp(46px,11vw,70px);
    line-height:1.12;
  }
  .hero .lead {
    font-size:16px;
    max-width:350px;
    margin-top:25px;
  }
  .hero:after {
    background:linear-gradient(90deg,#071216c7,#07121635),linear-gradient(0deg,#080f14 0,transparent 65%);
  }
  .hero-photo {
    object-position:62% center;
  }
  .hero-bottom {
    font-size:10px;
    line-height:1.8;
    gap:25px;
    padding-bottom:25px;
  }
  .hero-bottom span:last-child {
    max-width:105px;
    text-align:right;
  }
  .hero-small {
    min-height:0;
  }
  .hero-small .container {
    padding-block:55px 70px;
  }
  .hero-small h1 {
    font-size:43px;
    line-height:1.18;
  }
  .hero-small .lead {
    max-width:100%;
    font-size:16px;
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:20px;
  }
  .actions {
    gap:12px;
  }
  .actions .button {
    font-size:13px;
    padding:14px 18px;
    gap:16px;
  }
  .intro {
    padding-block:65px;
  }
  .split,.ownership-block {
    grid-template-columns:1fr;
    gap:38px;
  }
  .intro-copy {
    padding-top:0;
  }
  .intro-copy p,.lead {
    font-size:16px;
  }
  .principles-strip {
    grid-template-columns:1fr 1fr;
    gap:25px 16px;
    padding-top:42px;
  }
  .principles-strip>div {
    font-size:12px;
    gap:10px;
  }
  .principles-strip .icon {
    width:20px;
  }
  .section-heading-row {
    flex-direction:column;
    align-items:start;
    gap:20px;
    margin-bottom:36px;
  }
  .section-heading-row>p {
    max-width:none;
  }
  .grid-4 {
    gap:20px;
  }
  .step-card h3 {
    font-size:21px;
  }
  .step-card p {
    font-size:14px;
  }
  .step-number {
    margin-bottom:18px;
  }
  .memory-visual {
    padding:23px 18px;
  }
  .tool-chip {
    font-size:11px;
    padding:8px 10px;
  }
  .deployment-card {
    display:flex;
    padding:27px;
  }
  .deployment-card .price {
    margin-top:auto;
  }
  .deployment-card .check-list {
    margin-top:25px;
  }
  .deployment-card .button {
    align-self:stretch;
  }
  .deployment-card .icon-box {
    margin-bottom:24px;
  }
  .export-card {
    transform:none;
    padding:22px;
  }
  .ownership-block h2 {
    font-size:38px;
  }
  .file-row {
    font-size:12px;
  }
  .file-row span:last-child {
    font-size:10px;
  }
  .archie-preview img {
    height:340px;
  }
  .cta-band {
    padding-block:65px;
  }
  .cta-band .container {
    display:block;
  }
  .cta-band .button {
    margin-top:28px;
  }
  .footer-top {
    grid-template-columns:1fr;
    gap:36px;
    padding-bottom:36px;
  }
  .footer-bottom {
    flex-direction:column;
    gap:13px;
  }
  .footer-links {
    max-width:360px;
  }
  .site-footer {
    padding-top:45px;
  }
  .workflow-item {
    gap:18px;
    grid-template-columns:25px 1fr;
    padding-block:32px;
  }
  .workflow-item h3 {
    font-size:25px;
  }
  .workflow-number {
    font-size:15px;
  }
  .mini-surface {
    padding:20px;
  }
  .table-wrap {
    margin-right:calc(var(--space)*-1);
    border-radius:10px 0 0 10px;
  }
  .table-wrap:focus-visible {
    outline:2px solid var(--pink);
    outline-offset:3px;
  }
  .section-title {
    margin-bottom:35px;
  }
  .section-title p {
    font-size:16px;
  }
  .portability-grid {
    grid-template-columns:1fr;
  }
  .promise-grid {
    grid-template-columns:1fr;
  }
  .promise-grid .card {
    padding-top:25px;
  }
  .large-archie {
    height:330px;
    order:2;
  }
  .archie-hero .split {
    gap:0;
  }
  .archie-hero .container {
    padding-block:55px 0;
  }
  .archie-hero h1 {
    font-size:55px;
  }
  .demo-body {
    padding:22px;
  }
  .demo-top {
    padding:20px;
  }
  .demo-top span:last-child {
    font-size:10px;
  }
  .demo-answer {
    min-height:230px;
  }
  .swatches {
    grid-template-columns:1fr 1fr;
  }
  .swatch-color {
    height:90px;
  }
  .form-grid {
    grid-template-columns:1fr;
  }
  .field.wide {
    grid-column:auto;
  }
  .dialog-content {
    padding:26px;
  }
  .dialog h2 {
    font-size:26px;
  }
  .proof-line {
    gap:12px;
  }
  .page-kicker {
    font-size:11px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
}

/* --- How-it-works redesign: Archie hero, capability strip, workflow band, audiences --- */
.hero-hiw{min-height:600px}
.hero-hiw .container{padding-block:72px 56px}
.hero-hiw h1{font-size:clamp(44px,5vw,70px);max-width:760px}
.hero-hiw .lead{max-width:430px}
.hero-archie{position:absolute;margin:0;right:clamp(60px,13vw,230px);bottom:-34px;z-index:-1}
.hero-archie img{width:clamp(270px,30vw,430px);height:auto;display:block;border-radius:26px;opacity:.95;-webkit-mask-image:linear-gradient(#000 76%,transparent);mask-image:linear-gradient(#000 76%,transparent)}
.archie-note{position:absolute;left:-196px;top:34px;width:172px;text-align:right;font-style:italic;font-size:13.5px;line-height:1.55;color:#dbe4e8}
.capability-strip{margin-top:58px;border-top:1px solid #ffffff22;display:flex;flex-wrap:wrap}
.capability{display:flex;flex-direction:column;gap:6px;padding:20px 30px 4px;border-left:1px solid #ffffff1e;min-width:118px}
.capability:first-child{border-left:0;padding-left:0}
.capability .icon{width:20px;height:20px;color:#e8eef1}
.capability strong{font-family:var(--heading);font-weight:600;font-size:11.5px;letter-spacing:.18em;text-transform:uppercase}
.capability small{font-size:11px;letter-spacing:.05em;color:#9fb0b8}
#the-process{background:var(--soft)}
.workflow-band{display:grid;grid-template-columns:repeat(5,1fr);gap:44px}
.step{position:relative}
.step:not(:last-child):after{content:'\2192';position:absolute;right:-34px;top:44%;font-size:20px;color:#a7b3b9}
.step-num{font-family:var(--heading);font-weight:600;font-size:19px;color:var(--pink);letter-spacing:.06em}
.step h3{font-size:23px;margin:6px 0 10px}
.step>p{font-size:13.5px;color:var(--muted);line-height:1.6}
.step-card{background:#fff;border:1px solid var(--line);border-radius:12px;padding:8px 14px;box-shadow:0 14px 34px #08192610}
.step-card .mini-label{margin:10px 2px 12px}
.step-card .mini-caption{padding:0 2px 8px}
.source-list{list-style:none;margin:0;padding:0}
.source-list li{display:flex;align-items:center;gap:11px;padding:11px 4px;font-size:13.5px;font-weight:500;border-top:1px solid #eef1f3}
.source-list li:first-child{border-top:0}
.src-logo{width:20px;height:20px;display:grid;place-items:center;flex:none}
.src-logo svg{width:18px;height:18px;display:block}
.type-icon svg{fill:none;stroke:#5b7684;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;width:19px;height:19px}
.src-check{margin-left:auto;flex:none;display:grid}
.src-check svg{width:16px;height:16px;display:block}
.sp-tile{background:#036c70;color:#fff;border-radius:5px;font:700 10.5px/1 var(--heading);width:19px;height:19px;display:grid;place-items:center}
.src-more{color:var(--muted)}
.src-plus{color:var(--muted)}
.src-plus svg{width:15px;height:15px}
.proc-list{list-style:none;margin:6px 0 14px;padding:0 2px;display:grid;gap:10px}
.proc-list li{position:relative;padding-left:24px;font-size:13.5px}
.proc-list li:before{content:'\2713';position:absolute;left:2px;color:var(--mint);font-weight:700}
.progress{height:5px;border-radius:99px;background:#e8edef;margin:4px 2px 12px;overflow:hidden}
.progress i{display:block;height:100%;width:68%;border-radius:inherit;background:linear-gradient(90deg,var(--pink),#ff4da8)}
.qa-q,.qa-a{display:flex;gap:9px;align-items:flex-start;margin:12px 0}
.avatar-initials{width:28px;height:28px;flex:none;border-radius:50%;background:var(--slate);color:#fff;display:grid;place-items:center;font:600 12px var(--heading)}
.avatar-archie{width:28px;height:28px;flex:none;border-radius:50%;object-fit:cover;border:1px solid var(--line)}
.qa-bubble{background:var(--soft);border:1px solid #e6ebee;border-radius:10px;padding:9px 12px;font-size:13px;line-height:1.5}
.qa-bubble.answer{background:#fff;border-color:var(--line);box-shadow:0 6px 18px #0816240d;flex:1}
.qa-lead{margin:0 0 6px;font-weight:600;font-size:12.5px}
.qa-sources{margin:0 0 8px;padding-left:18px;font-size:12.5px;display:grid;gap:3px}
.view-sources{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--pink-dark)}
.view-sources .icon{width:14px;height:14px}
.action-list{list-style:none;margin:0;padding:0}
.action-list li{display:flex;align-items:center;gap:11px;padding:12px 4px;font-size:13.5px;font-weight:500;border-top:1px solid #eef1f3}
.action-list li:first-child{border-top:0}
.action-list li>svg:first-child{width:18px;height:18px;fill:none;stroke:#33474f;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex:none}
.action-list .chev{margin-left:auto;width:15px;height:15px;fill:none;stroke:#9aa8ae;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:none}
.step-caption{margin-top:16px;text-align:center;font-size:10.5px;letter-spacing:.17em;text-transform:uppercase;color:var(--muted)}
.workflow-note{margin-top:36px;text-align:center;font-size:12px;color:var(--muted)}
.audience-list{display:grid;gap:8px;align-content:center}
.audience-row{display:flex;gap:16px;align-items:flex-start;padding:16px 4px;border-top:1px solid #ffffff17}
.audience-row:first-child{border-top:0;padding-top:4px}
.audience-row>svg{width:21px;height:21px;flex:none;margin-top:2px;fill:none;stroke:#cfdade;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.audience-row strong{font-family:var(--heading);font-weight:600;font-size:15.5px}
.audience-row p{margin:3px 0 0;font-size:13.5px;color:#a7b6bd}
@media(min-width:1081px){.step>p{min-height:88px}}
@media(max-width:1150px){.archie-note{display:none}}
@media(max-width:1080px){.workflow-band{grid-template-columns:1fr 1fr;gap:38px}.step:not(:last-child):after{display:none}}
@media(max-width:900px){.hero-archie{display:none}.hero-hiw{min-height:0}}
@media(max-width:700px){.workflow-band{grid-template-columns:1fr}.step{max-width:480px}.capability{padding:16px 20px 2px;min-width:104px}}
