:root {
  --bg: #07080d;
  --bg-soft: #0d0f17;
  --surface: rgba(18, 20, 31, 0.82);
  --surface-strong: #151824;
  --surface-hover: #1a1e2c;
  --text: #f7f5fb;
  --text-soft: #b8b7c3;
  --text-muted: #858591;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --pink: #f472b6;
  --violet: #a78bfa;
  --cyan: #67e8f9;
  --gradient: linear-gradient(115deg, var(--pink), var(--violet) 55%, var(--cyan));
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 0.85rem;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --container: 1180px;
  --header-height: 76px;
  --topbar-height: 38px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: Inter, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", Consolas, monospace;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--topbar-height) + 1.5rem);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-wrap: break-word;
  background:
    radial-gradient(circle at 82% 6%, rgba(167, 139, 250, 0.12), transparent 30rem),
    radial-gradient(circle at 8% 28%, rgba(244, 114, 182, 0.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 7.2vw, 6.7rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

p {
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.top-strip {
  min-height: var(--topbar-height);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 13, 0.88);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.top-strip .site-shell {
  display: flex;
  min-height: var(--topbar-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip p {
  margin: 0;
  color: var(--text-muted);
}

.top-strip strong {
  color: var(--text-soft);
  font-weight: 500;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: var(--text-soft);
}

.top-links a:hover {
  color: var(--text);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 13, 0.82);
  backdrop-filter: blur(18px);
}

.site-header .site-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(244, 114, 182, 0.5);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(244, 114, 182, 0.22), rgba(103, 232, 249, 0.08));
  box-shadow: inset 0 0 18px rgba(167, 139, 250, 0.2);
}

.brand-mark::before {
  width: 9px;
  height: 9px;
  border: 2px solid var(--pink);
  border-radius: 3px;
  content: "";
  transform: rotate(45deg);
}

.primary-nav,
.primary-nav ul {
  display: flex;
  align-items: center;
}

.primary-nav ul {
  gap: 0.2rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 0.78rem;
  border-radius: 0.65rem;
  color: var(--text-soft);
  font-size: 0.89rem;
  font-weight: 600;
}

.primary-nav a:not(.button):hover,
.primary-nav a:not(.button)[aria-current="true"],
.primary-nav a:not(.button)[aria-current="location"],
.primary-nav a:not(.button).is-current {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.hero {
  display: grid;
  min-height: min(860px, calc(100svh - var(--header-height) - var(--topbar-height)));
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero-grid,
.split {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.text-gradient {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lead,
.section-heading > p,
.split-copy > p,
.faq-intro > p {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gradient);
  color: #111019;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(244, 114, 182, 0.55);
  background: rgba(244, 114, 182, 0.07);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.25rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.hero-signals li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-signals li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.7);
  content: "";
}

.product-console {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(244, 114, 182, 0.08), transparent 38%),
    rgba(12, 14, 22, 0.9);
  box-shadow: var(--shadow);
}

.product-console::before {
  position: absolute;
  z-index: -1;
  inset: -25%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.17), transparent 60%);
  content: "";
  filter: blur(36px);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.35rem 1rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.console-header span:last-child {
  color: var(--cyan);
}

.signal-card {
  min-height: 190px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.signal-label,
.panel-label {
  margin-bottom: 1.1rem;
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.16;
}

.signal-card p {
  margin: 1rem 0 0;
}

.product-flow {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
  grid-template-columns: repeat(4, 1fr);
}

.product-flow li {
  position: relative;
  min-height: 104px;
  padding: 1rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
}

.product-flow span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.product-flow strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.product-flow li::after {
  position: absolute;
  right: -0.43rem;
  bottom: 1.4rem;
  z-index: 2;
  color: var(--violet);
  content: "→";
}

.product-flow li:last-child::after {
  content: none;
}

.evidence-strip {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  padding: 0.9rem 0.8rem 0.15rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.evidence-strip strong {
  color: var(--text-soft);
  font-weight: 500;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 116px;
  padding: 1.6rem;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading > div {
  max-width: 760px;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 0.45rem;
}

.card-grid,
.scenario-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.card,
.scenario-card {
  position: relative;
  min-height: 300px;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(244, 114, 182, 0.15);
  border-radius: 50%;
  content: "";
}

.card:hover,
.scenario-card:hover {
  border-color: rgba(244, 114, 182, 0.35);
  background: var(--surface-hover);
  transform: translateY(-4px);
}

.card-number,
.scenario-card span,
.process-step > span {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.card p,
.scenario-card p {
  margin-bottom: 0;
}

.split.reverse .split-copy {
  order: 2;
}

.split.reverse .mvp-panel {
  order: 1;
}

.lens-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.lens {
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.lens span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 3rem;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 50%;
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.lens p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.mvp-panel {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(103, 232, 249, 0.06), transparent 48%),
    var(--surface);
  box-shadow: var(--shadow);
}

.mvp-panel > strong {
  display: block;
  margin-bottom: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.18;
}

.mvp-panel ul {
  display: grid;
  gap: 0.9rem;
}

.mvp-panel li {
  display: flex;
  gap: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

.mvp-panel li::before {
  flex: 0 0 auto;
  color: var(--cyan);
  content: "↳";
}

.scenario-card {
  min-height: 245px;
}

.scenario-card span {
  margin-bottom: 2rem;
}

.process-list {
  border-top: 1px solid var(--line-strong);
}

.process-step {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px minmax(180px, 0.65fr) 1fr;
}

.process-step > span {
  margin: 0;
}

.process-step h3,
.process-step p {
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(250px, 0.65fr) 1fr;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.35rem;
  right: 0;
  color: var(--pink);
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  padding: 0 2rem 1.5rem 0;
}

.contact-panel {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: clip;
  border: 1px solid rgba(244, 114, 182, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 20%, rgba(103, 232, 249, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(167, 139, 250, 0.055)),
    var(--surface);
}

.contact-panel::after {
  position: absolute;
  right: -5rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.contact-panel h2,
.contact-panel p,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-panel p {
  max-width: 700px;
  font-size: 1.1rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 5, 9, 0.72);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(230px, 1.3fr) repeat(3, minmax(140px, 0.7fr));
}

.footer-brand p {
  max-width: 360px;
  margin-top: 1rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.footer-column ul {
  display: grid;
  gap: 0.55rem;
}

.footer-column a,
.footer-meta a {
  color: var(--text-muted);
}

.footer-column a:hover,
.footer-meta a:hover {
  color: var(--text);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

/* Markup-specific component bindings */
.site-shell {
  width: 100%;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  top: 0;
}

.top-strip-inner,
.nav-shell,
.top-strip-contact,
.top-strip-messages {
  display: flex;
  align-items: center;
}

.top-strip-inner,
.nav-shell {
  justify-content: space-between;
}

.top-strip-messages,
.top-strip-contact {
  gap: 1rem;
}

.top-strip-messages span {
  color: var(--text-soft);
}

.top-strip-promise {
  color: var(--text-muted) !important;
}

.top-strip-contact a {
  display: inline-flex;
  min-height: var(--topbar-height);
  align-items: center;
}

.nav-shell {
  min-height: var(--header-height);
  gap: 2rem;
}

.brand img {
  border-radius: 0.7rem;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  gap: 0.15rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--surface);
  cursor: pointer;
  order: 3;
}

.primary-nav {
  order: 1;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.button-small {
  min-height: 44px;
  margin-left: 0.35rem;
  padding-inline: 1rem !important;
  background: var(--gradient);
  color: #111019 !important;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.button-light {
  background: var(--text);
  color: var(--bg);
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow:has(> span)::before {
  content: none;
}

.hero-signals li > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-signals li:has(> span)::before {
  content: none;
}

.console-header b {
  color: var(--cyan);
  font-weight: 500;
}

.signal-card small,
.product-flow small,
.evidence-strip small,
.scenario-grid small,
.process-list small,
.panel-title small {
  display: block;
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.product-flow article {
  position: relative;
  min-height: 116px;
  padding: 1rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
}

.product-flow article.active {
  border-color: rgba(244, 114, 182, 0.5);
  background: rgba(244, 114, 182, 0.08);
}

.product-flow article.done {
  border-color: rgba(103, 232, 249, 0.35);
}

.product-flow article > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.product-flow article > strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.product-flow article::after {
  position: absolute;
  right: -0.43rem;
  bottom: 1.4rem;
  z-index: 2;
  color: var(--violet);
  content: "→";
}

.product-flow article:last-child::after {
  content: none;
}

.evidence-strip article {
  flex: 1;
}

.evidence-strip b {
  display: block;
  color: var(--text-soft);
  font-weight: 500;
}

.trust-grid > div {
  min-height: 116px;
  padding: 1.6rem;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.trust-grid span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.section-muted {
  background: rgba(255, 255, 255, 0.014);
}

.section-heading h2 span,
.split h2 span,
.faq-intro h2 span,
.contact-panel h2 span {
  color: var(--violet);
}

.card > span {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.card ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.card li {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.card li::before {
  margin-right: 0.55rem;
  color: var(--cyan);
  content: "↳";
}

.lens-grid article {
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.lens-grid article small {
  display: block;
  margin-bottom: 3rem;
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.lens-grid article p {
  margin-bottom: 0;
}

.panel-title strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.mvp-panel ol {
  display: grid;
  gap: 0;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.mvp-panel ol li {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
}

.mvp-panel ol li::before {
  display: none;
  content: none;
}

.mvp-panel ol li > span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.mvp-panel ol b,
.mvp-panel ol small {
  display: block;
}

.mvp-panel ol small {
  margin-top: 0.25rem;
  color: var(--text-muted);
}

.scenario-grid > article {
  min-height: 245px;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.scenario-grid > article:hover {
  border-color: rgba(244, 114, 182, 0.35);
  background: var(--surface-hover);
  transform: translateY(-4px);
}

.scenario-grid small {
  margin-bottom: 2rem;
}

.process-list > li {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px minmax(180px, 0.65fr) 1fr;
}

.process-list > li:first-child {
  border-top: 1px solid var(--line-strong);
}

.process-list > li > span {
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.process-list h3,
.process-list p {
  margin-bottom: 0;
}

.contact-actions {
  align-items: center;
}

.contact-actions > span {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-column nav {
  display: grid;
  gap: 0.55rem;
}

.footer-email {
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .primary-nav a {
    padding-inline: 0.55rem;
    font-size: 0.82rem;
  }

  .hero-grid {
    gap: 3rem;
  }

  .card-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lens-grid {
    grid-template-columns: 1fr;
  }

  .lens {
    min-height: auto;
  }

  .lens span {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle,
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + var(--topbar-height));
    right: 1rem;
    left: 1rem;
    display: none;
    max-height: calc(100svh - var(--header-height) - var(--topbar-height) - 1rem);
    padding: 0.7rem;
    overflow-y: auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(13, 15, 23, 0.98);
    box-shadow: var(--shadow);
  }

  .primary-nav {
    top: calc(var(--header-height) + var(--topbar-height));
    align-items: stretch;
    flex-direction: column;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-nav a {
    min-height: 48px;
    padding-inline: 1rem;
  }

  .primary-nav .button-small {
    margin: 0.4rem 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .product-console {
    max-width: 680px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(3),
  .trust-grid > div:last-child {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading > p {
    max-width: 680px;
  }

  .split.reverse .split-copy,
  .split.reverse .mvp-panel {
    order: initial;
  }
}

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .top-strip-messages {
    max-width: 52%;
    white-space: nowrap;
  }

  .top-strip-promise {
    display: none;
  }

  .top-links {
    gap: 0.55rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.25rem);
  }

  .section {
    padding-block: 4.75rem;
  }

  .hero {
    padding-block: 4rem;
  }

  .product-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-flow li:nth-child(2)::after {
    content: none;
  }

  .product-flow article:nth-child(2)::after {
    content: none;
  }

  .evidence-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-grid,
  .card-grid,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:last-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div,
  .trust-grid > div:last-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .card {
    min-height: 255px;
  }

  .process-step {
    gap: 0.75rem;
    grid-template-columns: 54px 1fr;
  }

  .process-list > li {
    gap: 0.75rem;
    grid-template-columns: 54px 1fr;
  }

  .process-list > li > p {
    grid-column: 2;
  }

  .process-step p {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .top-strip {
    font-size: 0.66rem;
  }

  .top-strip-contact a:first-child {
    display: none;
  }

  .brand {
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-flow {
    grid-template-columns: 1fr;
  }

  .product-flow li {
    min-height: 88px;
  }

  .product-flow li:nth-child(2)::after {
    content: "→";
  }

  .product-flow article:nth-child(2)::after {
    content: "→";
  }

  .product-flow li::after {
    right: 1rem;
    bottom: -0.8rem;
    transform: rotate(90deg);
  }

  .product-flow article::after {
    right: 1rem;
    bottom: -0.8rem;
    transform: rotate(90deg);
  }

  .product-flow li:last-child::after {
    content: none;
  }

  .product-flow article:last-child::after {
    content: none;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-list > li {
    grid-template-columns: 1fr;
  }

  .process-step p {
    grid-column: 1;
  }

  .process-list > li > p {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Shared Perfect.sk chrome typography, order and alignment. */
.top-strip,
.primary-nav a,
.site-footer {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.top-strip :is(span, a, p) {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: left;
}

.primary-nav,
.primary-nav ul {
  order: 0;
  gap: 4px;
}

.primary-nav a:not(.button) {
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.primary-nav .button {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.nav-toggle {
  order: 0;
}

.primary-nav .nav-contact-cta {
  min-height: 44px;
  justify-content: center;
  color: #06111f !important;
  margin-left: 6px;
  padding: 0 16px;
  text-align: center;
}

.site-footer :is(.footer-grid, .footer-brand, .footer-column, .footer-links) {
  text-align: left;
}

.site-footer .footer-brand p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.site-footer :is(.footer-column h3, .footer-column strong, .footer-links strong) {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.site-footer :is(.footer-column nav, .footer-column ul, .footer-links > div) {
  gap: 8px;
}

.site-footer :is(.footer-column a, .footer-links a) {
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.footer-bottom,
.footer-bottom p {
  font-size: 0.7rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .top-strip :is(span, a, p) {
    font-size: 0.64rem;
  }

  .primary-nav a:not(.button),
  .primary-nav .button {
    font-size: 0.9rem;
  }

  .primary-nav a:not(.button) {
    min-height: 48px;
    padding: 8px 12px;
  }

  .primary-nav a:not(.button)::after {
    display: none;
  }

  .primary-nav .nav-contact-cta {
    display: flex;
    justify-content: center;
    min-height: 48px;
    margin: 5px 0 0;
    padding: 8px 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-bottom p:last-child {
    text-align: left;
  }
}
