:root {
  color-scheme: dark;
  --bg: #070a12;
  --surface: #0d1220;
  --surface-2: #111827;
  --line: rgba(148, 163, 184, .15);
  --line-bright: rgba(125, 146, 184, .28);
  --text: #f7f8fb;
  --muted: #9aa6bb;
  --muted-2: #718096;
  --purple: #8b5cf6;
  --blue: #38bdf8;
  --green: #34d399;
  --amber: #fbbf24;
  --danger: #fb7185;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 9%, rgba(56, 189, 248, .1), transparent 29rem),
    radial-gradient(circle at 8% 5%, rgba(139, 92, 246, .12), transparent 31rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255, 255, 255, .017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .017) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

body.dialog-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: #2563eb;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 18, .82);
  backdrop-filter: blur(22px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(65, 126, 255, .25);
}

.brand-copy strong { display: block; font-size: 19px; letter-spacing: -.03em; }
.brand-copy span { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav a, .desktop-nav button {
  padding: 9px 11px;
  border: 0;
  border-radius: 9px;
  color: #aeb9ca;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.desktop-nav a:hover, .desktop-nav button:hover { color: white; background: rgba(255,255,255,.045); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.beta-badge, .beta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(251, 191, 36, .25);
  border-radius: 999px;
  color: #ffe08a;
  background: rgba(251, 191, 36, .07);
  font-size: 11px;
  font-weight: 800;
}
.beta-badge { padding: 8px 11px; }
.beta-label { padding: 5px 8px; }
.beta-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 12px rgba(251, 191, 36, .8); }

.nav-download {
  padding: 10px 15px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(105deg, #7c3aed, #2563eb 58%, #0ea5e9);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 2px; background: #dce4f2; }
.mobile-menu { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
  min-height: 670px;
  padding-block: 72px 78px;
}

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b6c1d3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .025em;
}
.kicker { color: #8ba1be; text-transform: uppercase; letter-spacing: .11em; font-size: 10px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px rgba(52,211,153,.8); }

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(48px, 5.4vw, 75px); line-height: .98; letter-spacing: -.065em; }
h1 span { color: transparent; background: linear-gradient(105deg, #c4b5fd 10%, #67e8f9 92%); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: clamp(16px, 1.6vw, 18px); line-height: 1.72; }

.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(105deg, #7c3aed, #2563eb 55%, #0ea5e9); box-shadow: 0 18px 44px rgba(37, 99, 235, .22); }
.button.primary:hover { box-shadow: 0 22px 52px rgba(37,99,235,.32); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.025); color: #d6deeb; }
.button.secondary:hover { border-color: var(--line-bright); background: rgba(255,255,255,.05); }
.button.compact { min-height: 44px; padding-inline: 16px; }
.button.wide { width: 100%; }
.button svg { width: 17px; height: 17px; }

.hero-meta { display: flex; align-items: center; gap: 0; margin-top: 17px; color: #728198; font-size: 11px; }
.hero-meta span { display: inline-flex; align-items: center; }
.hero-meta span + span::before { content: "•"; margin-inline: 9px; color: #3e4b61; }

.hero-product { position: relative; min-width: 0; }
.app-frame { position: relative; overflow: hidden; border: 1px solid rgba(148,163,184,.25); border-radius: 22px; background: #10141d; box-shadow: var(--shadow); transform: perspective(1300px) rotateY(-4deg) rotateX(1.5deg); }
.app-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); border-radius: inherit; }
.app-frame img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.app-glow { position: absolute; inset: 10% -15%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(56,189,248,.2), rgba(139,92,246,.08) 48%, transparent 72%); filter: blur(22px); }

.connection-pill { position: absolute; right: -18px; bottom: 30px; display: flex; align-items: center; gap: 12px; min-width: 190px; padding: 14px 16px; border: 1px solid rgba(52,211,153,.28); border-radius: 15px; background: rgba(8,14,24,.94); box-shadow: 0 18px 48px rgba(0,0,0,.45); }
.connection-pill small, .connection-pill strong { display: block; }
.connection-pill small { color: #7b899e; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.connection-pill strong { margin-top: 3px; font-size: 12px; }
.signal { display: flex; align-items: flex-end; gap: 2px; height: 20px; }
.signal i { display: block; width: 3px; border-radius: 3px; background: var(--green); }
.signal i:nth-child(1) { height: 7px; }.signal i:nth-child(2) { height: 13px; }.signal i:nth-child(3) { height: 19px; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 18px 26px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong { font-size: 13px; }
.trust-grid span { margin-top: 5px; color: var(--muted-2); font-size: 11px; }

.section { padding-block: 104px; }
.section-tinted { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(15,23,42,.55), rgba(8,13,24,.42)); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2, .security-copy h2, .download-copy h2, .faq-column h2, .feedback-card h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -.05em; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.text-button { padding: 10px 0; border: 0; color: #a8c5f5; background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }
.text-button span { margin-left: 6px; color: var(--blue); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; counter-reset: steps; }
.step-card { position: relative; min-height: 210px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(14,20,34,.68); }
.step-number { display: block; margin-bottom: 42px; color: #7dd3fc; font-size: 12px; font-weight: 800; }
.step-card h3 { margin-bottom: 9px; font-size: 18px; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.step-card::after { content: ""; position: absolute; top: -55px; right: -55px; width: 150px; height: 150px; border: 1px solid rgba(139,92,246,.18); border-radius: 50%; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { min-height: 205px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: rgba(10,16,29,.72); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(96,165,250,.3); background: rgba(15,23,42,.92); }
.feature-icon { display: grid; place-items: center; width: 41px; height: 41px; margin-bottom: 26px; border: 1px solid rgba(139,92,246,.28); border-radius: 12px; color: #c4b5fd; background: rgba(139,92,246,.09); font-size: 18px; font-weight: 800; }
.feature-card h3 { margin-bottom: 9px; font-size: 16px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.security-section { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(60px, 10vw, 140px); }
.security-visual { position: relative; display: grid; place-items: center; min-height: 430px; }
.shield-ring { display: grid; place-items: center; width: 270px; height: 270px; border: 1px solid rgba(96,165,250,.22); border-radius: 50%; background: radial-gradient(circle, rgba(56,189,248,.12), rgba(139,92,246,.04) 55%, transparent 70%); box-shadow: inset 0 0 70px rgba(37,99,235,.05); }
.shield { display: grid; place-items: center; width: 110px; height: 128px; clip-path: polygon(50% 0, 94% 18%, 88% 73%, 50% 100%, 12% 73%, 6% 18%); color: white; background: linear-gradient(145deg,#7c3aed,#2563eb 58%,#06b6d4); font-size: 36px; font-weight: 800; box-shadow: 0 25px 60px rgba(37,99,235,.35); }
.orbit { position: absolute; border: 1px solid rgba(148,163,184,.12); border-radius: 50%; }
.orbit-one { width: 350px; height: 350px; }.orbit-two { width: 420px; height: 420px; border-style: dashed; }
.security-copy > p { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #c6d0df; font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.download-section { padding-block: 92px; border-block: 1px solid rgba(96,165,250,.18); background: radial-gradient(circle at 80% 45%, rgba(56,189,248,.12), transparent 28rem), linear-gradient(135deg, rgba(39,20,78,.45), rgba(7,14,29,.82) 45%, rgba(8,25,40,.65)); }
.download-shell { display: grid; grid-template-columns: 1fr 480px; align-items: center; gap: clamp(50px, 8vw, 110px); }
.download-copy > p { max-width: 560px; margin: 21px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.service-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: #9fb0c7; background: rgba(7,12,22,.48); font-size: 11px; }
.service-status span { width: 7px; height: 7px; border-radius: 50%; background: #64748b; }
.service-status.ready { color: #a7f3d0; border-color: rgba(52,211,153,.2); }.service-status.ready span { background: var(--green); box-shadow: 0 0 11px rgba(52,211,153,.8); }
.service-status.error { color: #fecdd3; border-color: rgba(251,113,133,.25); }.service-status.error span { background: var(--danger); }

.download-card { padding: 27px; border: 1px solid rgba(148,163,184,.22); border-radius: 21px; background: rgba(9,14,25,.92); box-shadow: var(--shadow); }
.download-title { display: flex; align-items: center; gap: 13px; }
.download-title img { width: 48px; height: 48px; border-radius: 14px; }
.download-title strong, .download-title span { display: block; }.download-title strong { font-size: 15px; }.download-title span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.release-data { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 25px 0 20px; border-block: 1px solid var(--line); }
.release-data > div { padding: 14px 0; }.release-data > div:nth-child(odd) { border-right: 1px solid var(--line); }.release-data > div:nth-child(even) { padding-left: 20px; }.release-data > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.release-data dt { color: #718096; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }.release-data dd { margin: 5px 0 0; color: #dce4f0; font-size: 12px; font-weight: 700; }
.hash-button { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; width: 100%; margin-top: 12px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; color: #8290a6; background: rgba(255,255,255,.018); cursor: pointer; }
.hash-button span, .hash-button b { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }.hash-button code { min-width: 0; overflow: hidden; color: #aab7ca; font-size: 10px; text-align: left; text-overflow: ellipsis; }.hash-button b { color: #93c5fd; }
.download-note { margin: 13px 0 0; color: #69788f; font-size: 10px; line-height: 1.5; text-align: center; }

.current-build { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #8da0b9; font-size: 10px; font-weight: 700; }
.timeline { max-width: 900px; margin-top: 12px; }
.release-item { position: relative; display: grid; grid-template-columns: 24px 1fr; gap: 20px; padding: 0 0 44px; }
.release-item::before { content: ""; position: absolute; top: 12px; bottom: -2px; left: 5px; width: 1px; background: var(--line); }.release-item:last-child::before { display: none; }
.release-marker { position: relative; z-index: 1; width: 11px; height: 11px; margin-top: 4px; border: 3px solid #0a0f1b; border-radius: 50%; background: #52617a; box-shadow: 0 0 0 1px #52617a; }
.release-item.current .release-marker { background: var(--green); box-shadow: 0 0 0 1px var(--green), 0 0 18px rgba(52,211,153,.5); }
.release-item span { color: #74859e; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }.release-item h3 { margin: 8px 0 14px; font-size: 20px; }.release-item ul { display: grid; gap: 8px; margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.faq-column h2, .feedback-card h2 { font-size: clamp(34px,3.6vw,48px); }
.faq-list { display: grid; gap: 9px; margin-top: 32px; }
.faq-list details { border: 1px solid var(--line); border-radius: 13px; background: rgba(8,13,24,.58); }
.faq-list summary { position: relative; padding: 17px 46px 17px 17px; font-size: 13px; font-weight: 800; cursor: pointer; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { content: "+"; position: absolute; top: 13px; right: 16px; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 7px; color: #9db1cd; }.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 17px 17px; color: var(--muted); font-size: 12px; line-height: 1.65; }.faq-list code { color: #c4b5fd; }

.feedback-card { padding: 32px; border: 1px solid rgba(96,165,250,.2); border-radius: 21px; background: rgba(9,15,27,.8); box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.feedback-card > p { margin: 17px 0 24px; color: var(--muted); font-size: 13px; line-height: 1.65; }
#feedback-form { display: grid; gap: 14px; }
#feedback-form label { display: grid; gap: 7px; color: #aab7c9; font-size: 11px; font-weight: 700; }
#feedback-form label small { color: #68768c; font-size: 9px; }
#feedback-form input, #feedback-form select, #feedback-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; outline: none; color: #e9eef7; background: #080d18; font-size: 12px; transition: border-color .18s ease, box-shadow .18s ease; }
#feedback-form input, #feedback-form select { height: 44px; padding: 0 12px; }#feedback-form textarea { min-height: 112px; padding: 12px; resize: vertical; }
#feedback-form input:focus, #feedback-form select:focus, #feedback-form textarea:focus { border-color: rgba(96,165,250,.55); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
.form-status { min-height: 18px; color: #8fa1b8; font-size: 11px; text-align: center; }.form-status.success { color: #86efac; }.form-status.error { color: #fda4af; }

.site-footer { padding-block: 38px; border-top: 1px solid var(--line); background: #060910; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }.footer-brand img { width: 35px; height: 35px; border-radius: 10px; }.footer-brand strong, .footer-brand span { display: block; }.footer-brand strong { font-size: 14px; }.footer-brand span { margin-top: 2px; color: #65748a; font-size: 9px; }
.footer-links { display: flex; align-items: center; gap: 18px; }.footer-links a, .footer-links button { padding: 0; border: 0; color: #8896ab; background: transparent; font-size: 11px; font-weight: 700; text-decoration: none; cursor: pointer; }.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-grid > p { grid-column: 1 / -1; margin: 6px 0 0; color: #505e72; font-size: 10px; }

.site-dialog { width: min(920px, calc(100% - 32px)); max-height: min(760px, calc(100vh - 40px)); padding: 0; overflow: auto; border: 1px solid rgba(148,163,184,.24); border-radius: 22px; color: var(--text); background: #0a101c; box-shadow: 0 35px 120px rgba(0,0,0,.72); }
.site-dialog::backdrop { background: rgba(2,5,11,.78); backdrop-filter: blur(9px); }
.dialog-head { position: sticky; top: 0; z-index: 3; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 28px 28px 20px; border-bottom: 1px solid var(--line); background: rgba(10,16,28,.95); backdrop-filter: blur(15px); }.dialog-head h2 { margin: 8px 0 0; font-size: clamp(27px,4vw,42px); letter-spacing: -.045em; }.dialog-close { flex: 0 0 auto; display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 11px; color: #b6c1d2; background: rgba(255,255,255,.025); font-size: 24px; cursor: pointer; }
.dialog-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px 28px 28px; background: var(--line); }.dialog-feature-grid article { min-height: 150px; padding: 22px; background: #0a101c; }.dialog-feature-grid b { color: #60a5fa; font-size: 9px; letter-spacing: .08em; }.dialog-feature-grid h3 { margin: 14px 0 7px; font-size: 14px; }.dialog-feature-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }.dialog-action { margin: 0 28px 28px; }
.privacy-dialog { width: min(680px, calc(100% - 32px)); }.privacy-copy { display: grid; gap: 13px; padding: 26px 28px 30px; }.privacy-copy p { margin: 0; padding: 17px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: rgba(255,255,255,.018); font-size: 13px; line-height: 1.7; }

.toast { position: fixed; right: 22px; bottom: 22px; z-index: 300; max-width: min(380px, calc(100% - 44px)); padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; color: #dbe4f1; background: rgba(9,15,27,.96); box-shadow: 0 20px 60px rgba(0,0,0,.5); font-size: 12px; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 1; transform: none; }
.hero .reveal { animation: hero-enter .58s ease both; }
.hero .hero-product { animation-delay: .08s; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.hero .reveal { animation: none; }.button, .feature-card { transition: none; } }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }.menu-toggle { display: block; }.mobile-menu { position: absolute; left: 0; right: 0; display: grid; padding: 10px 24px 18px; border-bottom: 1px solid var(--line); background: rgba(7,10,18,.97); }.mobile-menu[hidden] { display: none; }.mobile-menu a, .mobile-menu button { padding: 13px 8px; border: 0; border-bottom: 1px solid var(--line); color: #bec8d8; background: transparent; font-size: 13px; font-weight: 700; text-align: left; text-decoration: none; cursor: pointer; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 66px; }.hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }.hero-lead { margin-inline: auto; }.hero-actions, .hero-meta { justify-content: center; }.hero-product { width: min(820px, 100%); margin: 10px auto 0; }.app-frame { transform: none; }.connection-pill { right: 14px; }
  .download-shell { grid-template-columns: 1fr; }.download-copy { max-width: 650px; text-align: center; margin-inline: auto; }.download-copy > p { margin-inline: auto; }.download-card { width: min(520px,100%); margin-inline: auto; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }.nav-shell { min-height: 70px; }.brand-copy span, .nav-download { display: none; }.beta-badge { padding: 7px 9px; }
  h1 { font-size: clamp(43px,13vw,66px); }.hero { gap: 45px; padding-block: 51px 58px; }.hero-lead { font-size: 15px; }.connection-pill { position: relative; right: auto; bottom: auto; width: max-content; max-width: 100%; margin: -18px auto 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }.trust-grid > div { min-height: 82px; padding: 15px; border-bottom: 1px solid var(--line); }.trust-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .section { padding-block: 74px; }.section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }.section-heading h2, .security-copy h2, .download-copy h2, .faq-column h2, .feedback-card h2 { font-size: clamp(33px,10vw,46px); }.section-heading > p { font-size: 13px; }
  .steps, .feature-grid { grid-template-columns: 1fr; }.step-card, .feature-card { min-height: auto; }.step-number { margin-bottom: 28px; }
  .security-section { grid-template-columns: 1fr; gap: 20px; }.security-visual { min-height: 330px; }.shield-ring { width: 220px; height: 220px; }.shield { width: 90px; height: 104px; }.orbit-one { width: 280px; height: 280px; }.orbit-two { width: 325px; height: 325px; }.check-list { grid-template-columns: 1fr; }
  .download-section { padding-block: 68px; }.download-card { padding: 21px; }.release-data { grid-template-columns: 1fr; }.release-data > div:nth-child(odd) { border-right: 0; }.release-data > div:nth-child(even) { padding-left: 0; }.release-data > div { border-bottom: 1px solid var(--line); }.release-data > div:last-child { border-bottom: 0; }
  .support-grid { grid-template-columns: 1fr; }.feedback-card { padding: 24px 20px; }.form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }.footer-links { flex-wrap: wrap; gap: 14px; }.footer-grid > p { grid-column: auto; }
  .dialog-feature-grid { grid-template-columns: 1fr; padding-inline: 18px; }.dialog-head { padding: 22px 18px 17px; }.dialog-action { margin-inline: 18px; }.privacy-copy { padding-inline: 18px; }
}

@media (max-width: 430px) {
  .brand-mark { width: 38px; height: 38px; }.brand-copy strong { font-size: 17px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }.hero-meta { flex-wrap: wrap; }.app-frame { border-radius: 15px; }.trust-grid { grid-template-columns: 1fr; }.trust-grid > div { border-left: 1px solid var(--line); }.release-data { margin-top: 20px; }.hash-button { grid-template-columns: auto 1fr; }.hash-button b { display: none; }
}
