/* Syntro flagship preview. Brand values come from syntrosolutions.com/css/styles.css:
   navy #0a1628, cyan #04bade, Inter. Status colors mark real check results only. */

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --navy: #0a1628;
  --deep: #060e1a;
  --panel: #0e1d33;
  --panel-2: #12243f;
  --line: rgba(160, 190, 225, 0.16);
  --line-soft: rgba(160, 190, 225, 0.08);
  --text: #e8eef6;
  --muted: #a3b3c7;
  --cyan: #04bade;
  --cyan-soft: rgba(4, 186, 222, 0.14);
  --pass: #3ddc97;
  --warn: #f5b83d;
  --fail: #ff7a7a;
  --radius: 14px;
  --header-h: 72px;
  --gutter: clamp(16px, 4vw, 56px);
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "DejaVu Sans Mono", Menlo, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  min-height: 100vh;
  background: var(--navy);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--cyan); text-underline-offset: 3px; }
a:hover { color: #5fd6ee; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
.mono { font-family: var(--mono); font-size: 0.92em; }
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }

.skip { position: absolute; left: 12px; top: -80px; z-index: 50; background: var(--cyan); color: var(--deep); padding: 10px 16px; border-radius: 8px; font-weight: 600; text-decoration: none; }
.skip:focus { top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border-radius: 10px; border: 1px solid transparent;
  font-weight: 650; font-size: 16px; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-primary { background: var(--cyan); color: var(--deep); }
.btn-primary:hover { background: #36cbea; color: var(--deep); }
.btn-primary:active { transform: translateY(1px); }
.btn-quiet { background: transparent; border-color: var(--line); color: var(--text); }
.btn-quiet:hover { border-color: var(--cyan); color: var(--text); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 15px; }
.text-btn { background: none; border: 0; padding: 0; color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(10, 22, 40, 0.94); border-bottom: 1px solid var(--line-soft); }
.header-row { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a:not(.btn) { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; }
.site-nav a:not(.btn):hover { color: var(--text); }
.menu-btn { display: none; min-height: 44px; padding: 0 16px; border-radius: 10px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-weight: 600; font-size: 15px; }

/* Hero: the website check fills the first screen. Top-aligned so the headline holds still while results expand the console. */
.hero { min-height: calc(100vh - var(--header-h)); min-height: calc(100svh - var(--header-h)); padding: clamp(24px, 9vh, 104px) 0 clamp(24px, 5vh, 56px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 580px); gap: clamp(32px, 5vw, 88px); align-items: start; }
.hero h1 { font-size: clamp(40px, 5.4vw, 78px); line-height: 1.0; letter-spacing: -0.04em; font-weight: 720; max-width: 11ch; }
.lede { margin-top: 22px; font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 44ch; }
.check-form { margin-top: 30px; max-width: 560px; }
.check-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.check-row { display: flex; gap: 10px; }
.check-row input {
  flex: 1; min-width: 0; min-height: 56px; padding: 0 18px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--deep); color: var(--text);
  font: 500 17px var(--mono);
}
.check-row input::placeholder { color: #7f91a8; }
.check-row input:focus-visible { outline-offset: 1px; border-color: var(--cyan); }
.check-row .btn { min-height: 56px; }
.hint { margin-top: 10px; font-size: 14px; color: var(--muted); }
.trust { margin-top: 28px; font-size: 15px; color: var(--muted); }
.trust strong { color: var(--text); font-weight: 600; }

/* The console */
.console { position: relative; background: var(--deep); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.console-bar { height: 3px; background: var(--line-soft); overflow: hidden; }
.console-progress { display: block; height: 100%; width: 0; background: var(--cyan); }
.console.is-running .console-progress { width: 35%; animation: sweep 1.1s var(--ease) infinite; }
@keyframes sweep { from { transform: translateX(-100%); } to { transform: translateX(290%); } }
.console-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px 10px; min-height: 92px; }
.console-title { font-size: 15px; font-weight: 650; letter-spacing: 0; }
.console-target { font: 500 15px var(--mono); color: var(--muted); margin-top: 2px; overflow-wrap: anywhere; }
.console-status { padding: 0 20px; font-size: 14px; color: var(--muted); min-height: 0; }
.console-status:not(:empty) { padding-bottom: 10px; }
.console-status.is-error { color: var(--fail); }

.grade { position: relative; width: 64px; height: 64px; flex: none; }
.grade svg { width: 64px; height: 64px; transform: rotate(-90deg); }
.grade circle { fill: none; stroke-width: 5; }
.grade-track { stroke: var(--line); }
.grade-fill { stroke: var(--cyan); stroke-linecap: round; stroke-dasharray: 169.6; stroke-dashoffset: 169.6; transition: stroke-dashoffset 0.9s var(--ease), stroke 0.3s; }
.grade-letter { position: absolute; inset: 0; display: grid; place-items: center; font-size: 26px; font-weight: 750; }
.grade[data-grade="A"] .grade-fill, .grade[data-grade="B"] .grade-fill { stroke: var(--pass); }
.grade[data-grade="C"] .grade-fill { stroke: var(--warn); }
.grade[data-grade="D"] .grade-fill, .grade[data-grade="F"] .grade-fill { stroke: var(--fail); }

.checks { border-top: 1px solid var(--line-soft); }
.checks li + li { border-top: 1px solid var(--line-soft); }
.checks summary {
  display: grid; grid-template-columns: 12px minmax(0, 1fr) auto 12px; gap: 14px; align-items: center;
  padding: 11px 20px; min-height: 46px; cursor: pointer; list-style: none; font-size: 15px;
}
.checks summary::-webkit-details-marker { display: none; }
.checks summary::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg) translateY(-2px); transition: transform 0.2s var(--ease); }
.checks details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.checks summary:hover { background: var(--line-soft); }
.check-state { font-size: 13px; font-weight: 600; color: var(--muted); }
.check-body { padding: 2px 20px 16px 46px; font-size: 15px; color: var(--muted); display: grid; gap: 8px; }
.check-body strong { color: var(--text); }
.found { color: var(--text); overflow-wrap: anywhere; font-size: 13px; }
.found:empty { display: none; }

.dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--muted); flex: none; }
[data-state="pass"] .dot { background: var(--pass); border-color: var(--pass); }
[data-state="warn"] .dot { background: var(--warn); border-color: var(--warn); }
[data-state="fail"] .dot { background: var(--fail); border-color: var(--fail); }
[data-state="pass"] .check-state { color: var(--pass); }
[data-state="warn"] .check-state { color: var(--warn); }
[data-state="fail"] .check-state { color: var(--fail); }
[data-state="run"] .dot { border-color: var(--cyan); animation: blink 0.9s ease-in-out infinite; }
@keyframes blink { 50% { background: var(--cyan); } }
.checks li.is-revealed summary { animation: land 0.45s var(--ease); }
@keyframes land { from { background: var(--cyan-soft); } to { background: transparent; } }

.console-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 16px; padding: 14px 20px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--muted); }
.console-cta { font-weight: 600; font-size: 14px; }

/* Services explorer */
.services { padding: clamp(72px, 11vw, 140px) 0 clamp(64px, 9vw, 120px); }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 12px 32px; margin-bottom: 40px; }
.section-head h2, .process h2, .faq h2, .closing h2 { font-size: clamp(30px, 3.6vw, 50px); letter-spacing: -0.03em; font-weight: 700; }
.section-head p { color: var(--muted); }
.explorer { display: grid; gap: 28px; }
.panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); padding: clamp(24px, 3vw, 40px); background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.panel h3 { font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.02em; }
.panel-lede { margin-top: 12px; color: var(--muted); font-size: 18px; }
.panel ul { margin-top: 20px; display: grid; gap: 10px; }
.panel ul li { position: relative; padding-left: 22px; }
.panel ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.panel-links { margin-top: 22px; font-weight: 600; }

.js .explorer { grid-template-columns: 280px minmax(0, 1fr); align-items: start; }
.js .tablist { display: grid; gap: 4px; position: sticky; top: calc(var(--header-h) + 20px); }
.js .panel[hidden] { display: none; }
.tablist[hidden] { display: none !important; }
[role="tab"] {
  text-align: left; padding: 14px 18px; border-radius: 10px; border: 1px solid transparent; background: transparent;
  color: var(--muted); font-weight: 600; font-size: 16px; cursor: pointer; min-height: 48px;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
[role="tab"]:hover { color: var(--text); background: var(--line-soft); }
[role="tab"][aria-selected="true"] { color: var(--text); background: var(--panel); border-color: var(--line); box-shadow: inset 3px 0 0 var(--cyan); }

/* Demo figures */
.demo { background: var(--deep); border: 1px solid var(--line-soft); border-radius: 12px; padding: 22px; align-self: start; }
.demo figcaption { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 16px; }

.flow-steps { display: grid; gap: 4px; }
.flow-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; padding: 10px 12px; border-radius: 10px; color: var(--muted); }
.flow-steps strong { color: var(--text); font-weight: 600; }
.step-mark { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--cyan); color: var(--cyan); display: grid; place-items: center; font-weight: 700; font-size: 15px; background: var(--deep); }

.lane { position: relative; display: grid; gap: 12px; padding-left: 26px; }
.lane::before { content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px; background: var(--line); }
.lane li { position: relative; padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); font-weight: 600; }
.lane li::before { content: ""; position: absolute; left: -24px; top: 50%; width: 12px; height: 12px; margin-top: -6px; border-radius: 50%; background: var(--deep); border: 2px solid var(--cyan); }
.lane .lane-start { color: var(--fail); border-color: rgba(255, 122, 122, 0.35); }
.lane .lane-start::before { border-color: var(--fail); }
.lane .lane-end { color: var(--pass); border-color: rgba(61, 220, 151, 0.35); }
.lane .lane-end::before { border-color: var(--pass); background: var(--pass); }

.hub svg { width: 100%; height: auto; }
.hub-lines path { stroke: var(--line); stroke-width: 2; fill: none; }
.hub-node rect { fill: var(--panel); stroke: var(--line); }
.hub-node text, .hub-core text { fill: var(--text); font-size: 13px; font-weight: 600; text-anchor: middle; font-family: Inter, system-ui, sans-serif; }
.hub-core circle { fill: var(--cyan-soft); stroke: var(--cyan); stroke-width: 1.5; }
.hub-core text { font-size: 11px; }
.hub-pulses circle { fill: var(--cyan); opacity: 0; }

.readout { display: grid; gap: 2px; }
.readout div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 4px; border-bottom: 1px solid var(--line-soft); }
.readout dt { color: var(--muted); font-size: 15px; }
.readout dd { display: flex; align-items: center; gap: 10px; font-weight: 650; font-variant-numeric: tabular-nums; }
.meter-note { margin-top: 14px; font-size: 13px; color: var(--muted); }

.self-grade { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 15px; }
.self-letter { width: 56px; height: 56px; flex: none; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; font-size: 24px; font-weight: 750; color: var(--text); }
.self-letter[data-grade="A"], .self-letter[data-grade="B"] { border-color: var(--pass); }
.self-letter[data-grade="C"] { border-color: var(--warn); }
.self-letter[data-grade="D"], .self-letter[data-grade="F"] { border-color: var(--fail); }
.self-list { margin-top: 14px; display: grid; gap: 0; }
.self-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-top: 1px solid var(--line-soft); font-size: 14px; }

.stack { display: grid; gap: 8px; counter-reset: none; }
.stack li { display: grid; gap: 2px; padding: 12px 16px; border-left: 2px solid var(--cyan); background: var(--panel); border-radius: 0 10px 10px 0; }
.stack span { color: var(--muted); font-size: 14px; }

/* Founder: the one full-bleed scene change */
.founder { display: grid; grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr); background: var(--deep); border-block: 1px solid var(--line-soft); }
.founder-photo { position: relative; min-height: 560px; }
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.founder-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 72px 28px 24px; background: linear-gradient(transparent, rgba(6, 14, 26, 0.94) 55%); font-size: 15px; color: var(--muted); }
.founder-photo figcaption strong { display: block; color: var(--text); font-size: 19px; }
.founder-copy { padding: clamp(48px, 7vw, 112px) var(--gutter); max-width: 760px; align-self: center; }
.founder-copy h2 { font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.04em; font-weight: 750; line-height: 1.0; }
.founder-copy > p { margin-top: 22px; color: var(--muted); font-size: 18px; max-width: 52ch; }
.values { margin-top: 36px; display: grid; gap: 0; }
.values div { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.values dt { font-weight: 650; }
.values dd { color: var(--muted); }
.text-link { font-weight: 600; }
.founder-copy > p:last-child { margin-top: 28px; }

/* Process */
.process { padding: clamp(72px, 10vw, 128px) 0; }
.steps { margin-top: 44px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); position: relative; }
.steps::before { content: ""; position: absolute; top: 17px; left: 17px; right: 17px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--line)); }
.steps li { position: relative; }
.steps h3 { margin-top: 20px; font-size: 21px; }
.steps p { margin-top: 8px; color: var(--muted); }

/* FAQ */
.faq { padding: 0 0 clamp(72px, 10vw, 128px); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 80px); align-items: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; min-height: 48px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--cyan); }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list p { padding: 0 0 20px; color: var(--muted); max-width: 62ch; }

/* Closing */
.closing { padding: clamp(64px, 9vw, 112px) 0; background: var(--panel); border-top: 1px solid var(--line-soft); }
.closing-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center; }
.closing p { margin-top: 12px; color: var(--muted); font-size: 18px; }
.closing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; justify-content: flex-end; }
.closing-actions .mail { flex-basis: 100%; text-align: right; font-weight: 600; }

/* Footer */
.site-footer { padding: 44px 0 36px; font-size: 14px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 20px 32px; align-items: start; }
.footer-grid img { height: 36px; width: auto; }
.footer-grid > div p { margin-top: 10px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.site-footer nav a { color: var(--muted); text-decoration: none; min-height: 32px; display: inline-flex; align-items: center; }
.site-footer nav a:hover { color: var(--text); }
.legal { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line-soft); }

/* Motion that explains state; all of it stops for reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .panel:not([hidden]) .flow-steps li { animation: step-lit 10s infinite; }
  .flow-steps li:nth-child(2) { animation-delay: 2s !important; }
  .flow-steps li:nth-child(3) { animation-delay: 4s !important; }
  .flow-steps li:nth-child(4) { animation-delay: 6s !important; }
  .flow-steps li:nth-child(5) { animation-delay: 8s !important; }
  .panel:not([hidden]) .lane li:not(.lane-start):not(.lane-end) { animation: step-lit 6s infinite; }
  .lane li:nth-child(3) { animation-delay: 2s !important; }
  .lane li:nth-child(4) { animation-delay: 4s !important; }
  .panel:not([hidden]) .hub-pulses circle { animation: pulse-1 2.4s linear infinite; }
  .hub-pulses .p2 { animation-name: pulse-2 !important; animation-delay: 0.6s !important; }
  .hub-pulses .p3 { animation-name: pulse-3 !important; animation-delay: 1.2s !important; }
  .hub-pulses .p4 { animation-name: pulse-4 !important; animation-delay: 1.8s !important; }
}
@keyframes step-lit { 0%, 18% { background: var(--cyan-soft); } 22%, 100% { background: transparent; } }
@keyframes pulse-1 { 0% { transform: translate(60px, 50px); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translate(160px, 110px); opacity: 0; } }
@keyframes pulse-2 { 0% { transform: translate(260px, 50px); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translate(160px, 110px); opacity: 0; } }
@keyframes pulse-3 { 0% { transform: translate(60px, 170px); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translate(160px, 110px); opacity: 0; } }
@keyframes pulse-4 { 0% { transform: translate(260px, 170px); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translate(160px, 110px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hub-pulses { display: none; }
}

/* Tablet and phone */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 14ch; }
  .js .explorer { grid-template-columns: 1fr; }
  .js .tablist { position: static; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter) 4px; }
  .js .tablist::-webkit-scrollbar { display: none; }
  [role="tab"] { flex: none; border-color: var(--line); padding: 10px 16px; font-size: 15px; }
  [role="tab"][aria-selected="true"] { box-shadow: none; border-color: var(--cyan); }
  .panel { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder-photo { min-height: 0; aspect-ratio: 4 / 3.4; }
  .faq-grid, .closing-grid { grid-template-columns: 1fr; }
  .closing-actions { justify-content: flex-start; }
  .closing-actions .mail { text-align: left; }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }
  body { font-size: 16px; }
  .brand img { height: 34px; }
  .menu-btn { display: inline-flex; align-items: center; }
  .js .site-nav { display: none; position: absolute; left: 0; right: 0; top: var(--header-h); flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 20px; background: var(--navy); border-bottom: 1px solid var(--line); }
  .js .site-nav.is-open { display: flex; }
  .js .site-nav a:not(.btn) { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line-soft); }
  .js .site-nav .btn { margin-top: 16px; }
  .no-js .menu-btn { display: none; }
  .no-js .header-row { height: auto; flex-wrap: wrap; padding-block: 12px; }
  .no-js .site-nav { flex-wrap: wrap; gap: 12px 20px; }
  .hero { padding-top: clamp(20px, 4vh, 40px); }
  .check-row { flex-direction: column; }
  .check-row .btn { width: 100%; }
  .checks summary { padding: 10px 16px; gap: 12px; }
  .check-body { padding: 2px 16px 14px 40px; }
  .console-head { padding: 16px 16px 8px; min-height: 80px; }
  .console-status { padding: 0 16px; }
  .console-foot { padding: 12px 16px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { top: 17px; bottom: 17px; left: 17px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--cyan), var(--line)); }
  .steps li { padding-left: 54px; }
  .steps .step-mark { position: absolute; left: 0; top: 0; }
  .steps h3 { margin-top: 4px; }
  .values div { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
}
