@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(2, 6, 23, .58);
  --panel-strong: rgba(3, 7, 18, .78);
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 255, 255, .16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --teal: #2dd4bf;
  --teal-2: #14b8a6;
  --cyan: #22d3ee;
  --green: #34d399;
  --amber: #fbbf24;
  --red: #fb7185;
  --purple: #c084fc;
  --shadow: 0 28px 80px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { width: 0; height: 0; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -8;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
}

a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

.aura-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 12%, rgba(8,145,178,.12), transparent 26%),
    radial-gradient(circle at 43% 28%, rgba(37,99,235,.10), transparent 34%),
    #020617;
}
.aura-background span { position: absolute; border-radius: 999px; filter: blur(80px); opacity: .48; animation: floatAura 14s ease-in-out infinite alternate; }
.aura-background span:nth-child(1) { width: 520px; height: 520px; right: -160px; top: 80px; background: rgba(34,211,238,.28); }
.aura-background span:nth-child(2) { width: 480px; height: 480px; left: 24%; top: 260px; background: rgba(37,99,235,.18); animation-delay: -4s; }
.aura-background span:nth-child(3) { width: 400px; height: 400px; right: 20%; top: 28%; background: rgba(168,85,247,.10); animation-delay: -7s; }
@keyframes floatAura { from { transform: translate3d(-22px,-12px,0) scale(.94); } to { transform: translate3d(28px,30px,0) scale(1.08); } }

.page-shell { position: relative; isolation: isolate; overflow: hidden; }
.site-header { width: min(1220px, calc(100% - 32px)); margin: 0 auto; padding-top: 18px; position: relative; z-index: 30; }
.glass, .glass-soft {
  background: linear-gradient(180deg, rgba(15,23,42,.68), rgba(2,6,23,.58));
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.glass-soft { background: rgba(15,23,42,.42); box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); }
.nav-wrap { height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px 0 18px; }
.brand { text-decoration: none; font-size: 19px; font-weight: 600; letter-spacing: -.04em; white-space: nowrap; }
.brand span { color: #f8fafc; }
.brand b { color: var(--teal); font-weight: 600; }
.desktop-nav { display: flex; gap: 30px; align-items: center; }
.desktop-nav a { color: #cbd5e1; text-decoration: none; font-size: 13px; position: relative; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -18px; height: 2px; background: linear-gradient(90deg, var(--teal), var(--cyan)); border-radius: 9px; }
.menu-button { width: 38px; height: 38px; border: 1px solid var(--line); background: rgba(255,255,255,.03); border-radius: 10px; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 4px; cursor: pointer; }
.menu-button span { width: 16px; height: 1px; background: #cbd5e1; }
.mobile-nav { margin-top: 8px; border-radius: 14px; padding: 10px; display: grid; gap: 4px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { text-decoration: none; padding: 11px 12px; border-radius: 9px; color: #cbd5e1; font-size: 14px; }
.mobile-nav a:hover { background: rgba(255,255,255,.05); color: #fff; }

main, .site-footer { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(34,211,238,.7), rgba(99,102,241,.7), rgba(168,85,247,.5), transparent); opacity: .65; }

.hero { min-height: 700px; display: grid; grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr); gap: 72px; align-items: center; padding-top: 82px; padding-bottom: 86px; }
.hero-copy { animation: fadeSlideIn .7s ease both; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 8px; color: #99f6e4; font-size: 12px; font-weight: 500; letter-spacing: .02em; }
.eyebrow { border: 1px solid rgba(45,212,191,.25); background: rgba(20,184,166,.08); border-radius: 999px; padding: 8px 12px; margin-bottom: 24px; }
.sparkle { color: var(--cyan); font-size: 17px; }
.hero h1 { margin: 0; max-width: 740px; font-size: clamp(52px, 6.25vw, 86px); line-height: 1.02; letter-spacing: -.055em; font-weight: 600; }
.hero h1 span { color: var(--teal); text-shadow: 0 0 40px rgba(45,212,191,.16); }
.hero-lede { max-width: 650px; color: #a8b4c4; font-size: 18px; font-weight: 300; margin: 26px 0 0; }
.hero-lede strong { color: #dbeafe; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { min-height: 46px; border-radius: 10px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; font-size: 14px; font-weight: 500; border: 1px solid transparent; transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-1px); }
.primary-button { color: #001b1a; background: linear-gradient(180deg, #5eead4, #14b8a6); box-shadow: 0 12px 36px rgba(20,184,166,.25), inset 0 1px rgba(255,255,255,.5); }
.primary-button:hover { box-shadow: 0 16px 44px rgba(20,184,166,.34), inset 0 1px rgba(255,255,255,.5); }
.ghost-button { color: #e2e8f0; border-color: var(--line-strong); background: rgba(255,255,255,.035); }
.play-dot { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 8px; }
.trust-grid { margin-top: 28px; width: min(540px, 100%); border-radius: 12px; padding: 12px 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { min-width: 0; padding: 2px 14px; display: grid; grid-template-columns: auto 1fr; column-gap: 8px; align-items: center; }
.trust-grid > div + div { border-left: 1px solid var(--line); }
.trust-icon { color: var(--teal); grid-row: 1 / 3; font-size: 16px; }
.trust-grid strong { font-size: 13px; font-weight: 600; }
.trust-grid small { font-size: 11px; color: var(--muted); }

.hero-visual { position: relative; animation: fadeSlideIn .85s .08s ease both; }
.repair-demo { position: relative; border-radius: 16px; padding: 14px; box-shadow: 0 36px 90px rgba(0,0,0,.55), 0 0 55px rgba(34,211,238,.07), inset 0 0 0 1px rgba(255,255,255,.04); }
.repair-demo::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.15), transparent 22%, transparent 70%, rgba(45,212,191,.18)); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; padding: 1px; }
.demo-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 4px 4px 13px; border-bottom: 1px solid var(--line); font-size: 13px; }
.demo-head > div { display: flex; align-items: center; gap: 8px; }
.tool-icon { width: 24px; height: 24px; display: grid; place-items: center; color: var(--teal); border-radius: 7px; background: rgba(45,212,191,.08); }
.local-status { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 10px; white-space: nowrap; }
.local-status i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px rgba(52,211,153,.8); }
.demo-files { display: grid; gap: 8px; padding: 12px 0; }
.demo-file { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: 10px; padding: 9px 10px; }
.demo-file > div { min-width: 0; flex: 1; display: grid; }
.demo-file strong { font-size: 11px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.demo-file small { color: var(--muted); font-size: 9px; }
.file-icon { flex: 0 0 auto; width: 30px; height: 34px; border-radius: 7px; display: grid; place-items: center; color: #fff; font-size: 9px; font-weight: 600; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.note-icon { background: linear-gradient(180deg, #60a5fa, #6366f1); }
.pdf-icon { background: linear-gradient(180deg, #fb7185, #ef4444); }
.status-pill { font-size: 9px; border-radius: 999px; padding: 3px 7px; }
.status-pill.broken { color: #fecaca; border: 1px solid rgba(248,113,113,.38); background: rgba(127,29,29,.18); }
.check-circle { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; color: var(--green); border: 1px solid rgba(52,211,153,.45); font-size: 10px; }
.demo-timeline { position: relative; display: grid; gap: 7px; padding: 2px 0 4px 22px; }
.demo-timeline::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 14px; width: 1px; background: linear-gradient(var(--cyan), rgba(34,211,238,.1)); }
.demo-step { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; min-height: 34px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; color: #94a3b8; background: rgba(255,255,255,.018); font-size: 10px; transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease; }
.demo-step i { position: absolute; left: -21px; width: 9px; height: 9px; border-radius: 50%; background: #0f172a; border: 1px solid rgba(34,211,238,.45); }
.demo-step time { color: #64748b; font-size: 9px; }
.demo-step.is-active { color: #e2e8f0; border-color: rgba(34,211,238,.30); background: rgba(34,211,238,.055); transform: translateX(2px); }
.demo-step.is-done i, .demo-step.is-active i { background: var(--cyan); box-shadow: 0 0 12px rgba(34,211,238,.6); }
.demo-step.is-done { color: #cbd5e1; }
.demo-step.success.is-active, .demo-step.success.is-done { color: #86efac; border-color: rgba(52,211,153,.28); background: rgba(22,101,52,.14); }
.demo-download { margin-top: 10px; border: 1px solid rgba(45,212,191,.35); border-radius: 10px; background: rgba(20,184,166,.055); padding: 10px; display: flex; align-items: center; gap: 10px; }
.download-icon { width: 28px; height: 28px; border-radius: 7px; display: grid; place-items: center; background: rgba(45,212,191,.10); color: var(--teal); border: 1px solid rgba(45,212,191,.22); }
.demo-download > div { flex: 1; display: grid; }
.demo-download strong { font-size: 11px; font-weight: 500; }
.demo-download small { font-size: 9px; color: var(--muted); }
.float-chip { position: absolute; z-index: 3; width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; color: #67e8f9; background: rgba(15,23,42,.72); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); box-shadow: 0 14px 32px rgba(0,0,0,.3), 0 0 25px rgba(34,211,238,.12); }
.chip-left-top { left: -56px; top: 86px; }
.chip-left-bottom { left: -48px; bottom: 82px; }
.chip-right-top { right: -42px; top: 70px; }

.section-heading { text-align: center; max-width: 820px; margin: 0 auto 38px; }
.section-heading.narrow { max-width: 690px; }
.section-heading h2, .how-copy h2 { margin: 8px 0 12px; font-size: clamp(32px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -.045em; font-weight: 600; }
.section-heading h2 span { color: var(--teal); }
.section-heading p { color: var(--muted); margin: 0; font-weight: 300; }

.repair-section { position: relative; }
.repair-grid { width: min(760px, 100%); margin: 0 auto; display: grid; gap: 16px; }
.repair-card { border-radius: 16px; padding: 20px; }
.repair-card-head { display: flex; gap: 14px; align-items: flex-start; }
.step-badge { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #67e8f9; background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.22); font-size: 11px; font-weight: 600; }
.repair-card h3, .download-card h3 { margin: 0 0 6px; font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.repair-card p { margin: 0; color: var(--muted); font-size: 13px; }
.file-picker { margin-top: 16px; min-height: 104px; border: 1px dashed rgba(45,212,191,.42); border-radius: 12px; background: rgba(20,184,166,.025); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: background .18s ease, border-color .18s ease; }
.file-picker:hover { background: rgba(20,184,166,.055); border-color: rgba(45,212,191,.68); }
.file-picker input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.picker-icon { color: var(--teal); font-size: 20px; line-height: 1; }
.file-picker strong { margin-top: 5px; font-size: 13px; font-weight: 500; }
.file-name { color: var(--muted); font-size: 11px; margin-top: 3px; max-width: 90%; overflow-wrap: anywhere; text-align: center; }
.action-button, .reset-button { width: 100%; min-height: 46px; border-radius: 10px; border: 1px solid transparent; margin-top: 14px; cursor: pointer; font-weight: 500; font-size: 13px; transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease; }
.action-button { color: #001b1a; background: linear-gradient(180deg, #5eead4, #14b8a6); box-shadow: 0 10px 28px rgba(20,184,166,.18); }
.action-button:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(20,184,166,.28); }
.action-button:disabled { opacity: .35; cursor: not-allowed; }
.reset-button { color: #cbd5e1; border-color: var(--line); background: rgba(255,255,255,.025); }
.result-card ul { margin: 15px 0 0 48px; color: #a7f3d0; font-size: 12px; padding-left: 16px; }
.result-card code { color: #67e8f9; font-size: .9em; overflow-wrap: anywhere; }
.result-card[data-status="repairable"] { border-color: rgba(52,211,153,.28); background: linear-gradient(180deg, rgba(6,78,59,.18), rgba(2,6,23,.62)); }
.error { border: 1px solid rgba(251,113,133,.36); background: rgba(127,29,29,.17); color: #fecdd3; border-radius: 12px; padding: 13px 15px; font-size: 13px; }
.progress-wrap { margin-top: 14px; }
.progress { height: 7px; border-radius: 999px; background: rgba(255,255,255,.06); overflow: hidden; }
.progress-bar { width: 0; height: 100%; background: linear-gradient(90deg, var(--teal), var(--cyan)); box-shadow: 0 0 16px rgba(34,211,238,.45); transition: width .15s linear; }
.progress-text { margin-top: 6px; color: var(--muted); font-size: 11px; }
.download-card { text-align: center; border-radius: 16px; padding: 25px; border-color: rgba(52,211,153,.28); background: linear-gradient(180deg, rgba(6,78,59,.18), rgba(2,6,23,.62)); }
.success-mark { width: 38px; height: 38px; border: 1px solid rgba(52,211,153,.45); color: var(--green); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 10px; }
.download-button { margin-top: 8px; width: min(320px, 100%); }
.download-card p { color: var(--muted); font-size: 11px; margin: 9px auto 0; max-width: 520px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-card { min-height: 274px; border-radius: 16px; padding: 18px; position: relative; overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.18); }
.feature-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(circle at 50% 100%, #000, transparent 72%); }
.tone-green { background: radial-gradient(circle at 50% 110%, rgba(34,197,94,.16), transparent 58%), rgba(2,6,23,.58); }
.tone-blue { background: radial-gradient(circle at 50% 110%, rgba(59,130,246,.18), transparent 58%), rgba(2,6,23,.58); }
.tone-purple { background: radial-gradient(circle at 50% 110%, rgba(168,85,247,.15), transparent 58%), rgba(2,6,23,.58); }
.tone-teal { background: radial-gradient(circle at 50% 110%, rgba(20,184,166,.17), transparent 58%), rgba(2,6,23,.58); }
.tone-amber { background: radial-gradient(circle at 50% 110%, rgba(245,158,11,.15), transparent 58%), rgba(2,6,23,.58); }
.tone-cyan { background: radial-gradient(circle at 50% 110%, rgba(6,182,212,.17), transparent 58%), rgba(2,6,23,.58); }
.feature-title { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.feature-title > span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); color: #a5f3fc; }
.feature-title h3 { margin: 0; font-size: 15px; font-weight: 500; letter-spacing: -.02em; }
.mini-list { border: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.18); border-radius: 10px; overflow: hidden; }
.mini-list p { margin: 0; min-height: 38px; padding: 9px 10px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #b8c3d1; font-size: 10px; }
.mini-list p + p { border-top: 1px solid rgba(255,255,255,.06); }
.mini-list b { color: var(--green); font-weight: 500; }
.mini-list em { color: var(--amber); font-style: normal; font-weight: 600; }
.mini-list strong { color: var(--amber); font-size: 9px; font-weight: 500; }
.code-preview { border: 1px solid rgba(96,165,250,.24); background: rgba(0,0,0,.20); border-radius: 10px; padding: 12px; }
.code-preview small { color: var(--muted); font-size: 9px; }
.code-preview code { display: block; color: #dbeafe; font-size: 9px; line-height: 1.45; margin: 5px 0 17px; word-break: break-all; }
.code-preview div { border-top: 1px solid rgba(255,255,255,.07); padding-top: 10px; display: flex; gap: 8px; justify-content: space-between; color: #cbd5e1; font-size: 9px; }
.code-preview b { color: var(--green); font-weight: 500; white-space: nowrap; }
.note-preview { position: relative; min-height: 160px; display: grid; place-items: center; }
.paper { width: 76%; height: 125px; border-radius: 7px; background: #e2e8f0; color: #334155; transform: rotate(2deg); box-shadow: 0 14px 30px rgba(0,0,0,.3); padding: 12px; position: relative; }
.paper span { font-size: 8px; }
.paper i { position: absolute; left: 18px; top: 55px; color: #ef4444; font-family: cursive; font-size: 14px; transform: rotate(-5deg); }
.paper b { position: absolute; right: 22px; top: 75px; color: #ef4444; }
.pen-row { position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); background: rgba(2,6,23,.88); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; padding: 7px 9px; display: flex; gap: 7px; }
.pen-row i { width: 9px; height: 9px; border-radius: 50%; background: #64748b; }
.pen-row i:nth-child(2) { background: #38bdf8; }.pen-row i:nth-child(3) { background: #c084fc; }.pen-row i:nth-child(4) { background: #fbbf24; }.pen-row i:nth-child(5) { background: #f43f5e; }
.upload-preview { display: grid; gap: 8px; }
.upload-preview > div { display: flex; gap: 9px; align-items: center; border: 1px solid var(--line); border-radius: 9px; padding: 8px; background: rgba(0,0,0,.16); }
.upload-preview p { flex: 1; margin: 0; display: grid; min-width: 0; }
.upload-preview strong { font-size: 9px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.upload-preview small { color: var(--muted); font-size: 8px; }
.upload-preview b { color: var(--muted); font-weight: 400; }
.add-files { min-height: 34px; border: 1px dashed rgba(34,211,238,.35); border-radius: 8px; display: grid; place-items: center; color: #67e8f9; font-size: 9px; }

.how-grid { display: grid; grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: 72px; align-items: center; }
.how-copy h2 { margin-top: 8px; }
.process-list { margin-top: 30px; display: grid; }
.process-step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 0 0 28px; }
.process-step:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 40px; bottom: 0; width: 1px; background: linear-gradient(var(--cyan), rgba(34,211,238,.08)); }
.process-step > span { width: 48px; height: 36px; display: grid; place-items: center; border-radius: 9px; border: 1px solid rgba(34,211,238,.25); background: rgba(34,211,238,.06); color: #67e8f9; font-size: 13px; font-weight: 500; }
.process-step h3 { margin: 1px 0 5px; font-size: 15px; font-weight: 500; }
.process-step p { margin: 0; color: var(--muted); font-size: 12px; }
.console-card { border-radius: 16px; padding: 15px; }
.console-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 2px 3px 12px; border-bottom: 1px solid var(--line); }
.console-head strong { font-size: 13px; font-weight: 500; }.console-head span { color: var(--muted); font-size: 9px; }
.console-body { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 14px 0; }
.bars { min-height: 196px; border: 1px solid var(--line); border-radius: 10px; padding: 12px; display: flex; align-items: flex-end; justify-content: space-around; background: rgba(0,0,0,.17); }
.bars i { width: 20px; height: var(--h); min-height: 28px; border-radius: 6px 6px 2px 2px; background: linear-gradient(to top, rgba(20,184,166,.45), #2dd4bf); box-shadow: 0 0 18px rgba(45,212,191,.12); }
.console-list { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: rgba(0,0,0,.17); }
.console-list p { margin: 0; min-height: 39px; padding: 8px 10px; display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; font-size: 10px; }
.console-list p + p { border-top: 1px solid rgba(255,255,255,.06); }
.console-list time { color: var(--muted); }.console-list b { color: var(--green); }
.console-success { border: 1px solid rgba(52,211,153,.24); background: rgba(22,101,52,.11); border-radius: 10px; padding: 10px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.console-success > div { display: flex; align-items: center; gap: 10px; }.console-success > div > b { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(52,211,153,.45); color: var(--green); }.console-success span { display: grid; }.console-success strong { color: #86efac; font-size: 10px; font-weight: 500; }.console-success small { color: var(--muted); font-size: 8px; }.console-success a { color: #a7f3d0; text-decoration: none; border: 1px solid rgba(45,212,191,.25); border-radius: 8px; padding: 7px 10px; font-size: 9px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; max-width: 980px; margin: 0 auto; }
.pricing-grid.one-plan { grid-template-columns: minmax(0, 480px); justify-content: center; }
.price-card { position: relative; border-radius: 16px; padding: 22px; }
.price-card.featured { border-color: rgba(45,212,191,.38); background: radial-gradient(circle at 50% 0%, rgba(20,184,166,.13), transparent 36%), rgba(2,6,23,.62); box-shadow: 0 24px 70px rgba(0,0,0,.36), 0 0 44px rgba(20,184,166,.08), inset 0 0 0 1px rgba(45,212,191,.06); }
.popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); border: 1px solid rgba(45,212,191,.28); background: #062f2c; color: #99f6e4; border-radius: 999px; padding: 5px 10px; font-size: 9px; white-space: nowrap; }
.price-card h3 { margin: 8px 0 12px; font-size: 18px; font-weight: 500; }
.price { display: flex; align-items: baseline; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.price strong { font-size: 44px; font-weight: 600; letter-spacing: -.05em; }.price span { color: var(--muted); font-size: 11px; }
.price-card ul { list-style: none; padding: 14px 0 0; margin: 0 0 18px; display: grid; gap: 8px; color: #cbd5e1; font-size: 11px; }
.price-card li { color: #cbd5e1; }.price-card li::first-letter { color: var(--green); }
.price-card .button { width: 100%; }
.pricing-note { text-align: center; color: var(--muted); font-size: 11px; margin: 18px 0 0; }

.faq-grid { max-width: 850px; margin: 0 auto; display: grid; gap: 10px; }
.faq-grid details { border-radius: 12px; padding: 14px 16px; }
.faq-grid summary { cursor: pointer; font-size: 13px; font-weight: 500; color: #e2e8f0; }.faq-grid p { margin: 10px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; }
.footer-brand p, .footer-note p { color: var(--muted); font-size: 11px; max-width: 250px; }
.footer-grid > div:not(.footer-brand):not(.footer-note) { display: grid; align-content: start; gap: 8px; }
.footer-grid strong { font-size: 11px; font-weight: 500; }.footer-grid a:not(.brand) { color: var(--muted); font-size: 10px; text-decoration: none; }.footer-grid a:hover { color: #fff; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }.footer-badges span { border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--muted); border-radius: 7px; padding: 4px 7px; font-size: 8px; }
.footer-note { border-radius: 12px; padding: 13px; }.footer-note p { margin-bottom: 0; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; color: var(--muted-2); font-size: 9px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(48px, 7vw, 68px); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .how-grid { gap: 36px; }
  .console-body { grid-template-columns: 140px 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }.footer-note { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }.menu-button { display: flex; }
  .section-pad { padding: 66px 0; }
  .hero { grid-template-columns: 1fr; min-height: 0; gap: 50px; padding-top: 64px; }
  .hero-copy { text-align: center; }.hero h1, .hero-lede { margin-left: auto; margin-right: auto; }.hero-actions, .trust-grid { margin-left: auto; margin-right: auto; }.hero-actions { justify-content: center; }
  .hero-visual { width: min(560px, 100%); margin: 0 auto; }.chip-left-top { left: -16px; }.chip-left-bottom { left: -9px; }.chip-right-top { right: -9px; }
  .how-grid { grid-template-columns: 1fr; }.how-copy { max-width: 620px; margin: 0 auto; }.console-card { max-width: 700px; width: 100%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header, main, .site-footer { width: min(100% - 22px, 1220px); }
  .nav-wrap { height: 54px; }
  .section-pad { padding: 54px 0; }
  .hero { padding-top: 46px; padding-bottom: 58px; }
  .hero h1 { font-size: 48px; line-height: 1.03; }.hero-lede { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }.hero-actions .button { width: 100%; }
  .trust-grid { width: 100%; }.trust-grid > div { padding: 2px 8px; column-gap: 5px; }.trust-icon { display: none; }.trust-grid strong { font-size: 11px; }.trust-grid small { font-size: 9px; }
  .float-chip { width: 38px; height: 38px; font-size: 12px; }.chip-left-top { top: 72px; }.chip-left-bottom { bottom: 55px; }
  .repair-demo { padding: 11px; }.demo-head { font-size: 11px; }.local-status { display: none; }.demo-step { font-size: 9px; }.demo-download strong { font-size: 10px; }
  .section-heading h2, .how-copy h2 { font-size: 36px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: 250px; }
  .repair-card { padding: 16px; }.repair-card-head { gap: 10px; }.step-badge { width: 30px; height: 30px; }.result-card ul { margin-left: 34px; }
  .console-body { grid-template-columns: 1fr; }.bars { min-height: 120px; }.console-success { align-items: flex-start; flex-direction: column; }.console-success a { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand, .footer-note { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
