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

:root {
  --bg: #0f1118;
  --bg-soft: #151826;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --ink: #f5f7ff;
  --muted: #c7d0e3;
  --accent: #09b5c8;
  --accent-rgb: 18, 181, 156;
  --accent-2: #f77d57;
  --outline: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(5, 7, 14, 0.48);
  --header-bg: rgba(10, 12, 18, 0.98);
  --radius: 4px;
  --radius-pill: 6px;
  --container: min(1180px, calc(100% - 36px));
  --font-body: 'Manrope', 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --space: clamp(20px, 4vw, 30px);
  --text-strong: #0f172a;
  --text-muted-strong: #475569;
  --light-bg: #f7f8fc;
  --light-soft: #eef2f7;
  --light-panel: #ffffff;
  --light-border: #d9dde8;
  --light-chip: #e2e8f0;
  --light-chip-border: #cbd5e1;
}

.page-home {
  --bg: #f7f7f7;
  --bg-soft: #efefef;
  --panel: #ffffff;
  --panel-strong: #efefef;
  --ink: #5a6b80;
  --muted: #738196;
  --accent: #19b7cb;
  --accent-rgb: 25, 183, 203;
  --outline: rgba(90, 107, 128, 0.18);
  --shadow: 0 12px 32px rgba(53, 51, 48, 0.12);
  --header-bg: rgba(255, 255, 255, 0.98);
  --text-strong: #5a6b80;
  --text-muted-strong: #738196;
  --light-bg: #f7f7f7;
  --light-soft: #efefef;
  --light-panel: #ffffff;
  --light-border: #dcdcdc;
  --light-chip: #efefef;
  --light-chip-border: #d1d1d1;
}

.page-secondary {
  --bg: #f7f7f7;
  --bg-soft: #efefef;
  --panel: #ffffff;
  --panel-strong: #efefef;
  --ink: #5a6b80;
  --muted: #738196;
  --accent: #19b7cb;
  --accent-rgb: 25, 183, 203;
  --outline: rgba(90, 107, 128, 0.18);
  --shadow: 0 12px 32px rgba(53, 51, 48, 0.12);
  --header-bg: rgba(255, 255, 255, 0.98);
  --text-strong: #5a6b80;
  --text-muted-strong: #738196;
  --light-bg: #f7f7f7;
  --light-soft: #efefef;
  --light-panel: #ffffff;
  --light-border: #dcdcdc;
  --light-chip: #efefef;
  --light-chip-border: #d1d1d1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.08), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(247, 125, 87, 0.08), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(var(--accent-rgb), 0.06), transparent 30%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto;
  background-position: 20% 20%, 80% 15%, 70% 80%;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.page {
  position: relative;
  overflow-x: hidden;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(90, 107, 128, 0.06);
}

.brand-logo {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.25));
}

.brand-name {
  display: block;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1.0;
}

.brand-tag {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.nav-link {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: var(--muted);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(25, 183, 203, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  background: var(--panel);
  color: var(--ink);
  padding: 10px;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 4px;
  margin: 6px 0;
}

.header-cta .btn {
  font-size: 14px;
}

.header-icon-links {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.header-icon-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px;
  background: transparent;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease,
    color 150ms ease;
}

.header-icon-link:hover {
  background: rgba(var(--accent-rgb), 0.08);
}

.header-icon-link:focus-visible {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.6);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.28) inset, 0 14px 32px rgba(0, 0, 0, 0.3);
}

.header-icon-link img,
.header-icon-link svg {
  width: 100%;
  height: 100%;
  transform: scale(1.08);
  transform-origin: center;
  display: block;
  object-fit: contain;
}

.header-icon-link-github img {
  filter: brightness(0) invert(1);
  opacity: 0.94;
  transform: scale(1.15);
}

.header-icon-link-docs img,
.header-icon-link-docs svg {
  transform: scale(1.42);
  transform-origin: center;
}

.page-home .header-icon-link-github img,
.page-secondary .header-icon-link-github img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(8%) saturate(720%) hue-rotate(169deg) brightness(91%)
    contrast(88%);
  opacity: 1;
}

.page-home .header-icon-link-docs img,
.page-secondary .header-icon-link-docs img,
.page-home .header-icon-link-docs svg,
.page-secondary .header-icon-link-docs svg {
  filter: brightness(0) saturate(100%) invert(34%) sepia(8%) saturate(720%) hue-rotate(169deg) brightness(91%)
    contrast(88%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent));
  color: #ffffff;
}

.btn-ghost {
  background: var(--panel);
  border-color: var(--outline);
  color: var(--ink);
}


.btn:hover {
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.45);
}

.btn-hero {
  padding: 16px 28px;
  font-size: 18px;
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 120px;
  margin-bottom: 36px;
  background:
    linear-gradient(100deg, rgba(12, 14, 21, 0.48) 0%, rgba(12, 14, 21, 0.26) 50%, rgba(12, 14, 21, 0.12) 88%),
    url('img/projects-bg.jpg');
  background-size: auto, 150%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
  border-bottom: 1px solid var(--outline);
}

.page-home .hero {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.83) 52%, rgba(255, 255, 255, 0.2) 90%),
    url('img/projects-bg.jpg');
  background-size: auto, 150%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
}

.page-home .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(90, 107, 128, 0.09) 0, rgba(90, 107, 128, 0.09) 1px, transparent 1px, transparent 18px);
  opacity: 0.48;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.page-home .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to bottom, rgba(90, 107, 128, 0.08) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(to right, rgba(var(--accent-rgb), 0.08) 0 1px, transparent 1px 160px),
    linear-gradient(120deg, rgba(var(--accent-rgb), 0.12), rgba(90, 107, 128, 0.08), rgba(247, 125, 87, 0.08));
  mix-blend-mode: normal;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.page-home .shape {
  opacity: 0.3;
}

.page-home .shape-a {
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.4), transparent 58%);
}

.page-home .shape-b {
  background: radial-gradient(circle, rgba(247, 125, 87, 0.35), transparent 58%);
}

.shape {
  position: absolute;
  filter: blur(46px);
  opacity: 0.22;
  z-index: 0;
}

.shape-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #5fe0c5, transparent 55%);
  top: -120px;
  left: 12%;
}

.shape-b {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #f77d57, transparent 55%);
  top: -160px;
  right: -40px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto;
}

.hero-copy h1 {
  margin: 6px 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.text-accent {
  color: var(--accent);
}

.underline-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.underline-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  opacity: 0.9;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(90, 107, 128, 0.06);
  color: var(--text-strong);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 16px;
}

.eyebrow .text-accent {
  margin-left: 0px;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  justify-content: center;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-notes-bottom {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 107, 128, 0.18);
  color: var(--text-strong);
  font-weight: 600;
  font-size: 13px;
}

.chip-soft {
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.14), rgba(90, 107, 128, 0.1));
  color: #153640;
  border-color: rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 2px 24px rgba(17, 24, 39, 0.1);
}

.section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.section-download {
  padding-top: 30px;
}

section[id] {
  scroll-margin-top: 110px;
}

.section-light {
  background: var(--light-bg);
  color: var(--text-strong);
}

.section-light .section-head p,
.section-light .section-head .section-lead {
  color: var(--text-muted-strong);
}

.section-light .feature-card,
.section-light .clarity-card,
.section-light .faq-item {
  background: var(--light-panel);
  border-color: var(--light-border);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.section-light .feature-card p,
.section-light .clarity-card p,
.section-light .clarity-card li,
.section-light .section-lead,
.section-light .faq-answer,
.section-light .download-tag {
  color: var(--text-muted-strong);
}

.section-light .faq-item {
  color: var(--text-strong);
}

.section-light .clarity-chip {
  border-color: rgba(var(--accent-rgb), 0.26);
}

.section-light .faq-question {
  color: var(--text-strong);
}

.section-light .faq-plus {
  background: var(--light-soft);
  border-color: var(--light-border);
  color: var(--text-strong);
}

.section-light .eyebrow {
  background: transparent;
  color: var(--text-strong);
  border: 1px solid rgba(var(--accent-rgb), 0.32);
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}

.section-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.section-clarity {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-clarity .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.clarity-card {
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.clarity-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #cde7df;
  background: rgba(var(--accent-rgb), 0.12);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
}

.clarity-card h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.clarity-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.clarity-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clarity-card li + li {
  margin-top: 8px;
}

.section-download .download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

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

.os-badge {
  min-width: 36px;
  padding: 6px 8px;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  background: var(--panel-strong);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.download-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 150ms ease, border-color 150ms ease;
}

.download-card:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
}

.download-os {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
}

.download-tag {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.arrow {
  font-weight: 800;
  color: var(--accent);
}

.download-note {
  margin-top: 18px;
  color: var(--muted);
}

.inline-link {
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.section-light .inline-link {
  color: var(--text-strong);
  border-bottom-color: rgba(15, 23, 42, 0.3);
}

.section-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.faq-head h2 {
  margin-bottom: 8px;
}

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

.faq-item {
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: none;
  color: var(--ink);
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}

.faq-plus {
  width: 24px;
  height: 24px;
  border-radius: var(--radius);
  background: var(--panel-strong);
  border: 1px solid var(--outline);
  position: relative;
  flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background: currentColor;
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded='true'] .faq-plus::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
}

.section-community .community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.community-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 150ms ease, border-color 150ms ease;
}

.community-card:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
}

.community-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--panel-strong);
  color: var(--ink);
  border: 1px solid var(--outline);
}

.community-glyph {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.community-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 17px;
}

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

.community-card .arrow {
  color: var(--accent);
}

.site-footer {
  padding: 74px 0 34px;
  border-top: 1px solid var(--outline);
  background: rgba(5, 7, 14, 0.8);
}

.page-home .site-footer,
.page-secondary .site-footer {
  background: var(--light-bg);
  border-top-color: rgba(90, 107, 128, 0.18);
}

.site-footer .footer-inner,
.site-footer .footer-bottom {
  width: min(1200px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand .brand {
  margin-bottom: 10px;
}

.footer-copy {
  color: var(--muted);
  margin: 14px 0 18px;
  font-size: 18px;
  line-height: 1.8;
  max-width: 42ch;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}

.footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  transition: color 160ms ease, opacity 160ms ease;
}


.footer-brand > .footer-link::before,
.footer-col .footer-link::before {
  content: '';
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.34);
  flex: 0 0 24px;
  transform: translateY(1px);
  transition: background 160ms ease, width 160ms ease;
}

.footer-link:hover {
  color: var(--ink);
}

.footer-brand > .footer-link:hover::before,
.footer-col .footer-link:hover::before {
  background: rgba(var(--accent-rgb), 0.7);
  width: 30px;
}

.footer-col .footer-link,
.footer-brand > .footer-link {
  display: flex;
  margin-bottom: 20px;
}

.footer-col .footer-link:last-child,
.footer-brand > .footer-link:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 30px;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-note {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.footer-support {
  justify-self: center;
  font-weight: 700;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-self: end;
}

.footer-bottom-links .footer-link {
  font-size: 16px;
  gap: 0;
}


.footer-bottom-links .footer-link::before {
  content: none;
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    gap: 8px;
  }

  .footer-support,
  .footer-bottom-links {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 46px 0 28px;
  }

  .footer-copy {
    font-size: 16px;
  }

  .footer-col h3 {
    font-size: 17px;
  }

  .footer-link {
    font-size: 16px;
    gap: 12px;
  }

  .footer-brand > .footer-link::before,
  .footer-col .footer-link::before {
    width: 20px;
    flex-basis: 20px;
  }

  .footer-bottom-links .footer-link {
    font-size: 15px;
  }

  .footer-bottom-links {
    gap: 14px;
  }
}
.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background-color: var(--header-bg);
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.25);
}

.page-home .site-header.is-scrolled,
.page-secondary .site-header.is-scrolled {
  border-bottom-color: rgba(90, 107, 128, 0.2);
  box-shadow: 0 5px 20px rgba(53, 51, 48, 0.08);
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      'brand cta'
      'nav nav';
    row-gap: 8px;
  }

  .brand {
    grid-area: brand;
  }

  .nav {
    grid-area: nav;
    justify-content: flex-start;
  }

  .header-cta {
    grid-area: cta;
    justify-self: end;
  }

  .header-cta {
    gap: 8px;
  }

  .header-icon-link {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--outline);
    border-radius: var(--radius);
  }

  .nav-links.is-open {
    display: grid;
    gap: 8px;
  }

  .hero {
    padding-top: 80px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    gap: 8px;
  }

  .footer-support,
  .footer-bottom-links {
    justify-self: start;
  }
}





body {
  font-size: 17px;
}

.brand-name {
  font-size: 22px;
}

.brand-tag {
  font-size: 14px;
}

.nav-link {
  font-size: 16.5px;
}

.header-cta .btn,
.btn {
  font-size: 16px;
}

.btn-hero {
  padding: 16px 30px;
  font-size: 19px;
}

.hero-copy h1 {
  font-size: clamp(36px, 7vw, 61px);
}

.lead {
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.6;
}

.section-head h2 {
  font-size: clamp(30px, 4.5vw, 49px);
  line-height: 1.0;
}

.section-lead {
  font-size: 20px;
  line-height: 1.6;
  max-width: 62ch;
}

.chip {
  font-size: 15px;
}

.faq-question {
  font-size: 17px;
  line-height: 1.5;
}

.faq-answer {
  font-size: 18px;
  line-height: 1.7;
}

.footer-copy,
.footer-link,
.footer-note,
.download-note {
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .section-lead,
  .lead {
    font-size: 17px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer,
  .footer-copy,
  .footer-link,
  .footer-note {
    font-size: 15px;
  }
}









.why-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 40px;
  align-items: center;
}

.why-lead-card {
  flex: 0.9 1 0;
  min-width: 320px;
  display: grid;
  min-height: 100%;
}

.why-stack {
  flex: 1.15 1 0;
  min-width: 380px;
}

.why-lead-visual {
  margin: 0;
  width: 100%;
  height: auto;
}

.why-lead-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 660px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--light-border);
  background: var(--light-panel);
}

.why-copy h3 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.why-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted-strong);
  max-width: 58ch;
}

.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.why-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
  margin: 28px auto 0;
  border-top: 1px solid var(--light-border);
}

.why-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 12px 4px;
}

.why-proof-item span {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.why-proof-item p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-strong);
  max-width: 80%;
}

.why-feature-intro {
  text-align: center;
  margin: 72px auto 0;
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.why-feature-intro h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.why-feature-intro p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted-strong);
}

.why-proof-band {
  display: flex;
  justify-content: center;
}

.why-proof-icon {
  width: 210px;
  height: 180px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b6f61;
  font-weight: 800;
  font-size: 26px;
}

.why-proof-icon svg {
  width: 210px;
  height: 210px;
  stroke-width: 2.6px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-proof-icon img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter: url('#why-proof-tealize');
}

.why-proof-icon .why-proof-icon-accent {
  stroke: var(--accent);
}

.why-stack {
  display: grid;
  gap: 5px;
}

.why-side-card {
  padding: 20px 34px;
  display: grid;
  gap: 12px;
}

.why-side-card-accent {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.04), rgba(var(--accent-rgb), 0)),
    var(--light-panel);
  padding: 0;
  overflow: visible;
  gap: 0;
}

.why-side-card-accent .why-lead-visual {
  height: auto;
}


.why-side-card h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.08;
  color: var(--text-strong);
}

.why-side-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted-strong);
}

.why-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.why-side-list li {
  position: relative;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-strong);
  font-weight: 700;
}

.why-side-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.12);
}

@media (max-width: 980px) {
  .why-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .why-proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .why-lead-card,
  .why-side-card {
    padding: 22px;
  }

  .why-copy h3 {
    font-size: 28px;
  }

  .why-side-card h3 {
    font-size: 22px;
  }
}








.section-clarity {
  position: relative;
  overflow: hidden;
}

.clarity-inner {
  position: relative;
  z-index: 2;
}

.clarity-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.clarity-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}


.clarity-line {
  position: absolute;
  left: var(--line-left);
  top: var(--line-top);
  bottom: var(--line-bottom);
  width: var(--line-width);
  border-radius: 999px;
  opacity: var(--line-opacity, 0.7);
}

.clarity-line::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(31, 152, 219, 0) 0%,
    rgba(31, 152, 219, 0.06) 10%,
    rgba(31, 152, 219, 0.26) 28%,
    rgba(31, 152, 219, 0.38) 50%,
    rgba(31, 152, 219, 0.18) 74%,
    rgba(31, 152, 219, 0.05) 90%,
    rgba(31, 152, 219, 0) 100%
  );
  box-shadow: 0 0 4px rgba(31, 152, 219, 0.05);
}

.clarity-line::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: calc(100% + var(--echo-offset, 0px));
  width: var(--echo-width, 0px);
  border-radius: 999px;
  opacity: var(--echo-opacity, 0);
  background: linear-gradient(
    180deg,
    rgba(31, 152, 219, 0) 0%,
    rgba(31, 152, 219, 0.03) 18%,
    rgba(31, 152, 219, 0.11) 48%,
    rgba(31, 152, 219, 0.04) 82%,
    rgba(31, 152, 219, 0) 100%
  );
}


.clarity-line-1 {
  --line-left: 8%;
  --line-top: 8%;
  --line-bottom: 32%;
  --line-width: 2px;
  --line-opacity: 0.26;
  --echo-offset: 5px;
  --echo-width: 1px;
  --echo-opacity: 0;
}

.clarity-line-2 {
  --line-left: 21%;
  --line-top: 20%;
  --line-bottom: 10%;
  --line-width: 3px;
  --line-opacity: 0.3;
}

.clarity-line-3 {
  --line-left: 36%;
  --line-top: 2%;
  --line-bottom: 44%;
  --line-width: 7px;
  --line-opacity: 0.48;
  --echo-offset: 7px;
  --echo-width: 1px;
  --echo-opacity: 0;
}

.clarity-line-4 {
  --line-left: 58%;
  --line-top: 28%;
  --line-bottom: 4%;
  --line-width: 14px;
  --line-opacity: 0.16;
}

.clarity-line-5 {
  --line-left: 76%;
  --line-top: 12%;
  --line-bottom: 24%;
  --line-width: 7px;
  --line-opacity: 0.28;
  --echo-offset: 6px;
  --echo-width: 2px;
  --echo-opacity: 0;
}

.clarity-line-6 {
  --line-left: 91%;
  --line-top: 20%;
  --line-bottom: 18%;
  --line-width: 2px;
  --line-opacity: 0.36;
}


.orientation-timeline {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.orientation-timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  top: 0;
  width: 0;
  transform: translateX(-50%);
  background: none;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.orientation-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(24, 160, 177, 0.08) 0%,
    rgba(24, 160, 177, 0.54) 42%,
    rgba(24, 160, 177, 0.14) 100%
  );
  box-shadow: 0 0 6px rgba(24, 160, 177, 0.04);
  z-index: 1;
}

.orientation-step {
  position: relative;
  width: calc(50% - 40px);
  padding: 24px 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 2px 10px rgba(5, 7, 14, 0.08);
  backdrop-filter: blur(30px);
  z-index: 2;
}

.orientation-step:nth-child(odd) {
  justify-self: start;
}

.orientation-step:nth-child(even) {
  justify-self: end;
}

.orientation-step::before {
  content: attr(data-step);
  position: absolute;
  top: 26px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--bg);
  z-index: 2;
  background: var(--ink);
  border: 1px solid rgba(24, 160, 177, 0.32);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
}

.orientation-step:nth-child(odd)::before {
  right: -62px;
}

.orientation-step:nth-child(even)::before {
  left: -62px;
}

.orientation-step::after {
  content: '';
  position: absolute;
  top: 48px;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 160, 177, 0.82), rgba(24, 160, 177, 0.34));
}

.orientation-step:nth-child(odd)::after {
  right: -36px;
}

.orientation-step:nth-child(even)::after {
  left: -36px;
}

.orientation-step-label {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9fb0ca;
}

.orientation-step h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.orientation-step > p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--muted);
}

.orientation-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.orientation-points li {
  position: relative;
  padding-top: 15px;
  border-top: 1px solid #bfc3c9;
  font-size: 17px;
  line-height: 1.68;
  color: #4b5563;
}

@media (max-width: 920px) {
  .clarity-line-1 {
    --line-left: 10%;
    --line-top: 6%;
    --line-bottom: 34%;
  }

  .clarity-line-2 {
    --line-left: 28%;
    --line-top: 14%;
    --line-bottom: 8%;
  }

  .clarity-line-3 {
    --line-left: 48%;
    --line-top: 0%;
    --line-bottom: 46%;
  }

  .clarity-line-4 {
    --line-left: 70%;
    --line-top: 22%;
    --line-bottom: 6%;
  }

  .clarity-line-5 {
    --line-left: 86%;
    --line-top: 8%;
    --line-bottom: 24%;
  }

  .clarity-line-6 {
    display: none;
  }

  .orientation-timeline::before {
    left: 24px;
    transform: none;
  }

  .orientation-step {
    width: calc(100% - 58px);
    justify-self: end;
  }

  .orientation-step:nth-child(odd),
  .orientation-step:nth-child(even) {
    justify-self: end;
  }

  .orientation-step::before {
    left: -36px;
    right: auto;
    width: 40px;
    height: 40px;
  }

  .orientation-step::after {
    left: -22px;
    right: auto;
    width: 22px;
  }

}

@media (max-width: 640px) {
  .section-clarity {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(7, 11, 18, 0.14)),
      radial-gradient(circle at 18% 16%, rgba(24, 160, 177, 0.04), transparent 22%);
  }

  .clarity-line-1,
  .clarity-line-4,
  .clarity-line-6 {
    display: none;
  }

  .clarity-line-2 {
    --line-left: 16%;
    --line-top: 8%;
    --line-bottom: 22%;
    --line-opacity: 0.26;
  }

  .clarity-line-3 {
    --line-left: 52%;
    --line-top: 4%;
    --line-bottom: 34%;
    --line-width: 3px;
    --line-opacity: 0.52;
  }

  .clarity-line-5 {
    --line-left: 86%;
    --line-top: 10%;
    --line-bottom: 26%;
    --line-width: 2px;
    --line-opacity: 0.4;
  }

  .orientation-timeline {
    margin-top: 34px;
  }

  .orientation-step {
    padding: 20px;
    width: calc(100% - 46px);
  }

  .orientation-step h3 {
    font-size: 24px;
  }

  .orientation-step > p {
    font-size: 16px;
  }

  .orientation-points li {
    font-size: 16px;
  }
}


.download-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.28fr);
  gap: 18px;
  margin-top: 32px;
  align-items: stretch;
}

.download-intro,
.download-platforms {
  min-height: 100%;
}

.download-intro {
  display: grid;
  gap: 18px;
}

.download-release-card,
.download-verify-card,
.download-platform {
  border-radius: var(--radius);
  
}

.download-release-card,
.download-verify-card {
  background: #ffffff;
  backdrop-filter: blur(4px);
}

.download-release-card {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.download-release-label {
  margin: 0;
  display: inline-flex;
  justify-self: start;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  color: #c6f5eb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-release-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.download-release-version {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--ink);
}

.download-release-state {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--outline);
  color: #d7e0f0;
  font-size: 13px;
  font-weight: 700;
}

.download-release-copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.download-trust-list {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.download-trust-item {
  display: grid;
  gap: 6px;
}

.download-trust-item span {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.download-trust-item p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: #4b5563;
}

.download-verify-card {
  padding: 22px 24px;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(247, 125, 87, 0.08), rgba(247, 125, 87, 0)),
    rgba(255, 255, 255, 0.3);
}

.download-verify-title {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

.download-verify-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.download-verify-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.download-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 10px 14px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--outline);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.download-text-link:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.12) inset;
}

.download-platforms {
  display: grid;
  gap: 14px;
}

.download-platform {
  --platform-accent: rgba(var(--accent-rgb), 0.7);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.download-platform::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--platform-accent);
}

.download-platform:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.download-platform:focus-visible {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.2) inset,
    var(--shadow);
}

.download-platform-win {
  --platform-accent: rgba(127, 215, 255, 0.88);
}

.download-platform-mac {
  --platform-accent: rgba(95, 224, 197, 0.88);
}

.download-platform-linux {
  --platform-accent: rgba(247, 125, 87, 0.88);
}

.download-platform-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.download-platform-heading {
  display: grid;
  gap: 10px;
}

.download-platform-os {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.download-platform-icon {
  width: 50px;
  height: 50px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6f8ff;
  opacity: 1;
  flex: 0 0 auto;
}

.download-platform-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.download-platform-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.download-platform-label {
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.download-platform-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.10;
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: 0.85;
}

.download-platform-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 112px;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--outline);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.download-platform:hover .download-platform-action {
  border-color: rgba(var(--accent-rgb), 0.4);
  
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.download-platform-copy {
  margin: 0;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
}

.download-platform-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #bfc3c9;
}

.download-platform-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--outline);
  color: #4b5563;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 980px) {
  .download-layout {
    grid-template-columns: 1fr;
  }

  .download-platforms {
    grid-template-rows: none;
    height: auto;
  }

  .download-platform {
    height: auto;
  }
}

@media (max-width: 640px) {
  .download-layout {
    gap: 16px;
    margin-top: 28px;
  }

  .download-release-card,
  .download-verify-card,
  .download-platform {
    padding: 20px;
  }

  .download-release-row,
  .download-platform-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-platform-top {
    gap: 14px;
  }

  .download-platform-os {
    gap: 9px;
  }

  .download-platform-icon {
    width: 25px;
    height: 25px;
    padding: 4px;
  }

  .download-platform-label {
    font-size: 17px;
  }

  .download-platform-title {
    font-size: 24px;
  }

  .download-release-copy,
  .download-platform-copy {
    font-size: 16px;
  }

  .download-verify-links,
  .download-platform-meta {
    gap: 8px;
  }

  .download-platform-action {
    min-width: 100%;
  }
}

@media (max-width: 420px) {
  .download-release-version {
    font-size: 38px;
  }

  .download-platform-label {
    font-size: 16px;
  }

  .download-platform-title {
    font-size: 22px;
  }

  .download-platform-copy,
  .download-verify-copy,
  .download-trust-item p {
    font-size: 15px;
  }

  .download-platform-meta span,
  .download-text-link {
    width: 100%;
    justify-content: center;
  }
}









.section-community {
  position: relative;
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.community-head {
  max-width: 680px;
  align-self: center;
}

.community-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  
  border-radius: var(--radius);
  backdrop-filter: blur(0px);
}

.community-row {
  --community-accent: rgba(var(--accent-rgb), 0.8);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 114px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  box-shadow: 0 5px 32px rgba(53, 51, 48, 0.05);
  border-radius: var(--radius);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.community-row:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.community-row:focus-visible {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.14) inset;
}

.community-row-github {
  --community-accent: rgba(95, 224, 197, 0.9);
}

.community-row-discord {
  --community-accent: rgba(127, 215, 255, 0.9);
}

.community-row-updates {
  --community-accent: rgba(247, 125, 87, 0.9);
}

.community-row-badge {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  display: grid;
  place-items: center;
  
  
  color: var(--ink);
}

.community-glyph {
  width: 35px;
  height: 35px;
  display: block;
  object-fit: contain;
}

.community-row-main {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.community-row-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.community-row-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--light-soft);
  border: 1px solid var(--light-border);
  color: var(--text-muted-strong);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-title {
  margin: 0;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.community-desc {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.community-row-action {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--light-soft);
  border: 1px solid var(--light-border);
  color: var(--text-strong);
  flex: 0 0 auto;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.community-row-action svg {
  width: 21px;
  height: 21px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-row:hover .community-row-action {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .community-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .community-panel {
    padding: 12px;
  }

  .community-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .community-row-badge {
    width: 48px;
    height: 48px;
  }

  .community-title {
    font-size: 22px;
  }

  .community-desc {
    font-size: 15px;
  }

  .community-row-action {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .community-title {
    font-size: 20px;
  }

  .community-desc {
    font-size: 14px;
  }

  .community-row-label {
    font-size: 10px;
  }
}










.section-faq {
  position: relative;
}

.faq-head-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq-head-centered h2 {
  margin: 12px 0 12px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-family: var(--font-display);
}

.faq-head-centered .section-lead {
  max-width: 42ch;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  margin-top: 44px;
  align-items: center;
  background: var(--panel);
  border: 1px soid var(--light-border);
  border-radius: var(--radius);
  padding: 24px;
}

.faq-questions {
  display: grid;
  gap: 0;
  align-self: stretch;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 20px 0 14px;
  border: none;
  border-bottom: 1px solid var(--light-border);
  background: transparent;
  text-align: left;
  color: var(--text-muted-strong);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--text-strong);
  transition: width 180ms ease;
}

.faq-question:hover {
  color: var(--text-strong);
}

.faq-question.is-active {
  color: var(--text-strong);
}

.faq-question.is-active::before {
  width: 100%;
}

.faq-question:focus-visible {
  outline: none;
  color: var(--text-strong);
}

.faq-answers {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: center;
}

.faq-answer {
  max-width: 560px;
  align-self: center;
  animation: faqFade 180ms ease;
}

.faq-answer-kicker {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.faq-answer h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  font-family: var(--font-display);
}

.faq-answer p:last-child {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted-strong);
  max-width: 40ch;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .faq-shell {
    gap: 36px;
  }

  .faq-answer h3 {
    font-size: 32px;
  }
}

@media (max-width: 860px) {
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .faq-answers {
    min-height: auto;
  }

  .faq-answer {
    max-width: 100%;
  }

  .faq-answer p:last-child {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .faq-head-centered h2 {
    font-size: 34px;
  }

  .faq-head-centered .section-lead {
    font-size: 17px;
  }

  .faq-shell {
    margin-top: 34px;
  }

  .faq-question {
    padding: 16px 0;
    font-size: 16px;
  }

  .faq-answer-kicker {
    margin-bottom: 10px;
  }

  .faq-answer h3 {
    margin-bottom: 14px;
    font-size: 26px;
  }

  .faq-answer p:last-child {
    font-size: 16px;
    line-height: 1.72;
  }
}







.release-hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--accent-rgb), 0.18), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(247, 125, 87, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(12, 14, 21, 0.92));
  border-bottom: 1px solid var(--outline);
}

.release-hero-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 40%);
  pointer-events: none;
}

.release-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}

.release-hero-copy h1 {
  margin: 12px 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.release-hero-copy .section-lead {
  max-width: 62ch;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 16px;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.release-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--outline);
  color: #cdd6e6;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.release-hero-panel {
  display: grid;
  gap: 14px;
}

.release-highlight-card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.release-highlight-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.release-highlight-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  color: #d4fbf2;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.release-highlight-status {
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--outline);
  font-weight: 700;
  color: #d6deef;
}

.release-highlight-version {
  margin: 6px 0 0;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.release-highlight-date {
  margin: 0;
  color: #c7d0e3;
  font-size: 16px;
}

.release-note-list {
  margin: 6px 0 10px;
  padding-left: 18px;
  color: #d0d8eb;
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.release-highlight-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #c7d0e3;
  font-weight: 700;
}

.release-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.release-meta-card {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--outline);
}

.release-meta-label {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #8fa1c0;
  font-weight: 800;
}

.release-meta-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.release-meta-note {
  margin: 6px 0 0;
  color: #c7d0e3;
  font-size: 15px;
  line-height: 1.45;
}

.release-files {
  background: linear-gradient(180deg, rgba(15, 17, 24, 0.96), rgba(15, 17, 24, 0.9));
  border-bottom: 1px solid var(--outline);
}

.release-files .section-head h2 {
  margin: 12px 0 10px;
}

.release-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.release-file-card {
  --release-accent: rgba(var(--accent-rgb), 0.9);
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  color: var(--ink);
}

.release-file-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--release-accent);
  opacity: 0.9;
}

.release-file-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    var(--shadow);
}

.release-file-win {
  --release-accent: rgba(127, 215, 255, 0.92);
}

.release-file-mac {
  --release-accent: rgba(95, 224, 197, 0.92);
}

.release-file-linux {
  --release-accent: rgba(247, 125, 87, 0.92);
}

.release-file-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.release-file-os {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.release-file-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--outline);
}

.release-file-label {
  margin: 0;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #dce6fb;
}

.release-file-title {
  margin: 2px 0 0;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.release-file-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.release-file-copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.release-file-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.release-file-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--outline);
  color: #cdd6e6;
  font-weight: 700;
  font-size: 13px;
}

.release-hash {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.release-hash-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fa1c0;
  font-weight: 800;
}

.release-hash-value {
  word-break: break-all;
  font-size: 14px;
  color: #e6edff;
}

.release-setup .section-head h2 {
  margin: 12px 0 8px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.setup-card {
  padding: 20px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid #d9dde8;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  display: grid;
  gap: 12px;
}

.setup-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.setup-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted-strong);
  display: grid;
  gap: 8px;
  line-height: 1.6;
}

.setup-card p {
  margin: 0;
  color: var(--text-muted-strong);
  line-height: 1.6;
}

.setup-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--text-strong);
  font-weight: 800;
}

.setup-card-accent {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0)),
    #ffffff;
  border-color: #c5e7e2;
}

.setup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.release-changelog {
  background: rgba(14, 16, 24, 0.96);
}

.release-changelog .section-head h2 {
  margin: 12px 0 10px;
}

.release-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.release-entry {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.release-entry::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0.12);
}

.release-entry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-left: 18px;
}

.release-entry h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.release-entry-date {
  color: #c7d0e3;
  font-weight: 700;
}

.release-entry ul {
  margin: 0;
  padding-left: 36px;
  color: #c7d0e3;
  display: grid;
  gap: 8px;
  line-height: 1.6;
}

.release-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 18px;
}

.release-entry-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--outline);
  color: #d0d8eb;
  font-weight: 700;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .release-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .release-hero {
    padding-top: 96px;
  }

  .release-hero-copy h1 {
    font-size: 38px;
  }

  .release-file-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .release-file-action {
    width: 100%;
    justify-content: center;
  }

  .release-file-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 540px) {
  .release-file-card {
    padding: 18px;
  }

  .release-file-title {
    font-size: 19px;
  }

  .release-file-label {
    font-size: 15px;
  }

  .release-entry-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
