@charset "utf-8";



.how-page .mods-hero h1 { font-size: clamp(26px, 3.4vw, 44px); max-width: 30ch; }
.hw-answer { color: var(--ink-text); font-size: clamp(17px, 1.5vw, 20px); max-width: 62ch; margin: 0 0 22px; }


.hw-split { display: grid; gap: 24px; }
@media (min-width: 900px) { .hw-split { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: start; gap: 48px; } }
.hw-pane { padding: 24px 0 0; border-top: 1px solid var(--line); }
.hw-pane--yes { border-top: 4px solid var(--accent-bright); }
.hw-pane--no { border-top: 4px solid var(--border); }
.hw-pane-title { margin: 0 0 20px; font-family: var(--font-display); font-size: 17px; letter-spacing: 0; color: var(--text); }
.hw-pane--no .hw-pane-title { color: var(--muted); }
.hw-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hw-list li { position: relative; padding-left: 34px; line-height: 1.5; }
.hw-list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; }
.hw-list--yes li::before { background: var(--accent-soft); }
.hw-list--yes li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 9px; height: 5px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.hw-list--no li::before { width: 6px; height: 6px; top: 10px; left: 8px; background: var(--border); }

html.js .hw-list li { opacity: 0; transform: translateX(-8px); transition: opacity 420ms var(--ease), transform 420ms var(--ease); }
html.js .mod.is-in .hw-list li { opacity: 1; transform: none; }
.hw-list li:nth-child(1) { transition-delay: 250ms; } .hw-list li:nth-child(2) { transition-delay: 400ms; } .hw-list li:nth-child(3) { transition-delay: 550ms; }
.hw-list li:nth-child(4) { transition-delay: 700ms; } .hw-list li:nth-child(5) { transition-delay: 850ms; }
.hw-fit .one-line { margin-top: 32px; }


.hw-stairs { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); align-items: end; gap: 6px; height: 240px; padding-top: 28px; }
.hw-stair { --t: clamp(0, calc((var(--p) - var(--k) * 0.14) * 2.6), 1); position: relative; display: grid; align-content: start; gap: 6px; padding: 14px 12px; font-style: normal;
  height: calc((var(--k) + 1) * 22% + 10%); min-height: 96px; transform-origin: bottom; transform: scaleY(var(--t)); border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(79, 179, 255, 0.28), rgba(79, 179, 255, 0.08)); border: 1px solid rgba(79, 179, 255, 0.35); border-bottom: 0; }
.hw-stair > * { opacity: var(--t); }
.hw-stair b { font-family: var(--font-display); font-size: 22px; color: var(--accent-bright); letter-spacing: -0.02em; }
.hw-stair span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-text); }
.hw-stair:nth-child(-n + 2) { background: linear-gradient(180deg, rgba(79, 179, 255, 0.42), rgba(79, 179, 255, 0.12)); }
.hw-stairs::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--ink-line); }
.hw-stairs-note { position: absolute; left: 0; top: 0; font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-muted); }
.hw-rungs { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 16px; counter-reset: rung; }
@media (min-width: 900px) { .hw-rungs { grid-template-columns: repeat(4, 1fr); align-items: start; } }
.hw-rung { counter-increment: rung; position: relative; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--ink-line); border-radius: var(--radius-lg); padding: 22px 20px 20px; display: grid; gap: 10px; font-size: 15px; line-height: 1.55; color: var(--ink-text); }
.hw-rung p { margin: 0; }
.hw-rung-title { font-family: var(--font-display); font-size: 15px; letter-spacing: -0.01em; color: #fff; }
.hw-rung:nth-child(-n + 2) { border-color: rgba(79, 179, 255, 0.45); background: rgba(79, 179, 255, 0.07); }
.hw-honest { margin: 28px 0 0; padding-left: 16px; border-left: 3px solid var(--warn); color: var(--ink-muted); font-size: 15px; }
@media (max-width: 720px) {
  .hw-stairs { height: 248px; padding-top: 0; gap: 4px; grid-template-rows: auto minmax(0, 1fr); }
  .hw-stair { grid-row: 2; height: calc(88px + var(--k) * 24px); min-height: 88px; padding: 10px 8px; } .hw-stair b { font-size: 16px; } .hw-stair span { font-size: 8px; letter-spacing: 0.04em; }
  .hw-stairs-note { position: static; margin-bottom: 8px; grid-column: 1 / -1; grid-row: 1; }
}


@media (min-width: 1024px) { .hw-core-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; } .hw-core-scene { position: sticky; top: 96px; } }
.hw-core-scene { display: grid; gap: 14px; }
.hw-corebox { border: 2px solid var(--accent-bright); border-radius: var(--radius-lg); padding: 18px 20px; background: var(--ink); color: var(--ink-text); box-shadow: 0 0 40px rgba(79, 179, 255, 0.22); }
.hw-corebox-title { display: block; font-family: var(--font-display); font-size: 20px; color: #fff; margin-bottom: 10px; }
.hw-corebox-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.hw-corebox-list li { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; background: rgba(79, 179, 255, 0.14); border: 1px solid rgba(79, 179, 255, 0.35); }
.hw-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }

.hw-chip { --t: clamp(0, calc((var(--p) - var(--i) * 0.03) * 2.4), 1); opacity: var(--t); transform: translateY(calc((1 - var(--t)) * -18px)); }
.hw-chip a { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--text); text-decoration: none; transition: border-color var(--reveal-ms) var(--ease); }
.hw-chip a:hover { border-color: var(--accent); }
.hw-core .m-what { font-size: 17px; }


.hw-kits-block { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.hw-kits-title { font-size: clamp(20px, 2.2vw, 26px); margin: 0 0 10px; }
.hw-kits-lead { margin: 0; max-width: 70ch; color: var(--muted); }
.hw-kits { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 900px) { .hw-kits { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.hw-kit { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 20px 20px; box-shadow: var(--shadow-1); display: grid; gap: 10px; }
.hw-kit--port { border-top: 4px solid var(--accent-bright); }
.hw-kit-title { margin: 0; font-family: var(--font-display); font-size: 17px; letter-spacing: -0.01em; }
.hw-kit-what { margin: 0; font-size: 14px; color: var(--muted); }
.hw-kit-all { margin: 4px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.hw-kit-list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.hw-kit-list a { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 9px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); text-decoration: none; }
.hw-kit-list a:hover { border-color: var(--accent); }
.hw-kits-proof { margin-top: 28px; display: grid; gap: 16px; }
@media (min-width: 900px) { .hw-kits-proof { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; } }
.hw-kits-note { margin: 0; padding-left: 16px; border-left: 3px solid var(--warn); color: var(--muted); font-size: 15px; }


@media (min-width: 1024px) { .hw-shield-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); align-items: start; } }
.hw-gate { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hw-gate-row { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); }
.hw-gate-row .num > .n { font-size: clamp(26px, 2.6vw, 34px); }
.hw-gate-row .num-title { font-size: 14px; }
.hw-gate-check { position: relative; width: 26px; height: 26px; margin-top: 8px; border-radius: 50%; border: 2px solid var(--border); background: var(--surface-2); }
.hw-gate-check::after { content: ''; position: absolute; left: 6px; top: 6px; width: 10px; height: 5px; border-left: 3px solid #fff; border-bottom: 3px solid #fff; transform: rotate(-45deg) scale(0); transition: transform 300ms cubic-bezier(0.2, 1.4, 0.4, 1); }

html.js .hw-gate-row { opacity: 0.45; transition: opacity 400ms var(--ease), border-color 400ms var(--ease); transition-delay: calc(var(--k) * 260ms + 200ms); }
html.js .mod.is-in .hw-gate-row { opacity: 1; border-color: var(--accent); }
.mod.is-in .hw-gate-check { background: var(--accent); border-color: var(--accent); transition: background 300ms var(--ease), border-color 300ms var(--ease); transition-delay: calc(var(--k) * 260ms + 200ms); }
.mod.is-in .hw-gate-check::after { transform: rotate(-45deg) scale(1); transition-delay: calc(var(--k) * 260ms + 320ms); }
html:not(.js) .hw-gate-check { background: var(--accent); border-color: var(--accent); }
html:not(.js) .hw-gate-check::after { transform: rotate(-45deg) scale(1); }


@media (min-width: 1024px) { .hw-server-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); align-items: start; } }
.hw-server .m-what { font-size: 17px; }
.hw-server .m-can li { color: var(--ink-text); }
.hw-calc { border: 1px solid var(--ink-line); border-radius: var(--radius-lg); padding: 22px 22px 20px; background: rgba(255, 255, 255, 0.04); display: grid; gap: 18px; }
.hw-calc-title { margin: 0; font-family: var(--font-display); font-size: 17px; letter-spacing: -0.01em; color: #fff; }
.hw-calc-in { display: grid; gap: 8px; }
.hw-calc-field { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; color: var(--ink-text); }
.hw-calc-field .n { font-family: var(--font-display); font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; color: #fff; }
.hw-calc-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.hw-calc-range { width: 100%; margin: 0 0 8px; accent-color: var(--accent-bright); cursor: pointer; }
.hw-calc-kit { margin: 4px 0 0; padding: 0; border: 0; display: grid; gap: 6px; font-size: 14px; color: var(--ink-text); }
.hw-calc-kit legend { padding: 0; margin-bottom: 6px; }
.hw-calc-kit label { display: flex; gap: 8px; align-items: center; cursor: pointer; }
.hw-calc-kit input { accent-color: var(--accent-bright); margin: 0; }
html:not(.js) .hw-calc-range, html:not(.js) .hw-calc-kit { display: none; }
.hw-calc-out { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; transition: opacity var(--reveal-ms) var(--ease); }
.hw-calc-row { padding: 14px 16px; border: 1px solid var(--ink-line); border-radius: var(--radius-lg); background: var(--ink); }
.hw-calc-row .num > .n { font-size: clamp(26px, 2.6vw, 34px); }
.hw-calc-row .num-title { font-size: 14px; }
.hw-calc-none { display: none; margin: 0; padding-left: 16px; border-left: 3px solid var(--warn); color: var(--ink-muted); font-size: 14px; }
.hw-calc[data-kit="small"] .hw-calc-out { opacity: 0.35; }
.hw-calc[data-kit="small"] .hw-calc-none { display: block; }
.hw-calc-fig { margin: 0; }
.hw-calc-table { width: 100%; border-collapse: collapse; font-size: 14px; color: var(--ink-text); }
.hw-calc-table th, .hw-calc-table td { padding: 9px 10px; border-bottom: 1px solid var(--ink-line); text-align: left; vertical-align: top; }
.hw-calc-table thead th { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); font-weight: 400; }
.hw-calc-table tbody th { font-weight: 400; color: var(--ink-muted); }
.hw-calc-table td .n { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hw-calc-table td, .hw-calc-table thead th { transition: opacity var(--reveal-ms) var(--ease); }
html.js .hw-calc[data-kit="full"] .hw-calc-col--small, html.js .hw-calc[data-kit="small"] .hw-calc-col--full { opacity: 0.4; }
.hw-calc-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hw-calc-honest { margin: 0; padding-left: 16px; border-left: 3px solid var(--warn); color: var(--ink-muted); font-size: 14px; }
.hw-calc-mark { display: none; color: var(--ink-text); }
.hw-calc.is-custom .hw-calc-mark { display: inline; }
.hw-calc-users { padding: 16px 18px; border: 1px solid rgba(79, 179, 255, 0.35); border-radius: var(--radius-lg); background: var(--ink); }
.hw-calc-users > .n { font-size: clamp(26px, 2.6vw, 34px); }
.hw-calc-users .num-title { font-size: 14px; }

.hw-load { margin: 14px 0 6px; }
.hw-load-plot { position: relative; padding-top: 8px; }
.hw-load-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 10px; align-items: end; }
.hw-load-step { position: relative; padding-bottom: 22px; }
.hw-load-bars { display: flex; gap: 3px; align-items: end; justify-content: center; height: 96px; }
.hw-load-bars i { display: block; width: min(34%, 18px); height: 0; border-radius: 2px 2px 0 0; transition: height 900ms var(--ease); transition-delay: calc(var(--i) * 70ms + 200ms); }
.mod.is-in .hw-load-bars i, html:not(.js) .hw-load-bars i { height: var(--h); }
.hw-load-before { background: rgba(255, 255, 255, 0.28); }
.hw-load-after { background: var(--accent-bright); box-shadow: 0 0 10px rgba(79, 179, 255, 0.5); }
.hw-load-users { position: absolute; left: 0; right: 0; bottom: 0; height: 16px; line-height: 16px; text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.hw-load-limit { position: absolute; left: 0; right: 0; bottom: calc(22px + 96px * var(--y) / 100); height: 0; border-top: 1px dashed var(--warn); }
.hw-load-key { margin: 8px 0 0; display: flex; gap: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-muted); }
.hw-load-key i { display: inline-block; width: 12px; height: 8px; margin-right: 5px; border-radius: 2px; vertical-align: middle; }
.hw-load-key .hw-load-after { box-shadow: none; }
.hw-load-mark { width: 14px; height: 0; border-top: 1px dashed var(--warn); vertical-align: middle; }
.hw-load-story { margin: 10px 0 0; font-size: 14px; color: var(--ink-muted); }
.hw-load-story .n { color: var(--ink-text); }
@media (max-width: 720px) { .hw-calc { padding: 16px 14px 14px; } .hw-calc-table th, .hw-calc-table td { padding: 8px 6px; font-size: 13px; } }



.hw-own .m-what { font-size: 17px; }
@media (min-width: 1024px) { .hw-own-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; } .hw-own-scene { position: sticky; top: 96px; } }
.hw-own-scene { display: grid; gap: 16px; }
.hw-own-board { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 20px 18px; background: var(--surface); box-shadow: var(--shadow-1); display: grid; gap: 14px; }
.hw-own-board-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hw-own-cut { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hw-own-cut li { position: relative; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); transition: color 400ms var(--ease), border-color 400ms var(--ease); transition-delay: calc(var(--i) * 140ms + 300ms); }
.hw-own-cut li::after { content: ''; position: absolute; left: 8px; right: 8px; top: 50%; height: 2px; background: var(--warn); transform: scaleX(0); transform-origin: left; transition: transform 420ms var(--ease); transition-delay: calc(var(--i) * 140ms + 300ms); }
.mod.is-in .hw-own-cut li, html:not(.js) .hw-own-cut li { color: var(--muted); border-color: var(--line); }
.mod.is-in .hw-own-cut li::after, html:not(.js) .hw-own-cut li::after { transform: scaleX(1); }
.hw-own-verdict { margin: 0; font-family: var(--font-display); font-size: 15px; letter-spacing: -0.01em; color: var(--accent); }
.hw-own-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hw-own-fact { padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); }
.hw-own-fact .num > .n { font-size: clamp(26px, 2.6vw, 34px); }
.hw-own-fact .num-title { font-size: 14px; }
.hw-own-honest { margin: 28px 0 0; padding-left: 16px; border-left: 3px solid var(--warn); color: var(--muted); font-size: 15px; }


.hw-next { padding-bottom: calc(var(--section-y) + 16px); }
.hw-next .doors { margin-top: 28px; }

@media (prefers-reduced-motion: reduce) {
  html.js .hw-list li, html.js .hw-gate-row { opacity: 1; transform: none; transition: none; }
  .hw-gate-check { background: var(--accent); border-color: var(--accent); }
  .hw-gate-check::after { transform: rotate(-45deg) scale(1); }
  .hw-stair, .hw-chip { --t: 1; }
  .hw-own-cut li { color: var(--muted); border-color: var(--line); transition: none; }
  .hw-own-cut li::after { transform: scaleX(1); transition: none; }
}
