@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #060913;
  --bg-deep: #04070f;
  --panel: rgba(15, 22, 40, 0.72);
  --panel-strong: #121a30;
  --line: rgba(126, 146, 187, 0.24);
  --line-soft: rgba(126, 146, 187, 0.14);
  --text: #f2f5ff;
  --muted: #9ca9c6;
  --accent: #9f84ff;
  --accent-strong: #7b4dff;
  --accent-soft: rgba(159, 132, 255, 0.2);
  --wine: #d85a86;
  --ice: #4ed8ff;
  --warn: #ffb86b;
  --max-width: 1140px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 76% -10%, rgba(123, 77, 255, 0.18), transparent 62%),
    radial-gradient(860px 440px at 18% -14%, rgba(216, 90, 134, 0.1), transparent 64%),
    radial-gradient(900px 520px at 10% 110%, rgba(78, 216, 255, 0.08), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  line-height: 1.45;
}

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

:focus-visible {
  outline: 2px solid rgba(78, 216, 255, 0.82);
  outline-offset: 3px;
}

.blog-article a {
  text-decoration: underline;
  text-decoration-color: rgba(207, 224, 255, 0.45);
  text-underline-offset: 3px;
}

.blog-article a:hover {
  text-decoration-color: rgba(241, 245, 255, 0.7);
}

.blog-article .mermaid {
  margin: 18px 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(126, 146, 187, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(600px 280px at 50% 0%, rgba(123, 77, 255, 0.18), transparent 60%),
    radial-gradient(520px 260px at 12% 120%, rgba(216, 90, 134, 0.10), transparent 62%),
    linear-gradient(180deg, rgba(14, 20, 36, 0.78), rgba(9, 12, 22, 0.78));
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.blog-article .mermaid svg {
  max-width: 100%;
  width: 100% !important;
  height: auto !important;
  display: block;
}

/* Mermaid polish: make diagrams readable on the dark space background. */
.blog-article .mermaid svg {
  color: rgba(233, 240, 255, 0.92);
}

.blog-article .mermaid svg .node rect,
.blog-article .mermaid svg .node polygon,
.blog-article .mermaid svg .node circle,
.blog-article .mermaid svg .node ellipse {
  fill: rgba(255, 255, 255, 0.09) !important;
  stroke: rgba(207, 224, 255, 0.66) !important;
  stroke-width: 1.7px !important;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.blog-article .mermaid svg .node .label,
.blog-article .mermaid svg .nodeLabel,
.blog-article .mermaid svg .label text,
.blog-article .mermaid svg text {
  fill: rgba(241, 246, 255, 0.92) !important;
  font-weight: 600;
}

.blog-article .mermaid svg .edgePath path,
.blog-article .mermaid svg .flowchart-link {
  stroke: rgba(201, 219, 255, 0.70) !important;
  stroke-width: 1.7px !important;
}

.blog-article .mermaid svg .arrowheadPath {
  fill: rgba(201, 219, 255, 0.78) !important;
  stroke: rgba(201, 219, 255, 0.78) !important;
}

.blog-article .mermaid svg .cluster rect {
  fill: rgba(255, 255, 255, 0.035) !important;
  stroke: rgba(178, 197, 237, 0.32) !important;
  stroke-width: 1.35px !important;
}

/* Mermaid mindmap uses different class names than flowcharts; style those too. */
.blog-article .mermaid svg .mindmap-node > rect,
.blog-article .mermaid svg .mindmap-node > circle,
.blog-article .mermaid svg .mindmap-node > ellipse {
  fill: rgba(255, 255, 255, 0.09) !important;
  stroke: rgba(207, 224, 255, 0.66) !important;
  stroke-width: 1.7px !important;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.blog-article .mermaid svg .mindmap-edge {
  stroke: rgba(201, 219, 255, 0.70) !important;
  stroke-width: 1.7px !important;
}

.blog-article .mermaid svg .mindmap-node text,
.blog-article .mermaid svg .mindmap-node .label {
  fill: rgba(241, 246, 255, 0.92) !important;
  font-weight: 600;
}

/* Mermaid uses SVG foreignObject for some labels; keep it transparent. */
.blog-article .mermaid svg .edgeLabel,
.blog-article .mermaid svg .edgeLabel rect,
.blog-article .mermaid svg .edgeLabel foreignObject {
  background: transparent !important;
  fill: transparent !important;
}

.blog-article .mermaid svg .edgeLabel span,
.blog-article .mermaid svg .edgeLabel div {
  color: rgba(233, 240, 255, 0.92) !important;
}

.blog-article .mermaid:not([data-processed]) {
  color: rgba(213, 226, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre;
}

.blog-article .i18n-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(126, 146, 187, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 30, 52, 0.5), rgba(13, 18, 33, 0.58));
  color: rgba(201, 214, 240, 0.92);
  font-size: 13px;
  line-height: 1.5;
}

.blog-article .i18n-note a {
  text-decoration: underline;
  text-decoration-color: rgba(201, 214, 240, 0.52);
  text-underline-offset: 3px;
}

.diagram-panel {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(126, 146, 187, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(600px 280px at 50% 0%, rgba(123, 77, 255, 0.18), transparent 60%),
    radial-gradient(520px 260px at 12% 120%, rgba(216, 90, 134, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(14, 20, 36, 0.78), rgba(9, 12, 22, 0.78));
}

.diagram-panel .mermaid {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.diagram-panel .mermaid svg {
  max-width: 100%;
  width: 100% !important;
  height: auto !important;
  display: block;
}

.diagram-panel .mermaid:not([data-processed]) {
  color: rgba(213, 226, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre;
}

/* A subtle vignette + lighting pass (keep the "space" vibe without visible patterns). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(900px 520px at 58% 0%, rgba(255, 255, 255, 0.06), transparent 62%),
    radial-gradient(1000px 700px at 50% 20%, rgba(123, 77, 255, 0.06), transparent 64%),
    radial-gradient(900px 700px at 10% 70%, rgba(216, 90, 134, 0.035), transparent 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 28%, transparent 74%, rgba(0, 0, 0, 0.45));
}

/* Low-opacity grain: makes gradients look premium without adding obvious texture. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.shell {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 22, 0.78);
  backdrop-filter: blur(10px);
}

.nav-row {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
}

.brand-sigil {
  width: 32px;
  height: 32px;
  display: block;
  color: rgba(159, 176, 215, 0.95);
  filter: drop-shadow(0 0 14px rgba(138, 107, 255, 0.28));
}

.brand-sigil .sigil-core circle {
  fill: var(--accent-strong);
  opacity: 0.92;
}

.brand-sigil .sigil-orbit .orbit-dot {
  fill: var(--ice);
  filter: drop-shadow(0 0 8px rgba(78, 216, 255, 0.65));
}

.brand-sigil .sigil-orbit {
  transform-box: fill-box;
  transform-origin: center;
}

.brand-sigil .orbit-a {
  animation: sigilSpinA 8.5s linear infinite;
}

.brand-sigil .orbit-b {
  animation: sigilSpinB 11.5s linear infinite reverse;
}

.brand-sigil .orbit-c {
  animation: sigilSpinC 15s linear infinite;
}

.brand-wordmark {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #dfe8ff;
  text-transform: uppercase;
}

.brand-wordmark em {
  font-style: normal;
  color: #9fb0d7;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 24, 42, 0.65);
}

.lang-switch a {
  min-width: 32px;
  padding: 5px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.lang-switch a:hover {
  color: var(--text);
}

.lang-switch a.active {
  color: #eef3ff;
  background: rgba(123, 77, 255, 0.3);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(18, 27, 48, 0.55);
  color: #dde8ff;
  font-size: 13px;
  font-weight: 700;
}

.nav-toggle:hover {
  border-color: rgba(167, 186, 225, 0.42);
}

.pill-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(124, 93, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.pill-btn:hover {
  border-color: rgba(163, 183, 228, 0.48);
  background: rgba(124, 93, 255, 0.28);
}

.hero {
  padding: 92px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  margin: 0;
  font-size: 12px;
  color: #ccbaf9;
  background: rgba(95, 65, 187, 0.18);
}

.hero h1 {
  margin: 16px 0 14px;
  max-width: 840px;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.hero-copy {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-loop {
  margin: 12px 0 0;
  color: #c8d4ef;
  font-size: 14px;
  font-weight: 600;
}

.hero-loop span {
  color: #95a6c9;
  margin-right: 8px;
  font-weight: 500;
}

.hero-ctas {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(180deg, rgba(216, 90, 134, 0.26), rgba(123, 77, 255, 0.95));
  box-shadow: 0 10px 26px rgba(123, 77, 255, 0.28);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(18, 27, 48, 0.62);
  color: #dde8ff;
}

.btn-text {
  background: transparent;
  color: #bdd0fa;
  padding-left: 6px;
  padding-right: 6px;
}

.btn:hover {
  transform: translateY(-1px);
  transition: transform 120ms ease, border-color 120ms ease;
}

.hero-note {
  margin: 12px 0 0;
  color: #9dadcc;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  margin-top: 36px;
  min-height: 230px;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 18px 18px;
  background:
    radial-gradient(700px 260px at 55% 10%, rgba(123, 77, 255, 0.22), transparent 62%),
    radial-gradient(680px 280px at 20% 130%, rgba(216, 90, 134, 0.12), transparent 64%),
    linear-gradient(145deg, rgba(14, 24, 48, 0.86), rgba(20, 24, 48, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 180px;
  left: 44%;
  top: -22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123, 77, 255, 0.32), transparent 72%);
}

.hero-tags {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0 8px;
}

.tag-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-assess { align-items: flex-start; }
.tag-build { align-items: center; }
.tag-run { align-items: flex-end; }

.hero-rail {
  position: relative;
  height: 126px;
}

.rail-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 186, 225, 0.32), transparent);
}

.rail-node {
  position: absolute;
  top: 40px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.node-1 { left: 16.7%; }
.node-2 { left: 50%; }
.node-3 { left: 83.3%; }

.node-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(222, 235, 255, 0.9);
  box-shadow:
    0 0 0 4px rgba(123, 77, 255, 0.15),
    0 0 18px rgba(123, 77, 255, 0.22);
}

.node-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(213, 226, 255, 0.74);
}

.hero-chip {
  border: 1px solid rgba(161, 180, 220, 0.26);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  color: #e5eeff;
  background: rgba(20, 28, 52, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section {
  padding: 28px 0 94px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 4.1vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.grid {
  display: grid;
  gap: 14px;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 24, 44, 0.8), rgba(13, 18, 34, 0.72));
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease;
}

.card:hover {
  border-color: rgba(167, 186, 225, 0.38);
  transform: translateY(-1px);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.metric-card .metric {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #d9cbff;
}

.offer-list {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(14, 20, 36, 0.7);
}

.offer-item {
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.offer-item:last-child {
  border-bottom: 0;
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.offer-top h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.offer-top span {
  color: var(--warn);
  font-size: 13px;
  font-weight: 700;
}

.offer-item p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 78ch;
}

.choose-start {
  margin: 18px 0 18px;
}

.choose-start > h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}


.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: rgba(14, 20, 36, 0.55);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(234, 243, 255, 0.96);
  letter-spacing: -0.01em;
  list-style: none;
}

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

.faq-item p {
  margin: 10px 0 0;
  color: rgba(200, 215, 245, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.stack-list {
  display: grid;
  gap: 12px;
}

.proof-card p {
  margin-top: 7px;
}

.proof-card p strong {
  color: #deebff;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.comparison-col li {
  font-size: 14px;
}

.comparison-col.highlight {
  border-color: rgba(145, 106, 255, 0.35);
  background: linear-gradient(180deg, rgba(27, 35, 62, 0.76), rgba(18, 26, 47, 0.76));
}

.cta-panel {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(26, 34, 58, 0.88), rgba(16, 22, 40, 0.88));
  padding: 20px;
}

.cta-panel h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.cta-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.inline-link {
  margin-top: 12px;
}

.inline-link a {
  color: #cfe0ff;
  font-weight: 600;
}

.inline-link a:hover {
  color: #f1f5ff;
}

.section-compact {
  padding-top: 12px;
  padding-bottom: 56px;
}

.funnel-main {
  max-width: 880px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.funnel-back {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #c9d9f8;
  background: rgba(18, 25, 44, 0.74);
}

.funnel-back:hover {
  border-color: rgba(160, 181, 224, 0.46);
}

.funnel-hero {
  padding: 24px 0 24px;
}

.blog-card h3 {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.blog-meta {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #afbce0;
  font-weight: 700;
}

.blog-article {
  margin-top: 20px;
  padding: 26px;
}

.blog-article h1,
.blog-article h2,
.blog-article h3 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.blog-article h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 54px);
}

.blog-article h2 {
  margin: 30px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.blog-article h3 {
  margin: 24px 0 8px;
  font-size: clamp(20px, 2.3vw, 28px);
}

.blog-article p,
.blog-article li {
  color: var(--muted);
  font-size: 16px;
}

.blog-article ul,
.blog-article ol {
  margin: 10px 0 10px 20px;
  padding: 0;
}

.blog-article li {
  margin-bottom: 6px;
}

.blog-article code {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(20, 28, 47, 0.8);
  border: 1px solid rgba(140, 162, 208, 0.24);
  border-radius: 8px;
  padding: 2px 6px;
  color: #d8e7ff;
}

.blog-article pre {
  margin: 14px 0;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(140, 162, 208, 0.24);
  background: rgba(14, 20, 36, 0.9);
  overflow-x: auto;
}

.blog-article pre code {
  background: transparent;
  border: 0;
  padding: 0;
}

.blog-article blockquote {
  margin: 12px 0;
  padding: 0 0 0 14px;
  border-left: 2px solid rgba(158, 130, 255, 0.6);
  color: #bdc8e4;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-sub {
  margin-top: 6px;
}

.footer-row p {
  margin: 0;
  color: #8f9dc0;
  font-size: 13px;
}

.footer-link {
  color: #a9b7d8;
  text-decoration: underline;
  text-decoration-color: rgba(207, 224, 255, 0.35);
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: #dbe6ff;
  text-decoration-color: rgba(207, 224, 255, 0.65);
}

@keyframes sigilSpinA {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes sigilSpinB {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes sigilSpinC {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-sigil .orbit-a,
  .brand-sigil .orbit-b,
  .brand-sigil .orbit-c {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
  }

  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    padding: 14px 14px 18px;
    flex-direction: column;
    gap: 10px;
    background: rgba(8, 12, 22, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    z-index: 30;
  }

  body.nav-open {
    overflow: hidden;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .comparison {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 250px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(var(--max-width), 94vw);
  }

  .nav-row {
    height: 66px;
  }

  body.nav-open .nav-links {
    top: 66px;
  }

  .brand-wordmark {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .pill-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .lang-switch {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    order: 1;
  }

  .pill-btn {
    order: 2;
  }

  .hero {
    padding: 68px 0 52px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .btn-text {
    justify-content: flex-start;
  }

  .hero-panel {
    min-height: 280px;
  }

  .rail-line {
    left: 10%;
    right: 10%;
    top: 144px;
  }

  .rail-node {
    top: 128px;
  }

  .node-1 { left: 14%; }
  .node-2 { left: 50%; }
  .node-3 { left: 86%; }

  .node-label {
    font-size: 11px;
  }

  .hero-chip {
    font-size: 11px;
    padding: 7px 10px;
  }

  .chip-1 { left: 10%; top: 46px; }
  .chip-4 { left: 62%; top: 46px; }
  .chip-2 { left: 12%; top: 86px; }
  .chip-3 { left: 52%; top: 86px; }

  .hero-note {
    font-size: 12px;
  }

  .section {
    padding: 16px 0 64px;
  }

  .section-compact {
    padding-top: 8px;
    padding-bottom: 34px;
  }

  .section-head p,
  .offer-item p {
    font-size: 15px;
  }

  .card,
  .offer-item,
  .cta-panel {
    padding: 14px;
  }

  .blog-article {
    padding: 16px;
  }

  .footer-row {
    flex-direction: column;
  }
}
