@font-face {
  font-family: "Unbounded";
  src: url("/fonts/Unbounded.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #0d0f14;
  --surface: #12141a;
  --surface-2: #171a21;
  --surface-3: #1d2029;
  --line: rgb(244 244 240 / 10.5%);
  --line-strong: rgb(141 145 255 / 30%);
  --text: #f4f4f0;
  --muted: rgb(244 244 240 / 66%);
  --muted-2: rgb(244 244 240 / 49%);
  --green: #8d91ff;
  --green-soft: #aeb1ff;
  --ok: #55d9ad;
  --action: #5f63db;
  --cream: #f7f7f4;
  --ink: #08090c;
  --warning: #f3b85b;
  --font-sans: "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 var(--font-sans);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 40;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  min-height: 74px;
  margin: auto;
  background: color-mix(in srgb, var(--bg) 91%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font: 500 15px "Unbounded", sans-serif;
  text-decoration: none;
}

.brand b {
  color: var(--green);
  font-weight: 600;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--green);
  color: var(--ink);
  font: 800 16px Arial, sans-serif;
}

#site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

#site-nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

#site-nav a:hover,
#site-nav a:focus-visible {
  color: var(--text);
}

#site-nav .support-link {
  margin-left: 8px;
}

#site-nav .nav-cta {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--text);
}

.menu-button {
  display: none;
}

main {
  overflow: hidden;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip div {
  padding: 17px 18px;
  text-align: center;
}

.fact-strip div + div {
  border-left: 1px solid var(--line);
}

.fact-strip strong,
.fact-strip span {
  display: block;
}

.fact-strip strong {
  color: var(--green);
  font: 700 13px "JetBrains Mono", monospace;
}

.fact-strip span {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 11px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 72px;
  width: min(calc(100% - 40px), var(--max));
  min-height: 660px;
  margin: auto;
  padding: 72px 0 86px;
}

.hero::before {
  position: absolute;
  top: 80px;
  right: -150px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(87 229 150 / 16%), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font: 700 12px "JetBrains Mono", monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(42px, 5.7vw, 73px);
  font-weight: 520;
  line-height: 1.13;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.16;
}

h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 520;
  line-height: 1.28;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 690px;
  margin: 34px 0 18px;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 76px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  padding: 11px 12px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  color: var(--text);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.download-card::before {
  position: absolute;
  top: -45px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgb(124 240 173 / 8%);
  content: "";
  pointer-events: none;
}

.download-card:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 14px 35px rgb(0 0 0 / 24%);
}

.download-card:focus-visible {
  outline: 3px solid rgb(124 240 173 / 32%);
  outline-offset: 3px;
}

.download-card-primary {
  border-color: transparent;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 12px 32px rgb(39 198 107 / 16%);
}

.download-card-primary::before {
  background: rgb(255 255 255 / 22%);
}

.download-card-primary:hover {
  border-color: transparent;
  background: var(--green-soft);
}

.download-card-icon,
.download-card-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: none;
}

.download-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgb(124 240 173 / 11%);
  color: var(--green);
}

.download-card-primary .download-card-icon {
  background: rgb(9 21 17 / 10%);
  color: var(--ink);
}

.download-card-telegram .download-card-icon {
  background: rgb(42 171 238 / 13%);
  color: #2aabee;
}

.download-card-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.download-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
}

.download-card-copy strong {
  overflow: hidden;
  font: 750 13px/1.25 Arial, sans-serif;
  letter-spacing: -.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-card-copy small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted-2);
  font: 600 9px/1.2 "JetBrains Mono", monospace;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-card-primary .download-card-copy small {
  color: rgb(9 21 17 / 62%);
}

.download-card-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font: 700 15px/1 Arial, sans-serif;
  transition: transform .18s ease, background .18s ease;
}

.download-card:hover .download-card-arrow {
  transform: translateY(2px);
  background: rgb(124 240 173 / 10%);
}

.download-card-external:hover .download-card-arrow {
  transform: translate(2px, -2px);
}

.download-card-primary .download-card-arrow {
  border-color: rgb(9 21 17 / 18%);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 11px;
  padding: 0 21px;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-soft);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.hero-note {
  max-width: 560px;
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
}

.server-card {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 23px;
  background: linear-gradient(145deg, var(--surface-2), #08130f);
  box-shadow: 0 32px 90px rgb(0 0 0 / 34%);
}

.server-card-head,
.server-location,
.server-access {
  display: flex;
  align-items: center;
}

.server-card-head {
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font: 600 11px "JetBrains Mono", monospace;
}

.server-card-head span {
  color: var(--green);
}

.server-card-head i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.server-card-head code {
  color: var(--muted-2);
}

.server-location {
  gap: 13px;
  padding: 24px 0;
}

.server-location b,
.server-location small {
  display: block;
}

.server-location small {
  color: var(--muted);
}

.server-location em {
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--green);
  font: normal 700 10px "JetBrains Mono", monospace;
}

.server-cube {
  position: relative;
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 13px;
  background: var(--cream);
}

.server-cube::before,
.server-cube::after,
.server-cube i {
  position: absolute;
  width: 20px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  content: "";
}

.server-cube::before {
  transform: translateY(-8px);
}

.server-cube::after {
  transform: translateY(8px);
}

.server-cube i {
  width: 2px;
  height: 2px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.server-cube i:nth-child(1) {
  transform: translate(-6px, -8px);
}

.server-cube i:nth-child(2) {
  transform: translate(-6px, 8px);
}

.server-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.server-specs div {
  border-radius: 11px;
  padding: 13px;
  background: rgb(255 255 255 / 3.5%);
}

.server-specs span,
.server-specs b {
  display: block;
}

.server-specs span {
  margin-bottom: 4px;
  color: var(--muted-2);
  font-size: 10px;
  text-transform: uppercase;
}

.server-specs b {
  font: 650 13px "JetBrains Mono", monospace;
}

.server-access {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.server-access span {
  color: var(--muted-2);
  font-size: 11px;
}

.server-access code {
  overflow: hidden;
  color: var(--muted);
  font: 11px "JetBrains Mono", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-access button {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 8px;
  background: transparent;
  color: var(--green);
  font: 700 9px "JetBrains Mono", monospace;
}

.platform-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px;
  color: var(--muted-2);
  font-size: 12px;
}

.platform-strip b {
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: 116px 0;
}

.section-heading {
  max-width: 790px;
}

.section-heading.centered {
  margin: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 50px;
}

.feature-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 23px;
  background: var(--surface);
}

.feature-grid p {
  margin: 13px 0 0;
  color: var(--muted);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--green) 13%, transparent);
  color: var(--green);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.pricing-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: var(--cream);
  color: var(--ink);
}

.pricing-section .eyebrow,
.locations-section .eyebrow {
  color: #187142;
}

.pricing-section .section-heading > p:last-child {
  color: #506158;
}

.plan-summary {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 18px;
}

.plan-summary span {
  border: 1px solid #bdc6ba;
  border-radius: 999px;
  padding: 9px 14px;
  background: #f6f3e5;
  color: #526058;
  font-size: 12px;
}

.plan-summary b {
  color: #187142;
  font-family: "JetBrains Mono", monospace;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid #bdc6ba;
  border-radius: 18px;
  background: #f8f5e8;
}

.pricing-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 18px;
  border-bottom: 1px solid #ccd2c7;
  text-align: left;
}

.pricing-table th {
  color: #637068;
  font: 600 10px "JetBrains Mono", monospace;
  text-transform: uppercase;
}

.pricing-table td {
  color: #35453d;
  font-size: 13px;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td strong,
.pricing-table td small {
  display: block;
}

.pricing-table td strong {
  color: var(--ink);
  font: 600 15px "Unbounded", sans-serif;
}

.pricing-table td small {
  margin-top: 3px;
  color: #718078;
}

.pricing-table td b {
  color: var(--ink);
  font: 700 15px "JetBrains Mono", monospace;
}

.pricing-table td a {
  display: inline-flex;
  justify-content: center;
  min-width: 96px;
  border-radius: 9px;
  padding: 9px 13px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.pricing-table .recommended {
  background: #e5f6e8;
}

.locations-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: #dceee2;
  color: var(--ink);
}

.locations-section .section-heading > p:last-child {
  color: #506158;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.location-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.location-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.location-grid a {
  display: grid;
  min-height: 220px;
  border: 1px solid #aebfb2;
  border-radius: 16px;
  padding: 22px;
  background: #eff6ed;
  text-decoration: none;
}

.location-index {
  color: #187142;
  font: 700 11px "JetBrains Mono", monospace;
}

.location-grid strong {
  align-self: end;
  font: 520 21px "Unbounded", sans-serif;
}

.location-grid small {
  align-self: end;
  margin-top: 8px;
  color: #587067;
}

.faq-section {
  padding-bottom: 130px;
}

.faq-list {
  max-width: 880px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 52px 22px 2px;
  font: 520 16px "Unbounded", sans-serif;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  font: 400 20px Arial, sans-serif;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 730px;
  margin: -5px 0 22px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 92px;
  border-radius: 22px;
  padding: 46px;
  background: var(--green);
  color: var(--ink);
}

.final-cta .eyebrow {
  color: #195c37;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.4vw, 43px);
}

.final-cta p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.button-dark {
  flex: none;
  background: var(--ink);
  color: #fff;
}

.download-actions {
  display: grid;
  flex: 0 1 570px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.final-cta > div:first-child {
  flex: 1;
  min-width: 0;
}

.final-cta .download-card {
  border-color: rgb(9 21 17 / 22%);
  background: var(--ink);
  color: var(--text);
  box-shadow: none;
}

.final-cta .download-card:hover {
  border-color: var(--ink);
  background: #10231d;
  box-shadow: 0 14px 34px rgb(9 21 17 / 18%);
}

.final-cta .download-card-icon {
  background: rgb(124 240 173 / 12%);
  color: var(--green);
}

.final-cta .download-card-copy small {
  color: var(--muted-2);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 38px;
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: 48px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer h3 {
  margin-bottom: 15px;
  color: var(--text);
  font: 650 11px "JetBrains Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer > div:not(.footer-about, .footer-legal, .footer-bottom) a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-about p {
  max-width: 310px;
  font-size: 13px;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 11px;
}

.legal-page {
  width: min(calc(100% - 40px), 860px);
  min-height: 70vh;
  margin: auto;
  padding: 86px 0 120px;
}

.legal-page h1 {
  font-size: clamp(36px, 5.5vw, 61px);
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  font-size: 23px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.simple-footer {
  display: flex;
  justify-content: space-between;
  width: min(calc(100% - 40px), 860px);
  margin: auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.install-page {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 96px 0 120px;
}

.install-hero {
  max-width: 900px;
  padding: 56px 0 72px;
}

.install-hero h1 {
  max-width: 880px;
}

.install-platform-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.install-platform-nav a {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--text);
  font: 700 12px/1 Arial, sans-serif;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.install-platform-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--green);
  background: var(--surface-2);
}

.install-platform-nav a:focus-visible {
  outline: 3px solid rgb(124 240 173 / 30%);
  outline-offset: 3px;
}

.install-guides {
  scroll-margin-top: 90px;
}

.install-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.install-guide {
  display: flex;
  min-width: 0;
  min-height: 430px;
  scroll-margin-top: 90px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.install-guide-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.install-guide-head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.install-platform-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  background: rgb(124 240 173 / 12%);
  color: var(--green);
  font: 800 11px/1 "JetBrains Mono", monospace;
  letter-spacing: .04em;
}

.install-platform-badge-telegram {
  background: rgb(42 171 238 / 14%);
  color: #2aabee;
}

.install-guide-head p {
  margin: 0 0 4px;
  color: var(--muted-2);
  font: 650 10px/1.2 "JetBrains Mono", monospace;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.install-guide-head h3 {
  font-size: 22px;
}

.install-steps {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
  padding-left: 24px;
  color: var(--muted);
}

.install-steps li {
  padding-left: 6px;
  line-height: 1.55;
}

.install-steps li::marker {
  color: var(--green);
  font-weight: 800;
}

.install-steps code {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2px 5px;
  background: rgb(124 240 173 / 7%);
  color: var(--text);
  font-size: .86em;
}

.install-download {
  align-self: flex-start;
  margin-top: auto;
  background: var(--green);
  color: var(--ink);
}

.install-download:hover {
  background: var(--green-soft);
}

.install-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
}

.install-secondary:hover {
  border-color: var(--green);
  background: var(--surface-2);
}

.install-card-note {
  margin: 15px 0 0;
  color: var(--muted-2);
  font-size: 12px;
}

.install-telegram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.install-telegram-actions .button {
  margin-top: 0;
}

.install-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 70px;
  border-radius: 24px;
  padding: 34px;
  background: var(--green);
  color: var(--ink);
}

.install-help .eyebrow {
  color: #195c37;
}

.install-help h2 {
  margin-top: 8px;
  font-size: clamp(27px, 3vw, 40px);
}

.install-help > p {
  margin: 0;
  color: rgb(9 21 17 / 72%);
  line-height: 1.55;
}

.install-help .button-dark {
  white-space: nowrap;
}

@media (max-width: 930px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .menu-button {
    display: block;
    flex: none;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 8px 12px;
    background: transparent;
    color: var(--text);
  }

  #site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 10px;
    background: var(--surface);
    box-shadow: 0 24px 70px rgb(0 0 0 / 44%);
  }

  #site-nav.open {
    display: flex;
  }

  #site-nav a {
    padding: 10px;
  }

  #site-nav .support-link {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }

  .server-card {
    width: min(100%, 580px);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    flex: none;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .install-help {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .fact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip div:nth-child(3) {
    border-left: 0;
  }

  .fact-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .platform-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .feature-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .location-grid a {
    min-height: auto;
  }

  .plan-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

  .install-page {
    width: calc(100% - 32px);
    padding-top: 58px;
  }

  .install-hero {
    padding: 38px 0 58px;
  }

  .install-guide-grid {
    grid-template-columns: 1fr;
  }

  .install-guide-wide {
    grid-column: 1;
  }

  .install-guide {
    min-height: 0;
    padding: 21px;
  }

  .install-help {
    padding: 26px;
  }

  .hero-actions,
  .download-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .hero {
    width: calc(100% - 32px);
    padding-top: 56px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    max-width: none;
  }

  .download-actions {
    width: 100%;
  }

  .server-card {
    border-radius: 18px;
    padding: 16px;
  }

  .server-access {
    grid-template-columns: 1fr auto;
  }

  .server-access span {
    grid-column: 1 / -1;
  }

  .section {
    padding: 82px 0;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-legal,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-bottom,
  .simple-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Email confirmation */
.confirmation-page {
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 44%, rgb(124 240 173 / 10%), transparent 28%),
    radial-gradient(circle at 84% 20%, rgb(76 199 255 / 7%), transparent 24%),
    var(--bg);
}

.confirmation-header {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.confirmation-support {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.confirmation-support:hover,
.confirmation-support:focus-visible {
  color: var(--text);
}

.confirmation-main {
  display: grid;
  min-height: calc(100svh - 148px);
  overflow: hidden;
  padding: clamp(42px, 7vw, 90px) 20px;
}

.confirmation-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  width: min(100%, 1060px);
  margin: auto;
}

.confirmation-shell::before {
  position: absolute;
  top: -16%;
  right: -22%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgb(124 240 173 / 8%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.confirmation-art {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: center;
}

.confirmation-art::before {
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 35% 65% 57% 43% / 42% 40% 60% 58%;
  background: linear-gradient(145deg, var(--surface-2), #07110e);
  box-shadow: 0 30px 85px rgb(0 0 0 / 38%), inset 0 1px rgb(255 255 255 / 4%);
  content: "";
  transform: rotate(-8deg);
}

.confirmation-art::after {
  position: absolute;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  content: "";
  opacity: .55;
  transform: rotate(-33deg) translate(10px, -84px);
}

.confirmation-orbit {
  position: absolute;
  border: 1px solid rgb(124 240 173 / 20%);
  border-radius: 50%;
}

.orbit-one {
  inset: 8%;
  transform: rotate(14deg) scaleY(.7);
}

.orbit-two {
  inset: 20%;
  border-color: rgb(76 199 255 / 23%);
  transform: rotate(-40deg) scaleY(.62);
}

.confirmation-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgb(124 240 173 / 48%), 0 0 18px rgb(124 240 173 / 52%);
}

.node-one {
  top: 19%;
  right: 18%;
}

.node-two {
  bottom: 20%;
  left: 16%;
  background: #4cc7ff;
}

.node-three {
  right: 8%;
  bottom: 36%;
  width: 6px;
  height: 6px;
}

.confirmation-emblem {
  position: absolute;
  display: grid;
  place-items: center;
  width: 96px;
  height: 112px;
  background: linear-gradient(145deg, var(--green-soft), #58d98f);
  color: var(--ink);
  clip-path: polygon(50% 0, 94% 17%, 88% 70%, 50% 100%, 12% 70%, 6% 17%);
  filter: drop-shadow(0 18px 22px rgb(61 209 131 / 28%));
  animation: confirmation-float 4.8s ease-in-out infinite;
}

.confirmation-emblem::before {
  width: 27px;
  height: 14px;
  border-bottom: 4px solid currentcolor;
  border-left: 4px solid currentcolor;
  content: "";
  transform: translateY(-4px) rotate(-45deg);
}

.confirmation-art p {
  position: absolute;
  right: 8%;
  bottom: 13%;
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--muted-2);
  font: 700 9px "JetBrains Mono", monospace;
  letter-spacing: .16em;
}

.confirmation-art p b {
  color: var(--green);
  font-size: 11px;
}

.confirmation-card {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 25px;
  padding: clamp(26px, 3.5vw, 40px);
  background: linear-gradient(145deg, rgb(16 35 29 / 94%), rgb(7 17 14 / 97%));
  box-shadow: 0 34px 92px rgb(0 0 0 / 32%);
}

.confirmation-card::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), #4cc7ff, transparent);
  content: "";
}

.confirmation-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: var(--muted);
  font: 700 10px "JetBrains Mono", monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.confirmation-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgb(124 240 173 / 10%);
}

.confirmation-card h1 {
  max-width: 620px;
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
  font: 600 clamp(31px, 4vw, 46px)/1.08 "Unbounded", sans-serif;
  letter-spacing: -.035em;
}

.confirmation-message {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.62;
}

.confirmation-steps {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.confirmation-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.confirmation-steps li > span {
  padding-top: 2px;
  color: var(--green);
  font: 700 10px "JetBrains Mono", monospace;
}

.confirmation-steps b,
.confirmation-steps small {
  display: block;
}

.confirmation-steps b {
  font-size: 14px;
}

.confirmation-steps small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.45;
}

.confirmation-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
}

.confirmation-actions .button-primary {
  min-width: 190px;
}

.confirmation-help {
  border-bottom: 1px solid var(--line-strong);
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.confirmation-help:hover,
.confirmation-help:focus-visible {
  color: var(--text);
}

.confirmation-note {
  margin: 17px 0 0;
  color: var(--muted-2);
  font-size: 11.5px;
}

.confirmation-footer {
  width: min(calc(100% - 40px), var(--max));
  color: var(--muted-2);
}

.confirmation-error .confirmation-emblem {
  background: linear-gradient(145deg, #ed8b71, #c3524d);
  filter: drop-shadow(0 18px 22px rgb(195 82 77 / 25%));
}

.confirmation-error .confirmation-emblem::before,
.confirmation-error .confirmation-emblem::after {
  position: absolute;
  width: 31px;
  height: 4px;
  border: 0;
  border-radius: 3px;
  background: var(--ink);
  content: "";
}

.confirmation-error .confirmation-emblem::before {
  transform: rotate(45deg);
}

.confirmation-error .confirmation-emblem::after {
  transform: rotate(-45deg);
}

.confirmation-error .confirmation-kicker span,
.confirmation-error .confirmation-node {
  background: #ed8b71;
  box-shadow: 0 0 0 5px rgb(237 139 113 / 10%);
}

.confirmation-error .confirmation-card::before {
  background: linear-gradient(90deg, transparent, #ed8b71, var(--warning), transparent);
}

.confirmation-error .confirmation-art p b {
  color: #ed8b71;
}

@keyframes confirmation-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 880px) {
  .confirmation-main {
    padding-top: 46px;
  }

  .confirmation-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .confirmation-art {
    width: min(66vw, 310px);
  }

  .confirmation-card {
    width: min(100%, 660px);
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .confirmation-header {
    width: calc(100% - 28px);
  }

  .confirmation-support {
    padding: 8px 10px;
    font-size: 12px;
  }

  .confirmation-main {
    padding: 32px 16px 58px;
  }

  .confirmation-art {
    width: min(70vw, 250px);
  }

  .confirmation-emblem {
    width: 74px;
    height: 86px;
  }

  .confirmation-card {
    border-radius: 19px;
    padding: 24px 19px;
  }

  .confirmation-card h1 {
    font-size: 27px;
    line-height: 1.12;
  }

  .confirmation-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .confirmation-actions .button-primary {
    width: 100%;
  }

  .confirmation-help {
    align-self: center;
  }

  .confirmation-footer {
    width: calc(100% - 32px);
  }
}

/* Real product showcase: exact application capture + canonical icon */
.app-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 620px;
  isolation: isolate;
}

.app-showcase-halo {
  position: absolute;
  z-index: -1;
  width: min(105%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgb(141 145 255 / 12%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 38%, rgb(85 217 173 / 19%), transparent 28%),
    radial-gradient(circle at 55% 58%, rgb(115 120 245 / 24%), transparent 58%);
  box-shadow: inset 0 0 80px rgb(115 120 245 / 6%);
}

.app-showcase-halo::before,
.app-showcase-halo::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(85 217 173 / 10%);
  border-radius: 50%;
  content: "";
  transform: rotate(19deg) scaleY(.58);
}

.app-showcase-halo::after {
  border-color: rgb(141 145 255 / 11%);
  transform: rotate(-34deg) scaleY(.68);
}

.app-phone {
  position: relative;
  width: min(72%, 330px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 7px solid #1d2029;
  border-radius: 30px;
  background: #080a0f;
  box-shadow:
    0 42px 100px rgb(0 0 0 / 58%),
    0 0 0 1px rgb(244 244 240 / 10%),
    0 0 64px rgb(115 120 245 / 16%);
  transform: perspective(1100px) rotateY(-4deg) rotateX(1.5deg);
}

.app-phone::after {
  position: absolute;
  inset: 0;
  border-radius: 23px;
  box-shadow: inset 0 1px rgb(255 255 255 / 10%);
  content: "";
  pointer-events: none;
}

.app-phone-camera {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: rgb(13 15 20 / 78%);
  transform: translateX(-50%);
}

.app-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-product-badge,
.app-live-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(244 244 240 / 11%);
  border-radius: 16px;
  background: rgb(18 20 26 / 92%);
  box-shadow: 0 22px 60px rgb(0 0 0 / 42%), inset 0 1px rgb(255 255 255 / 5%);
  backdrop-filter: blur(18px);
}

.app-product-badge {
  top: 82px;
  left: -18px;
  padding: 11px 16px 11px 11px;
}

.app-product-badge img {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  object-fit: contain;
}

.app-product-badge span,
.app-live-badge span {
  display: grid;
  gap: 4px;
}

.app-product-badge strong,
.app-live-badge strong {
  color: var(--text);
  font: 650 14px/1.1 var(--font-display);
}

.app-product-badge small,
.app-live-badge small {
  color: var(--muted);
  font-size: 10px;
}

.app-live-badge {
  right: -28px;
  bottom: 96px;
  padding: 14px 17px;
}

.app-live-badge > i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 7px rgb(85 217 173 / 11%), 0 0 22px rgb(85 217 173 / 48%);
}

.app-live-badge strong {
  color: var(--ok);
}

@media (max-width: 980px) {
  .app-showcase {
    width: min(100%, 650px);
    min-height: 610px;
  }

  .app-product-badge {
    left: 7%;
  }

  .app-live-badge {
    right: 5%;
  }
}

@media (max-width: 620px) {
  .app-showcase {
    min-height: 545px;
  }

  .app-showcase-halo {
    width: 118%;
  }

  .app-phone {
    width: min(78%, 286px);
    border-width: 5px;
    border-radius: 25px;
    transform: none;
  }

  .app-product-badge {
    top: 58px;
    left: 0;
    padding: 9px 12px 9px 9px;
  }

  .app-product-badge img {
    width: 44px;
    height: 44px;
  }

  .app-live-badge {
    right: 0;
    bottom: 64px;
    padding: 11px 13px;
  }

  .app-product-badge strong,
  .app-live-badge strong {
    font-size: 12px;
  }

  .app-product-badge small,
  .app-live-badge small {
    font-size: 9px;
  }
}

/* Landing download CRO refresh */
body {
  background:
    radial-gradient(circle at 68% 5%, rgb(124 240 173 / 7%), transparent 25%),
    var(--bg);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

#site-nav .nav-cta {
  border-color: transparent;
  background: var(--green);
  color: var(--ink);
  font-weight: 750;
  transition: transform .18s ease, background .18s ease;
}

#site-nav .nav-cta:hover,
#site-nav .nav-cta:focus-visible {
  background: var(--green-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  grid-template-columns: minmax(0, 1.07fr) minmax(350px, .93fr);
  gap: clamp(44px, 6vw, 86px);
  min-height: 690px;
  padding: 74px 0 82px;
}

.hero::after {
  position: absolute;
  top: 38px;
  right: -50px;
  width: 430px;
  height: 430px;
  border: 1px solid rgb(124 240 173 / 7%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.release-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  letter-spacing: .08em;
}

.release-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgb(124 240 173 / 9%), 0 0 25px rgb(124 240 173 / 45%);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(43px, 5.4vw, 72px);
  line-height: 1.08;
  text-wrap: balance;
}

.hero .lead {
  max-width: 730px;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 32px 0 22px;
}

.hero-download {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  width: min(100%, 445px);
  min-height: 78px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 17px;
  padding: 12px 14px;
  background: var(--green);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 46px rgb(39 198 107 / 18%);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-download::before {
  position: absolute;
  top: -54px;
  right: -28px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgb(255 255 255 / 24%);
  content: "";
}

.hero-download:hover {
  background: var(--green-soft);
  box-shadow: 0 22px 52px rgb(39 198 107 / 24%);
  transform: translateY(-2px);
}

.hero-download:focus-visible,
.platform-card:focus-visible,
.steps-cta:focus-visible,
.offer-card > a:focus-visible,
.final-cta-action > a:focus-visible {
  outline: 3px solid rgb(124 240 173 / 34%);
  outline-offset: 4px;
}

.hero-download-icon,
.hero-download-arrow,
.hero-download-copy {
  position: relative;
  z-index: 1;
}

.hero-download-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgb(9 21 17 / 10%);
}

.hero-download-icon svg {
  width: 23px;
  height: 23px;
  fill: currentcolor;
}

.hero-download-copy {
  display: grid;
  min-width: 0;
}

.hero-download-copy strong {
  font-size: 16px;
  line-height: 1.25;
}

.hero-download-copy small {
  margin-top: 4px;
  color: rgb(9 21 17 / 66%);
  font: 650 10px/1.3 "JetBrains Mono", monospace;
}

.hero-download-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgb(9 21 17 / 18%);
  border-radius: 50%;
  font-weight: 800;
  transition: transform .18s ease;
}

.hero-download:hover .hero-download-arrow {
  transform: translateY(3px);
}

.hero-secondary-link {
  border-bottom: 1px solid var(--line-strong);
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hero-secondary-link:hover,
.hero-secondary-link:focus-visible {
  color: var(--text);
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 0 0 14px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.hero-trust-list span {
  margin-right: 4px;
  color: var(--green);
  font-weight: 800;
}

.hero-note {
  max-width: 690px;
  line-height: 1.55;
}

.hero-note strong {
  color: var(--text);
}

.server-card {
  z-index: 1;
  overflow: hidden;
  padding: 25px;
  box-shadow: 0 38px 110px rgb(0 0 0 / 42%), inset 0 1px rgb(255 255 255 / 4%);
}

.server-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  content: "";
}

.server-location {
  margin-top: 7px;
}

.server-specs div {
  min-width: 0;
}

.server-specs span,
.server-specs b {
  white-space: normal;
}

.server-pulse {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 35px;
  margin-top: 18px;
  opacity: .65;
}

.server-pulse i {
  flex: 1;
  min-width: 3px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, rgb(124 240 173 / 18%), var(--green));
}

.server-pulse i:nth-child(1),
.server-pulse i:nth-child(7) { height: 22%; }
.server-pulse i:nth-child(2),
.server-pulse i:nth-child(10) { height: 48%; }
.server-pulse i:nth-child(3),
.server-pulse i:nth-child(8) { height: 72%; }
.server-pulse i:nth-child(4),
.server-pulse i:nth-child(12) { height: 38%; }
.server-pulse i:nth-child(5),
.server-pulse i:nth-child(9) { height: 88%; }
.server-pulse i:nth-child(6),
.server-pulse i:nth-child(11) { height: 58%; }

.fact-strip {
  background: rgb(11 26 22 / 58%);
}

.fact-strip strong {
  font-size: 12px;
}

.download-section {
  width: 100%;
  max-width: none;
  padding: 112px max(20px, calc((100% - var(--max)) / 2));
  background: var(--cream);
  color: var(--ink);
}

.download-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  align-items: end;
  gap: 40px;
  max-width: none;
}

.download-heading .eyebrow {
  color: #187142;
}

.download-heading > p:last-child {
  margin: 0;
  color: #52655b;
  font-size: 15px;
  line-height: 1.6;
}

.platform-downloads {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.platform-card {
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  border: 1px solid #bdc9bf;
  border-radius: 19px;
  padding: 21px;
  background: #f8f6ea;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 40px rgb(9 21 17 / 4%);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.platform-card:hover {
  border-color: #6f9780;
  box-shadow: 0 24px 48px rgb(9 21 17 / 10%);
  transform: translateY(-4px);
}

.platform-card-primary {
  border-color: #4b9b6d;
  background: #dff4e3;
}

.platform-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
}

.platform-card-top b {
  color: #187142;
  font: 800 12px "JetBrains Mono", monospace;
  letter-spacing: .08em;
}

.platform-card-top em {
  border-radius: 999px;
  padding: 6px 9px;
  background: #187142;
  color: #fff;
  font: normal 750 9px "JetBrains Mono", monospace;
  text-transform: uppercase;
}

.platform-card-top .muted-badge {
  background: #dce3da;
  color: #506158;
}

.platform-card > strong {
  margin-top: auto;
  font: 550 19px "Unbounded", sans-serif;
}

.platform-card > small {
  margin-top: 7px;
  color: #637169;
  font-size: 12px;
}

.platform-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border-top: 1px solid #c9d2c8;
  padding-top: 14px;
  color: #187142;
  font-size: 13px;
  font-weight: 800;
}

.platform-card-action i {
  font-style: normal;
  transition: transform .18s ease;
}

.platform-card:hover .platform-card-action i {
  transform: translateY(3px);
}

.telegram-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  margin-top: 14px;
  border: 1px solid #bdc9bf;
  border-radius: 16px;
  padding: 16px 19px;
  background: rgb(255 255 255 / 32%);
}

.telegram-option-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #dceef6;
  color: #167eb3;
  font-weight: 800;
}

.telegram-option p,
.telegram-option strong,
.telegram-option small {
  display: block;
  margin: 0;
}

.telegram-option small {
  margin-top: 2px;
  color: #65736b;
}

.telegram-option > a {
  border-bottom: 1px solid #7b8c82;
  padding: 7px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.features-section .section-heading {
  max-width: 880px;
}

.features-section .section-heading > p:last-child {
  margin-left: 0;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.feature-grid article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(145deg, var(--surface), #081511);
  transition: border-color .18s ease, transform .18s ease;
}

.feature-grid article:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.feature-grid article.feature-card-featured {
  border-color: rgb(124 240 173 / 30%);
  background:
    radial-gradient(circle at 90% 15%, rgb(124 240 173 / 12%), transparent 32%),
    linear-gradient(145deg, var(--surface-2), #081511);
}

.feature-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: var(--line-strong);
  font: 800 11px "JetBrains Mono", monospace;
}

.feature-grid .feature-icon {
  margin-bottom: 50px;
}

.steps-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(11 26 22 / 46%);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin: 48px 0 0;
  padding: 0;
  text-align: left;
  list-style: none;
}

.steps-grid li {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 24px;
  background: var(--bg);
}

.steps-grid li > span {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--green);
  font: 800 10px "JetBrains Mono", monospace;
}

.steps-grid div {
  margin-top: 49px;
}

.steps-grid strong {
  font: 550 17px "Unbounded", sans-serif;
}

.steps-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.steps-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 54px;
  margin-top: 30px;
  border-radius: 12px;
  padding: 0 23px;
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.steps-cta:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  width: min(calc(100% - 40px), var(--max));
  margin: 100px auto 0;
  border-radius: 25px;
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 0, rgb(124 240 173 / 11%), transparent 35%),
    var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.offer-copy .eyebrow {
  margin-bottom: 15px;
}

.offer-copy h2 {
  max-width: 720px;
  font-size: clamp(31px, 4vw, 49px);
}

.offer-copy > p:last-of-type {
  max-width: 620px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.offer-copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.offer-copy li::before {
  margin-right: 9px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.offer-card {
  display: grid;
  border: 1px solid rgb(124 240 173 / 34%);
  border-radius: 22px;
  padding: 28px;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 26px 70px rgb(0 0 0 / 25%);
}

.offer-card > span {
  font: 800 10px "JetBrains Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offer-card > strong {
  margin-top: 16px;
  font: 600 clamp(56px, 7vw, 82px)/.9 "Unbounded", sans-serif;
  letter-spacing: -.07em;
}

.offer-card > strong small {
  font-size: .42em;
}

.offer-card > p {
  margin: 17px 0 0;
  color: rgb(9 21 17 / 68%);
  font-weight: 750;
}

.offer-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 24px;
  border-radius: 12px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.offer-card > a:hover {
  background: #142b23;
  transform: translateY(-2px);
}

.offer-card > small {
  margin-top: 14px;
  color: rgb(9 21 17 / 62%);
  font-size: 10px;
  line-height: 1.5;
}

.faq-section {
  padding-top: 120px;
}

.faq-list a {
  color: var(--green);
}

.final-cta {
  align-items: end;
  margin-bottom: 80px;
  padding: clamp(34px, 5vw, 54px);
  background:
    radial-gradient(circle at 8% 0, rgb(255 255 255 / 28%), transparent 30%),
    var(--green);
}

.final-cta-action {
  display: grid;
  flex: 0 0 280px;
  gap: 9px;
  text-align: center;
}

.final-cta-action > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 13px;
  padding: 0 23px;
  background: var(--ink);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.final-cta-action > a:hover {
  background: #142b23;
  transform: translateY(-2px);
}

.final-cta-action > small {
  color: rgb(9 21 17 / 60%);
  font: 700 10px "JetBrains Mono", monospace;
}

@media (max-width: 1050px) {
  .platform-downloads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-card {
    min-height: 230px;
  }
}

@media (max-width: 980px) {
  #site-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 62px;
  }

  .server-card {
    width: min(100%, 640px);
  }

  .download-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .download-heading > p:last-child {
    max-width: 680px;
  }

  .offer-section {
    grid-template-columns: 1fr;
  }

  .offer-card {
    width: min(100%, 520px);
  }

  .final-cta {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-cta-group {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-download {
    width: 100%;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .steps-grid li {
    min-height: 0;
  }

  .feature-grid .feature-icon {
    margin-bottom: 35px;
  }

  .steps-grid div {
    margin-top: 34px;
  }

  .telegram-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .telegram-option > a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero {
    width: calc(100% - 32px);
    padding: 48px 0 60px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero .lead {
    margin-top: 19px;
    font-size: 16px;
  }

  .hero-download {
    min-height: 72px;
    padding: 10px 12px;
  }

  .hero-download-icon {
    width: 42px;
    height: 42px;
  }

  .hero-download-copy strong {
    font-size: 14px;
  }

  .hero-download-copy small {
    font-size: 8.5px;
  }

  .hero-trust-list {
    display: grid;
    gap: 7px;
  }

  .server-card {
    padding: 17px;
  }

  .server-location {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .server-location em {
    display: none;
  }

  .server-specs {
    grid-template-columns: 1fr;
  }

  .server-specs div:nth-child(2) {
    border-top: 0;
  }

  .server-access code {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .download-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .platform-downloads {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .platform-card {
    min-height: 210px;
  }

  .telegram-option {
    padding: 15px;
  }

  .telegram-option small {
    font-size: 11px;
  }

  .offer-section {
    width: calc(100% - 32px);
    margin-top: 72px;
    padding: 25px;
  }

  .offer-card {
    padding: 23px;
  }

  .final-cta {
    width: calc(100% - 32px);
    padding: 28px;
  }

  .final-cta-action {
    width: 100%;
  }
}

/* Visual sync with the NunaVPS application */
body {
  background:
    radial-gradient(ellipse at 72% -16%, rgb(115 120 245 / 11%), transparent 40%),
    var(--bg);
}

.brand {
  font-family: var(--font-display);
  font-weight: 680;
  letter-spacing: -.02em;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

h1 {
  font-weight: 660;
}

h2 {
  font-weight: 620;
}

h3,
.platform-card > strong,
.steps-grid strong {
  font-family: var(--font-display);
  font-weight: 620;
}

.eyebrow {
  color: var(--green);
  letter-spacing: .075em;
}

.site-header {
  background: rgb(13 15 20 / 92%);
}

#site-nav .nav-cta,
.steps-cta {
  background: var(--action);
  color: #fff;
  box-shadow: 0 14px 34px rgb(95 99 219 / 22%);
}

#site-nav .nav-cta:hover,
#site-nav .nav-cta:focus-visible,
.steps-cta:hover {
  background: #7378f5;
  color: #fff;
}

.hero::before {
  background: radial-gradient(circle, rgb(115 120 245 / 16%), transparent 68%);
}

.hero::after {
  border-color: rgb(141 145 255 / 9%);
}

.release-kicker span {
  background: var(--ok);
  box-shadow: 0 0 0 6px rgb(85 217 173 / 9%), 0 0 25px rgb(85 217 173 / 42%);
}

.hero-download {
  background: linear-gradient(135deg, #7378f5, var(--action));
  color: #fff;
  box-shadow: 0 18px 46px rgb(95 99 219 / 24%), inset 0 1px rgb(255 255 255 / 18%);
}

.hero-download::before {
  background: rgb(255 255 255 / 13%);
}

.hero-download:hover {
  background: linear-gradient(135deg, var(--green), #6e73e8);
  box-shadow: 0 22px 52px rgb(95 99 219 / 31%);
}

.hero-download-icon {
  background: rgb(255 255 255 / 12%);
}

.hero-download-copy small {
  color: rgb(255 255 255 / 67%);
}

.hero-download-arrow {
  border-color: rgb(255 255 255 / 22%);
}

.hero-download:focus-visible,
.platform-card:focus-visible,
.steps-cta:focus-visible,
.offer-card > a:focus-visible,
.final-cta-action > a:focus-visible {
  outline-color: rgb(141 145 255 / 62%);
}

.hero-trust-list span,
.hero-note strong {
  color: var(--ok);
}

.server-card {
  border-color: var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 30%, rgb(85 217 173 / 8%), transparent 42%),
    linear-gradient(150deg, rgb(141 145 255 / 4%), var(--surface) 54%, rgb(85 217 173 / 2%));
  box-shadow: 0 28px 80px rgb(0 0 0 / 36%);
}

.server-card::before {
  background: linear-gradient(90deg, transparent, var(--green), var(--ok), transparent);
}

.server-card-head i {
  background: var(--ok);
  box-shadow: 0 0 0 5px rgb(85 217 173 / 10%), 0 0 18px rgb(85 217 173 / 45%);
}

.server-location em,
.server-access button {
  color: var(--ok);
}

.server-cube::before,
.server-cube::after,
.server-cube i {
  border-color: rgb(141 145 255 / 42%);
}

.server-pulse i {
  background: linear-gradient(to top, rgb(85 217 173 / 12%), var(--ok));
}

.fact-strip {
  background: rgb(18 20 26 / 68%);
}

.download-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 0, rgb(141 145 255 / 8%), transparent 31%),
    var(--surface);
  color: var(--text);
}

.download-heading .eyebrow,
.platform-card-top b,
.platform-card-action {
  color: var(--green);
}

.download-heading > p:last-child {
  color: var(--muted);
}

.platform-card {
  border-color: var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 18px 48px rgb(0 0 0 / 18%);
}

.platform-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 26px 60px rgb(0 0 0 / 27%);
}

.platform-card-primary {
  border-color: rgb(141 145 255 / 40%);
  background: linear-gradient(145deg, rgb(141 145 255 / 13%), var(--surface-2) 58%);
}

.platform-card-top em {
  background: var(--action);
}

.platform-card-top .muted-badge {
  background: var(--surface-3);
  color: var(--muted);
}

.platform-card > small {
  color: var(--muted-2);
}

.platform-card-action {
  border-top-color: var(--line);
}

.telegram-option {
  border-color: var(--line);
  background: var(--surface-2);
}

.telegram-option-icon {
  background: rgb(42 171 238 / 12%);
  color: #52b8ee;
}

.telegram-option small {
  color: var(--muted-2);
}

.telegram-option > a {
  border-bottom-color: var(--line-strong);
  color: var(--text);
}

.feature-grid article {
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface), #101218);
}

.feature-grid article.feature-card-featured {
  border-color: rgb(141 145 255 / 28%);
  background:
    radial-gradient(circle at 90% 15%, rgb(141 145 255 / 13%), transparent 32%),
    linear-gradient(145deg, var(--surface-2), #101218);
}

.feature-icon {
  background: rgb(141 145 255 / 10%);
  color: var(--green);
}

.steps-section {
  background:
    radial-gradient(ellipse at 50% 0, rgb(115 120 245 / 7%), transparent 35%),
    rgb(18 20 26 / 62%);
}

.steps-grid li {
  border-radius: 16px;
  background: var(--surface);
}

.offer-section {
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0, rgb(141 145 255 / 10%), transparent 35%),
    var(--surface);
  box-shadow: inset 0 0 0 1px var(--line), 0 28px 80px rgb(0 0 0 / 20%);
}

.offer-copy li::before {
  color: var(--ok);
}

.offer-card {
  border-color: rgb(141 145 255 / 40%);
  border-radius: 16px;
  background: linear-gradient(145deg, #7378f5, var(--action));
  color: #fff;
  box-shadow: 0 26px 70px rgb(95 99 219 / 28%);
}

.offer-card > p,
.offer-card > small {
  color: rgb(255 255 255 / 68%);
}

.offer-card > a,
.final-cta-action > a {
  background: #fff;
  color: var(--ink);
}

.offer-card > a:hover,
.final-cta-action > a:hover {
  background: var(--paper, #f4f4f0);
}

.faq-list a {
  color: var(--green);
}

.final-cta {
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 0, rgb(255 255 255 / 14%), transparent 30%),
    linear-gradient(135deg, #7378f5, var(--action));
  color: #fff;
  box-shadow: 0 28px 80px rgb(95 99 219 / 23%);
}

.final-cta .eyebrow,
.final-cta-action > small {
  color: rgb(255 255 255 / 68%);
}

/* Conversion pass: two primary platforms, progressive disclosure for the rest */
.hero-platform-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 690px);
  margin-top: 32px;
}

.hero-platform-download {
  width: 100%;
  min-height: 78px;
  gap: 11px;
  cursor: pointer;
  touch-action: manipulation;
}

.hero-platform-download .hero-download-copy strong {
  font-size: 14px;
}

.hero-platform-download .hero-download-copy small {
  font-size: 11px;
}

.hero-platform-download.is-secondary {
  border-color: var(--line-strong);
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 16px 38px rgb(0 0 0 / 22%), inset 0 1px rgb(255 255 255 / 5%);
}

.hero-platform-download.is-secondary::before {
  background: radial-gradient(circle, rgb(85 217 173 / 13%), transparent 66%);
}

.hero-platform-download.is-secondary .hero-download-icon {
  background: rgb(85 217 173 / 9%);
  color: var(--ok);
}

.hero-platform-download.is-secondary .hero-download-copy small {
  color: var(--muted);
}

.hero-platform-download.is-secondary .hero-download-arrow {
  border-color: var(--line-strong);
  color: var(--ok);
}

.hero-platform-download.is-secondary:hover {
  border-color: rgb(85 217 173 / 42%);
  background: var(--surface-3);
  box-shadow: 0 20px 44px rgb(0 0 0 / 28%);
}

.platform-downloads-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.platform-card-android {
  border-color: rgb(85 217 173 / 32%);
  background:
    radial-gradient(circle at 92% 12%, rgb(85 217 173 / 12%), transparent 34%),
    linear-gradient(145deg, rgb(85 217 173 / 5%), var(--surface-2) 62%);
}

.platform-card-android:hover {
  border-color: rgb(85 217 173 / 54%);
}

.platform-card-top .android-badge {
  background: rgb(85 217 173 / 12%);
  color: var(--ok);
}

.platform-card > small {
  font-size: 13px;
}

.other-downloads {
  max-width: 980px;
  margin: 22px auto 0;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(18 20 26 / 70%);
}

.other-downloads summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  touch-action: manipulation;
  transition: background .2s ease;
}

.other-downloads summary::-webkit-details-marker {
  display: none;
}

.other-downloads summary:hover {
  background: rgb(141 145 255 / 5%);
}

.other-downloads summary:focus-visible {
  outline: 3px solid rgb(141 145 255 / 55%);
  outline-offset: -3px;
}

.other-downloads summary > span {
  display: grid;
  gap: 4px;
}

.other-downloads summary strong {
  color: var(--text);
  font: 620 15px/1.2 var(--font-display);
}

.other-downloads summary small {
  color: var(--muted);
  font-size: 13px;
}

.other-downloads summary > i {
  width: 11px;
  height: 11px;
  margin-right: 5px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.other-downloads[open] summary {
  border-bottom: 1px solid var(--line);
}

.other-downloads[open] summary > i {
  transform: rotate(225deg);
}

.other-downloads-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.other-downloads-list > a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 13px 16px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  touch-action: manipulation;
  transition: background .18s ease;
}

.other-downloads-list > a:hover,
.other-downloads-list > a:focus-visible {
  background: var(--surface-2);
}

.other-downloads-list > a:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgb(141 145 255 / 55%);
  outline-offset: -3px;
}

.other-downloads-list > a > b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgb(141 145 255 / 10%);
  color: var(--green);
  font: 700 11px/1 var(--font-mono);
}

.other-downloads-list > a > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.other-downloads-list strong {
  font: 620 13px/1.25 var(--font-display);
}

.other-downloads-list small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.other-downloads-list > a > i {
  color: var(--ok);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero-platform-actions,
  .platform-downloads-primary {
    grid-template-columns: 1fr;
  }

  .hero-platform-actions {
    gap: 10px;
  }

  .hero-platform-download {
    min-height: 72px;
  }

  .hero-platform-download .hero-download-copy strong {
    font-size: 14px;
  }

  .hero-platform-download .hero-download-copy small {
    font-size: 11px;
  }

  .other-downloads-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .other-downloads summary {
    min-height: 72px;
    padding-inline: 16px;
  }

  .other-downloads summary small {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .other-downloads summary,
  .other-downloads summary > i,
  .other-downloads-list > a {
    transition: none;
  }
}

/* Concise landing and responsive layout */
html {
  scroll-padding-top: 92px;
}

body {
  overflow-x: clip;
}

.site-header,
.hero,
.section,
.final-cta,
.site-footer {
  width: min(calc(100% - 48px), 1240px);
}

#site-nav a {
  min-height: 48px;
  font-size: 14px;
  touch-action: manipulation;
}

.hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(32px, 5vw, 72px);
  min-height: 620px;
  padding: 52px 0 60px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.2vw, 72px);
}

.hero .lead {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.hero-platform-actions {
  margin: 28px 0 18px;
}

.hero-platform-download {
  min-height: 70px;
}

.hero-platform-download .hero-download-copy strong {
  font-size: 15px;
}

.hero-trust-list {
  gap: 10px 20px;
  margin-bottom: 0;
  font-size: 13px;
}

.app-showcase {
  min-height: 540px;
}

.app-phone {
  width: min(68%, 300px);
  aspect-ratio: auto;
}

.app-phone img {
  height: auto;
  object-fit: contain;
}

.app-product-badge {
  top: 70px;
}

.app-live-badge {
  bottom: 72px;
}

.app-product-badge strong,
.app-live-badge strong {
  font-size: 15px;
}

.download-section {
  padding-block: clamp(64px, 7vw, 92px);
}

.download-heading {
  display: block;
  margin-bottom: 28px;
  text-align: center;
}

.download-heading h2 {
  margin: 0;
}

.platform-card {
  min-height: 184px;
  padding: 24px;
}

.platform-card > strong {
  margin-top: 24px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.platform-card-action {
  margin-top: auto;
  font-size: 14px;
}

.other-downloads summary {
  min-height: 64px;
}

.other-downloads summary strong {
  font-size: 16px;
}

.other-downloads-list > a {
  min-height: 72px;
}

.other-downloads-list > a > strong {
  font: 620 14px/1.3 var(--font-display);
}

.features-section,
.steps-section {
  padding-block: clamp(72px, 8vw, 104px);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 800px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.feature-grid article.feature-card-featured {
  min-height: 220px;
  padding: 24px;
}

.feature-grid .feature-icon {
  margin-bottom: 34px;
}

.feature-grid h3 {
  margin-bottom: 10px;
}

.feature-grid p {
  max-width: 31ch;
  font-size: 16px;
  line-height: 1.5;
}

.steps-grid {
  gap: 12px;
}

.steps-grid li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 20px;
}

.steps-grid li > span {
  flex: 0 0 auto;
  margin: 0;
}

.steps-grid strong {
  font-size: 16px;
}

.steps-cta {
  min-height: 52px;
}

.final-cta {
  min-height: 0;
  margin-block: clamp(24px, 4vw, 56px) clamp(56px, 8vw, 96px);
  padding: clamp(28px, 4vw, 48px);
}

.final-cta h2 {
  margin: 0;
}

.final-cta p {
  margin-top: 10px;
  font-size: 16px;
}

.final-cta-action > a {
  min-height: 54px;
}

.site-footer-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px;
}

.site-footer-compact .footer-about {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer-compact .footer-about > span,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@media (min-width: 1600px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 80px), 1360px);
  }

  .hero {
    min-height: 700px;
  }

  .app-showcase {
    min-height: 620px;
  }

  .app-phone {
    width: min(70%, 330px);
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 58px);
  }

  .hero-platform-actions {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .app-phone {
    width: min(72%, 280px);
  }
}

@media (min-width: 981px) and (max-height: 780px) {
  .hero {
    min-height: 570px;
    padding-block: 38px 46px;
  }

  .app-showcase {
    min-height: 510px;
  }

  .app-phone {
    width: min(66%, 276px);
  }

  .app-product-badge {
    top: 58px;
  }

  .app-live-badge {
    bottom: 60px;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 40px), 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 48px 64px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero .lead,
  .hero-platform-actions {
    margin-inline: auto;
  }

  .hero-trust-list {
    justify-content: center;
  }

  .app-showcase {
    width: 100%;
    min-height: 530px;
  }

  .app-product-badge {
    left: max(2%, calc(50% - 230px));
  }

  .app-live-badge {
    right: max(2%, calc(50% - 230px));
  }

  .final-cta {
    align-items: center;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero-platform-actions {
    max-width: 520px;
  }

  .platform-downloads-primary,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 164px;
  }

  .feature-grid article,
  .feature-grid article.feature-card-featured {
    min-height: 0;
  }

  .feature-grid .feature-icon {
    margin-bottom: 28px;
  }

  .steps-grid li {
    min-height: 84px;
  }

  .final-cta {
    align-items: stretch;
  }

  .site-footer-compact {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .hero-platform-download {
    min-height: 66px;
    padding: 9px 11px;
  }

  .hero-download-icon {
    width: 40px;
    height: 40px;
  }

  .hero-download-arrow {
    width: 32px;
    height: 32px;
  }

  .hero-trust-list {
    justify-content: flex-start;
    text-align: left;
  }

  .app-showcase {
    min-height: 470px;
  }

  .app-phone {
    width: min(76%, 250px);
    border-radius: 24px;
  }

  .app-product-badge {
    top: 48px;
    left: 0;
  }

  .app-live-badge {
    right: 0;
    bottom: 54px;
  }

  .app-product-badge img {
    width: 40px;
    height: 40px;
  }

  .app-product-badge,
  .app-live-badge {
    padding: 9px 11px;
  }

  .app-product-badge strong,
  .app-live-badge strong {
    font-size: 13px;
  }

  .download-section,
  .features-section,
  .steps-section {
    padding-block: 56px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .other-downloads-list > a {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .footer-links {
    gap-inline: 18px;
  }
}

@media (max-width: 360px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-platform-download .hero-download-copy strong {
    font-size: 13px;
  }

  .app-showcase {
    min-height: 440px;
  }

  .app-phone {
    width: 230px;
  }

  .app-live-badge {
    display: none;
  }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 680px) and (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, .9fr);
    align-items: center;
    gap: 24px;
    width: min(calc(100% - 40px), 900px);
    padding-block: 30px 44px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(34px, 5.7vw, 48px);
  }

  .hero .lead {
    margin-inline: 0;
    font-size: 15px;
  }

  .hero-platform-actions {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .hero-trust-list {
    justify-content: flex-start;
  }

  .app-showcase {
    min-height: 430px;
  }

  .app-phone {
    width: 220px;
  }

  .app-product-badge {
    left: 0;
  }

  .app-live-badge {
    right: 0;
  }
}

/* Stable layout and ImageGen icon system */
.nuna-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background-image: url("/nuna-icon-atlas-v2.webp");
  background-repeat: no-repeat;
  background-size: 400% 400%;
  vertical-align: middle;
}

.icon-windows { background-position: 0 0; }
.icon-android { background-position: 33.333% 0; }
.icon-download { background-position: 66.666% 0; }
.icon-route { background-position: 100% 0; }
.icon-infinity { background-position: 0 33.333%; }
.icon-support { background-position: 33.333% 33.333%; }
.icon-account { background-position: 66.666% 33.333%; }
.icon-power { background-position: 100% 33.333%; }
.icon-tv { background-position: 0 66.666%; }
.icon-telegram { background-position: 33.333% 66.666%; }
.icon-shield { background-position: 66.666% 66.666%; }
.icon-chevron { background-position: 100% 66.666%; }
.icon-server { background-position: 0 100%; }
.icon-verified { background-position: 33.333% 100%; }
.icon-globe { background-position: 66.666% 100%; }
.icon-menu { background-position: 100% 100%; }

.menu-button {
  align-items: center;
  gap: 8px;
}

.menu-button .nuna-icon {
  width: 22px;
  height: 22px;
}

.hero-download-icon .nuna-icon {
  width: 34px;
  height: 34px;
}

.hero-download-arrow .nuna-icon {
  width: 20px;
  height: 20px;
}

.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-list .nuna-icon {
  width: 19px;
  height: 19px;
}

.download-section,
.features-section,
.steps-section {
  display: block;
  min-width: 0;
  box-sizing: border-box;
}

.download-heading,
.features-section .section-heading,
.steps-section .section-heading {
  display: block;
  width: 100%;
  max-width: 980px;
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
}

.download-heading h2,
.features-section .section-heading h2,
.steps-section .section-heading h2 {
  width: 100%;
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
}

.platform-downloads-primary {
  display: grid;
  width: min(100%, 980px);
  max-width: 980px;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px auto 0;
}

.platform-downloads-primary .platform-card {
  width: 100%;
  min-width: 0;
  min-height: 212px;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 24px;
}

.platform-downloads-primary .platform-card:hover {
  transform: translateY(-3px);
}

.platform-icon,
.other-downloads-list > a > b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(141 145 255 / 18%);
  border-radius: 15px;
  background: rgb(141 145 255 / 8%);
}

.platform-card-android .platform-icon {
  border-color: rgb(85 217 173 / 22%);
  background: rgb(85 217 173 / 7%);
}

.platform-icon .nuna-icon {
  width: 36px;
  height: 36px;
}

.platform-card-action .nuna-icon {
  width: 22px;
  height: 22px;
  transition: transform .2s ease;
}

.platform-card:hover .platform-card-action .nuna-icon {
  transform: translateY(2px);
}

.other-downloads {
  width: min(100%, 980px);
  max-width: 980px;
  box-sizing: border-box;
}

.other-downloads summary > .nuna-icon {
  width: 24px;
  height: 24px;
  margin: 0;
  border: 0;
  transform: none;
}

.other-downloads[open] summary > .nuna-icon {
  transform: rotate(180deg);
}

.other-downloads-list > a {
  min-width: 0;
}

.other-downloads-list > a > b .nuna-icon {
  width: 34px;
  height: 34px;
}

.other-downloads-list > a > .nuna-icon {
  width: 20px;
  height: 20px;
}

.feature-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-grid article,
.feature-grid article.feature-card-featured {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 20px;
}

.feature-grid .feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgb(141 145 255 / 16%);
  border-radius: 18px;
  background: linear-gradient(145deg, rgb(141 145 255 / 10%), rgb(85 217 173 / 4%));
}

.feature-grid .feature-icon .nuna-icon {
  width: 42px;
  height: 42px;
}

.steps-section .section-heading {
  max-width: none;
}

.steps-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.steps-grid li {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 118px;
  box-sizing: border-box;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  padding: 22px;
}

.steps-grid li > .step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0;
  border: 1px solid rgb(141 145 255 / 22%);
  border-radius: 18px;
  padding: 0;
  background: linear-gradient(145deg, rgb(141 145 255 / 10%), rgb(85 217 173 / 4%));
}

.step-icon .nuna-icon {
  width: 40px;
  height: 40px;
}

.steps-grid li > div {
  display: grid;
  min-width: 0;
  gap: 7px;
  margin: 0;
}

.steps-grid small {
  color: var(--green);
  font: 700 11px/1 var(--font-mono);
  letter-spacing: .08em;
}

.steps-grid strong {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.35;
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgb(141 145 255 / 26%);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(circle at 8% 10%, rgb(141 145 255 / 22%), transparent 34%),
    radial-gradient(circle at 92% 100%, rgb(85 217 173 / 13%), transparent 30%),
    linear-gradient(135deg, #171a27, #101218 62%);
  color: var(--text);
  box-shadow: 0 30px 90px rgb(0 0 0 / 30%), inset 0 1px rgb(255 255 255 / 5%);
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  content: "";
}

.final-cta-copy {
  display: grid;
  min-width: 0;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.final-cta-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgb(85 217 173 / 24%);
  border-radius: 22px;
  background: linear-gradient(145deg, rgb(141 145 255 / 13%), rgb(85 217 173 / 8%));
  box-shadow: inset 0 1px rgb(255 255 255 / 6%), 0 18px 40px rgb(0 0 0 / 20%);
}

.final-cta-icon .nuna-icon {
  width: 54px;
  height: 54px;
}

.final-cta h2 {
  max-width: 650px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  text-wrap: balance;
}

.final-cta p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.final-cta-actions {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.final-download {
  display: grid;
  min-width: 0;
  min-height: 66px;
  box-sizing: border-box;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 10px 16px;
  font-weight: 760;
  text-decoration: none;
  touch-action: manipulation;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.final-download > .nuna-icon:first-child {
  width: 34px;
  height: 34px;
}

.final-download-arrow {
  width: 22px;
  height: 22px;
  opacity: .75;
}

.final-download-primary {
  background: linear-gradient(135deg, #8d91ff, #686de8);
  color: #fff;
  box-shadow: 0 18px 46px rgb(104 109 232 / 28%);
}

.final-download-primary:hover {
  box-shadow: 0 22px 54px rgb(104 109 232 / 36%);
  transform: translateY(-2px);
}

.final-download-secondary {
  border-color: rgb(255 255 255 / 10%);
  background: rgb(255 255 255 / 4%);
  color: var(--text);
}

.final-download-secondary:hover {
  border-color: rgb(85 217 173 / 28%);
  background: rgb(255 255 255 / 7%);
  transform: translateY(-2px);
}

.final-download:focus-visible {
  outline: 3px solid rgb(141 145 255 / 62%);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    width: min(100%, 560px);
  }
}

@media (max-width: 760px) {
  .platform-downloads-primary,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .platform-downloads-primary .platform-card {
    min-height: 186px;
  }

  .other-downloads-list {
    grid-template-columns: 1fr;
  }

  .steps-grid li {
    min-height: 100px;
  }

  .final-cta-copy {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
  }

  .final-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .final-cta-icon .nuna-icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .platform-downloads-primary .platform-card {
    min-height: 172px;
    padding: 20px;
  }

  .feature-grid .feature-icon {
    margin-bottom: 24px;
  }

  .steps-grid li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .steps-grid li > .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .step-icon .nuna-icon {
    width: 36px;
    height: 36px;
  }

  .final-cta {
    gap: 28px;
    border-radius: 22px;
    padding: 28px 20px;
  }

  .final-cta-copy {
    grid-template-columns: 1fr;
  }

  .final-download {
    min-height: 62px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-card-action .nuna-icon,
  .final-download {
    transition: none;
  }
}
