:root {
  color-scheme: dark;
  --bg: #06080e;
  --bg-2: #0b1020;
  --panel: rgba(15, 22, 38, 0.78);
  --panel-strong: #111827;
  --text: #f7fbff;
  --muted: #aeb9c9;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff8a1c;
  --orange-2: #ffbd5b;
  --cyan: #41d8ff;
  --violet: #8d6bff;
  --green: #5ff0a0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    radial-gradient(circle at 16% 10%, rgba(65, 216, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 28%, rgba(255, 138, 28, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

main[id],
section[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1160px, calc(100% - 32px));
  min-height: 64px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 19, 0.74);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 850;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 255, 213, 0.28));
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 28%, #ffd68d 0 11%, transparent 12%),
    linear-gradient(135deg, #ff9b1f, #d65a13 72%);
  box-shadow: 0 12px 30px rgba(255, 138, 28, 0.25);
  color: #16100b;
  font-weight: 950;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav > a,
.login-trigger,
.resources-trigger {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 720;
  transition: all 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.login-trigger:hover,
.login-trigger:focus-visible,
.resources-trigger:hover,
.resources-trigger:focus-visible,
.resources-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: #00ffd5;
  transform: translateY(-2px);
}

.site-nav > a:active,
.login-trigger:active,
.resources-trigger:active {
  opacity: 0.75;
  transform: translateY(0);
}

.nav-resources {
  position: relative;
}

.nav-caret {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 0.2s ease;
}

.resources-trigger[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}

.resources-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: min(680px, calc(100vw - 40px));
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 14, 23, 0.98);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    0 0 44px rgba(0, 255, 213, 0.08);
  backdrop-filter: blur(18px);
}

.resources-menu[hidden] {
  display: none;
}

.resources-column {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.resources-column + .resources-column {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.resources-title {
  margin: 0 0 6px;
  color: #8f9baa;
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: uppercase;
}

.resources-link {
  display: grid;
  gap: 5px;
  padding: 10px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.resources-link:hover,
.resources-link:focus-visible {
  background: rgba(0, 255, 213, 0.08);
  color: #00ffd5;
  transform: translateY(-2px);
}

.resources-link strong {
  color: #f5f8ff;
  font-size: 0.94rem;
  line-height: 1.25;
}

.resources-link span {
  color: #aeb9c9;
  font-size: 0.84rem;
  line-height: 1.35;
}

.site-nav > a.telegram-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(0, 255, 213, 0.35);
  border-radius: 999px;
  background: rgba(0, 255, 213, 0.08);
  color: #35f5c6;
  box-shadow: 0 0 18px rgba(0, 255, 213, 0.08);
}

.site-nav > a.telegram-link:hover,
.site-nav > a.telegram-link:focus-visible {
  background: rgba(0, 255, 213, 0.16);
  box-shadow: 0 0 20px rgba(0, 255, 213, 0.28);
  color: #00e7ff;
  transform: translateY(-2px);
}

.telegram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-cta {
  min-height: 44px;
  padding: 0 20px;
  background: linear-gradient(135deg, #6dffb8, #00e7ff);
  box-shadow: 0 0 22px rgba(0, 255, 213, 0.25);
  color: #02130f;
}

.header-cta:hover,
.header-cta:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.55);
  transform: translateY(-2px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.55);
  transform: translateY(-3px) scale(1.03);
}

.header-cta:active {
  opacity: 0.9;
  transform: translateY(0);
}

.btn-primary:active {
  opacity: 0.9;
  transform: scale(0.96);
}

.header-cta svg,
.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.login-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  backdrop-filter: blur(10px);
}

.login-modal[hidden] {
  display: none;
}

.login-modal::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(53, 245, 198, 0.14), transparent 24rem),
    radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.12), transparent 26rem),
    linear-gradient(rgba(0, 255, 213, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 213, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 84px 84px, 84px 84px;
  opacity: 0.6;
  pointer-events: none;
  content: "";
}

.login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-dialog {
  position: relative;
  display: grid;
  width: min(420px, calc(100% - 32px));
  max-width: calc(100vw - 24px);
  max-height: min(760px, calc(100svh - 32px));
  overflow-x: hidden;
  overflow-y: auto;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(8, 15, 28, 0.82);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(0, 255, 213, 0.12);
  transform: translateY(16px) scale(0.96);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  backdrop-filter: blur(18px);
}

.login-modal.is-open .login-dialog {
  transform: translateY(0) scale(1);
}

.login-modal[data-auth-mode="register"] .login-dialog {
  width: min(560px, calc(100vw - 24px));
  max-height: calc(100dvh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
  gap: 12px;
  padding: 20px 24px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%),
    rgba(8, 15, 28, 0.86);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.45),
    0 0 44px rgba(0, 255, 213, 0.12);
}

.login-dialog::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 255, 213, 0.16), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.1), transparent 14rem);
  pointer-events: none;
  content: "";
}

.login-dialog > * {
  position: relative;
  z-index: 1;
}

.auth-view {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 22px;
}

.login-modal[data-auth-mode="register"] .auth-view {
  gap: 12px;
}

.auth-view[hidden] {
  display: none;
}

.login-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8e2ef;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.login-close:hover,
.login-close:focus-visible {
  background: rgba(0, 255, 213, 0.12);
  color: #00ffd5;
  transform: translateY(-1px);
}

.login-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.login-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  padding-right: 44px;
  color: #f7fbff;
  font-size: 1rem;
  font-weight: 920;
}

.login-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 255, 213, 0.26));
}

.login-modal[data-auth-mode="register"] .login-close {
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
}

.login-modal[data-auth-mode="register"] .login-brand {
  gap: 9px;
  font-size: 0.94rem;
}

.login-modal[data-auth-mode="register"] .login-brand img {
  width: 40px;
  height: 40px;
}

.login-heading {
  display: grid;
  gap: 8px;
}

.login-heading h2 {
  max-width: none;
  font-size: 2.35rem;
}

.login-heading p {
  margin: 0;
  color: #aeb9c9;
  font-size: 1rem;
}

.login-form {
  display: grid;
  gap: 16px;
}

.login-mode-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.login-standard-fields {
  display: grid;
  gap: 16px;
}

.login-standard-fields[hidden],
.login-hash-field[hidden] {
  display: none;
}

.login-segmented {
  min-width: 182px;
}

.login-field {
  display: grid;
  gap: 8px;
}

.login-field > span:first-child {
  color: #aeb9c9;
  font-size: 0.82rem;
  font-weight: 850;
}

.login-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  outline: 0;
  background: rgba(3, 8, 17, 0.76);
  color: #f7fbff;
  font: inherit;
  font-weight: 720;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.login-field input::placeholder {
  color: rgba(174, 185, 201, 0.62);
}

.login-field input:focus {
  border-color: rgba(0, 255, 213, 0.62);
  background: rgba(4, 12, 24, 0.92);
  box-shadow: 0 0 0 3px rgba(0, 255, 213, 0.12);
}

.login-field input.is-invalid {
  border-color: rgba(255, 118, 118, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 118, 118, 0.12);
}

.auth-message,
.auth-field-message {
  margin: 0;
  border-radius: 12px;
  color: #ffd6d6;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.35;
}

.auth-message {
  padding: 11px 12px;
  border: 1px solid rgba(255, 118, 118, 0.24);
  background: rgba(255, 118, 118, 0.08);
}

.auth-field-message {
  color: #ffb9b9;
  font-size: 0.74rem;
}

.auth-message[hidden],
.auth-field-message[hidden] {
  display: none;
}

.auth-message.is-muted,
.auth-field-message.is-muted {
  border-color: rgba(94, 234, 212, 0.2);
  background: rgba(94, 234, 212, 0.07);
  color: #9df7e8;
}

.auth-message.is-success,
.auth-field-message.is-success {
  border-color: rgba(109, 255, 184, 0.24);
  background: rgba(109, 255, 184, 0.08);
  color: #b9ffd9;
}

.login-password-wrap {
  position: relative;
  display: block;
}

.login-password-wrap input {
  padding-right: 48px;
}

.login-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9aa6b6;
  cursor: pointer;
}

.login-password-toggle:hover,
.login-password-toggle:focus-visible {
  background: rgba(0, 255, 213, 0.1);
  color: #00ffd5;
}

.login-password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.login-forgot {
  width: max-content;
  justify-self: end;
  color: #b9c4d3;
  font-size: 0.9rem;
  font-weight: 820;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.login-forgot:hover,
.login-forgot:focus-visible,
.login-register a:hover,
.login-register a:focus-visible {
  color: #00ffd5;
}

.login-submit {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, #6dffb8, #00e7ff);
  box-shadow: 0 18px 44px rgba(0, 236, 190, 0.22);
  color: #02130f;
  cursor: pointer;
  font-weight: 920;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.login-submit:hover,
.login-submit:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.5);
  transform: translateY(-2px);
}

.login-submit:active {
  opacity: 0.9;
  transform: translateY(0);
}

.login-submit.is-loading {
  cursor: wait;
  filter: brightness(0.96);
  box-shadow: 0 0 24px rgba(0, 255, 213, 0.32);
  transform: none;
}

.login-register {
  margin: 0;
  color: #aeb9c9;
  font-size: 0.94rem;
  text-align: center;
}

.login-register a {
  color: #dffdf8;
  font-weight: 900;
}

.auth-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
  padding-right: 44px;
}

.login-modal[data-auth-mode="register"] .auth-topline {
  min-height: 40px;
  gap: 12px;
  padding-right: 40px;
}

.auth-topline .login-brand {
  min-width: 0;
  padding-right: 0;
}

.auth-topline p {
  margin: 0;
  color: #aeb9c9;
  font-size: 0.82rem;
  font-weight: 780;
  text-align: right;
}

.login-modal[data-auth-mode="register"] .auth-topline p {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 0.78rem;
  white-space: nowrap;
}

.auth-topline a,
.register-info a {
  color: #dffdf8;
  font-weight: 900;
}

.auth-topline a:hover,
.auth-topline a:focus-visible,
.register-info a:hover,
.register-info a:focus-visible {
  color: #00ffd5;
}

.register-info {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.login-modal[data-auth-mode="register"] .register-info {
  gap: 5px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.register-info h3 {
  font-size: 1rem;
}

.login-modal[data-auth-mode="register"] .register-info h3 {
  font-size: 0.92rem;
  line-height: 1.15;
}

.register-info p {
  margin: 0;
  color: #c3ccd8;
  font-size: 0.9rem;
}

.login-modal[data-auth-mode="register"] .register-info p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.register-info a {
  width: max-content;
  font-size: 0.9rem;
}

.login-modal[data-auth-mode="register"] .register-info a {
  font-size: 0.8rem;
  line-height: 1.25;
}

.register-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: 100%;
  gap: 16px;
}

.login-modal[data-auth-mode="register"] .register-title-row {
  gap: 12px;
}

.register-title-row h2 {
  min-width: 0;
  max-width: none;
  font-size: 2rem;
}

.login-modal[data-auth-mode="register"] .register-title-row h2 {
  font-size: 1.68rem;
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.auth-segmented {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  max-width: 100%;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 999px;
  background: rgba(2, 8, 17, 0.82);
}

.login-modal[data-auth-mode="register"] .auth-segmented {
  flex: 0 0 auto;
  padding: 3px;
}

.auth-segmented button {
  min-width: 0;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9aa6b6;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

.login-modal[data-auth-mode="register"] .auth-segmented button {
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.auth-segmented button.active {
  background: rgba(255, 255, 255, 0.12);
  color: #f7fbff;
  box-shadow: 0 0 18px rgba(0, 255, 213, 0.08);
}

.register-form {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 14px;
}

.register-form[hidden] {
  display: none;
}

.register-hash-card {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 14px;
}

.register-hash-card[hidden] {
  display: none;
}

.login-modal[data-auth-mode="register"] .register-form {
  gap: 8px;
}

.login-modal[data-auth-mode="register"] .register-hash-card {
  gap: 11px;
}

.register-hash-copy {
  margin: 0;
  color: #c3ccd8;
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.45;
}

.register-hash-copy a {
  color: #dffdf8;
  font-weight: 900;
}

.register-hash-copy a:hover,
.register-hash-copy a:focus-visible {
  color: #00ffd5;
}

.register-hash-value {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  border: 1px dashed rgba(216, 226, 239, 0.4);
  border-radius: 12px;
  background: rgba(3, 8, 17, 0.76);
  color: #f7fbff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 860;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-align: center;
  box-shadow: inset 0 0 24px rgba(0, 255, 213, 0.045);
}

.register-hash-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.register-hash-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(94, 234, 212, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8e2ef;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 880;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.register-hash-actions button:hover,
.register-hash-actions button:focus-visible {
  border-color: rgba(0, 255, 213, 0.38);
  background: rgba(0, 255, 213, 0.1);
  color: #00ffd5;
  transform: translateY(-1px);
}

.register-hash-actions svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.register-hash-check {
  margin-top: 2px;
}

.login-modal[data-auth-mode="register"] .login-field {
  min-width: 0;
  max-width: 100%;
  gap: 4px;
}

.login-modal[data-auth-mode="register"] .login-field > span:first-child {
  font-size: 0.7rem;
  line-height: 1.25;
}

.login-modal[data-auth-mode="register"] .login-field input {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 11px;
  font-size: 0.88rem;
}

.login-modal[data-auth-mode="register"] .login-password-wrap input {
  padding-right: 42px;
}

.login-modal[data-auth-mode="register"] .login-password-toggle {
  right: 6px;
  width: 32px;
  height: 32px;
}

.login-modal[data-auth-mode="register"] .login-password-toggle svg {
  width: 17px;
  height: 17px;
}

.register-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: 100%;
  gap: 10px;
}

.register-label-row > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.register-label-row em {
  flex: 0 0 auto;
  max-width: 100%;
  white-space: nowrap;
  padding: 4px 8px;
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.08);
  color: #8dffc0;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.login-modal[data-auth-mode="register"] .register-label-row em {
  padding: 3px 7px;
  font-size: 0.62rem;
}

.voucher-toggle {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #aeb9c9;
  cursor: pointer;
  font-weight: 820;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.login-modal[data-auth-mode="register"] .voucher-toggle {
  min-height: 30px;
  padding: 0 8px;
  font-size: 0.82rem;
}

.voucher-toggle:hover,
.voucher-toggle:focus-visible,
.voucher-toggle.active {
  background: rgba(0, 255, 213, 0.06);
  color: #00ffd5;
}

.voucher-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 0.2s ease;
}

.voucher-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.voucher-field[hidden] {
  display: none;
}

.register-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #d8e2ef;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.42;
}

.register-check span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.login-modal[data-auth-mode="register"] .register-check {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 0.74rem;
  line-height: 1.32;
}

.register-check input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: #00ffd5;
}

.login-modal[data-auth-mode="register"] .register-check input {
  width: 18px;
  height: 18px;
}

.login-modal[data-auth-mode="register"] .register-submit {
  min-height: 44px;
  font-size: 0.94rem;
}

.login-submit:disabled,
.login-submit:disabled:hover,
.login-submit:disabled:focus-visible {
  cursor: not-allowed;
  filter: grayscale(0.35) brightness(0.72);
  box-shadow: none;
  opacity: 0.55;
  transform: none;
}

@media (max-height: 720px) {
  .login-modal[data-auth-mode="register"] .login-dialog {
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .login-modal {
    padding: 12px;
    overflow-x: hidden;
  }

  .login-dialog,
  .login-modal[data-auth-mode="register"] .login-dialog {
    width: calc(100vw - 24px);
    max-width: 420px;
    max-height: calc(100dvh - 24px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .login-dialog {
    padding: 24px 18px 18px;
  }

  .login-modal[data-auth-mode="register"] .login-dialog {
    gap: 10px;
    padding: 18px 14px 16px;
    border-radius: 22px;
  }

  .login-close,
  .login-modal[data-auth-mode="register"] .login-close {
    top: 12px;
    right: 12px;
    z-index: 4;
  }

  .auth-topline,
  .login-modal[data-auth-mode="register"] .auth-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
    gap: 8px;
    padding-right: 0;
  }

  .login-brand,
  .login-modal[data-auth-mode="register"] .login-brand {
    width: auto;
    max-width: 100%;
    min-width: 0;
    gap: 8px;
    padding-right: 0;
  }

  .login-brand span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .login-modal[data-auth-mode="register"] .auth-topline p {
    width: 100%;
    flex-basis: auto;
    max-width: 100%;
    align-self: flex-start;
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .login-modal[data-auth-mode="register"] .register-info {
    padding: 12px;
    overflow: hidden;
  }

  .login-modal[data-auth-mode="register"] .register-info a {
    width: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .login-modal[data-auth-mode="register"] .register-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
  }

  .login-modal[data-auth-mode="register"] .register-title-row h2 {
    width: 100%;
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .login-modal[data-auth-mode="register"] .auth-segmented {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .login-modal[data-auth-mode="register"] .auth-segmented::-webkit-scrollbar {
    display: none;
  }

  .login-modal[data-auth-mode="register"] .auth-segmented button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .login-modal[data-auth-mode="register"] .login-field input {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    font-size: 16px;
  }

  .login-modal[data-auth-mode="register"] .login-password-wrap,
  .login-modal[data-auth-mode="register"] .login-submit {
    width: 100%;
    max-width: 100%;
  }

  .login-modal[data-auth-mode="register"] .register-check {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
  }

  .register-hash-actions {
    grid-template-columns: 1fr;
  }

  .register-hash-actions button {
    min-height: 40px;
  }
}

@media (max-width: 420px) {
  .login-mode-row {
    justify-content: flex-start;
  }

  .login-segmented {
    width: 100%;
    min-width: 0;
  }

  .login-modal[data-auth-mode="register"] .register-title-row {
    gap: 8px;
  }

  .login-modal[data-auth-mode="register"] .register-title-row h2 {
    font-size: 1.5rem;
  }

  .login-modal[data-auth-mode="register"] .auth-segmented button {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .login-modal[data-auth-mode="register"] .login-dialog {
    width: calc(100vw - 24px);
    overflow-y: auto;
    padding: 16px 12px 14px;
  }

  .login-modal[data-auth-mode="register"] .auth-topline {
    align-items: flex-start;
    gap: 5px;
    padding-right: 0;
  }

  .login-modal[data-auth-mode="register"] .auth-topline p {
    text-align: left;
    white-space: normal;
  }

  .login-modal[data-auth-mode="register"] .register-title-row {
    align-items: stretch;
    gap: 8px;
  }

  .login-modal[data-auth-mode="register"] .auth-segmented {
    width: 100%;
  }

  .login-modal[data-auth-mode="register"] .register-label-row {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
  }
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  min-height: 88svh;
  padding: 132px 0 78px;
  background: #05070c;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 92%);
  opacity: 0.5;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 50%;
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.98) 0%, rgba(5, 7, 12, 0.82) 30%, rgba(5, 7, 12, 0.18) 72%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.08), rgba(5, 7, 12, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(88svh - 210px);
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 610px;
  font-size: 5.8rem;
  font-weight: 950;
}

h2 {
  max-width: 760px;
  font-size: 3.4rem;
  font-weight: 940;
}

h3 {
  font-size: 1.3rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 580px;
  margin: 22px 0 0;
  color: #d8e2ef;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  padding: 0 20px;
  transition: all 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.55);
  transform: translateY(-3px) scale(1.03);
}

.btn:active {
  opacity: 0.9;
  transform: scale(0.96);
}

.btn-primary {
  background: linear-gradient(135deg, #6dffb8, #00e7ff);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 16px 44px rgba(0, 236, 190, 0.28);
  color: #02130f;
}

.btn-secondary {
  border-color: rgba(0, 236, 190, 0.34);
  background: rgba(2, 20, 27, 0.68);
  box-shadow: 0 0 26px rgba(0, 236, 190, 0.1);
  color: var(--text);
}

.hero-stats {
  display: grid;
  width: min(570px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 42px 0 0;
}

.hero-stats div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 24, 0.62);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 1.75rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 720;
}

.layered-hero-page {
  background: #03070d;
}

.layered-hero-page .site-header {
  width: min(1420px, calc(100% - 48px));
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(2, 7, 13, 0.42);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.layered-hero-page .hero-layered {
  min-height: 100svh;
  padding: 118px 0 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 255, 213, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(3, 7, 13, 0.12) 0%, rgba(3, 7, 13, 0.1) 62%, rgba(3, 7, 13, 0.64) 100%),
    url("./assets/images/hero-bg.png") center top / cover no-repeat;
}

.layered-hero-page .hero-layered::before {
  display: none;
}

.hero-layered-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 152px);
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.hero-copy-layer {
  display: grid;
  justify-items: center;
}

.hero-copy-layer h1 {
  max-width: 1050px;
  font-size: clamp(3rem, 4.1vw, 4.35rem);
  line-height: 1.04;
  text-shadow: 0 7px 30px rgba(0, 0, 0, 0.74);
}

.hero-copy-layer h1 span,
.hero-copy-layer h1 strong {
  display: block;
}

.hero-copy-layer h1 strong {
  font-weight: 950;
}

.hero-copy-layer h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.hero-copy-layer p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #f2f6fb;
  font-size: clamp(1.02rem, 1.25vw, 1.3rem);
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.72);
}

.hero-download {
  min-height: 62px;
  margin-top: 22px;
  padding: 0 34px;
  color: #02130f;
  font-size: 1.05rem;
}

.hero-app {
  width: min(520px, 42vw);
  max-width: 560px;
  height: auto;
  filter:
    drop-shadow(0 0 20px rgba(0, 255, 213, 0.38))
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.38));
}

@media (min-width: 1700px) {
  .hero-app {
    width: 540px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero-app {
    width: 470px;
  }
}

.devices-section {
  isolation: isolate;
  margin-top: -1px;
  padding: clamp(88px, 8vw, 126px) 0 clamp(78px, 7vw, 108px);
  background:
    linear-gradient(180deg, rgba(3, 7, 17, 0) 0%, #030711 13%, #030711 100%),
    linear-gradient(145deg, rgba(0, 231, 255, 0.07), transparent 38%),
    linear-gradient(215deg, rgba(255, 138, 31, 0.07), transparent 42%),
    #030711;
}

.devices-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 32% -16% -32%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 70px,
      rgba(0, 231, 255, 0.18) 71px 72px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 70px,
      rgba(0, 231, 255, 0.12) 71px 72px
    );
  opacity: 0.58;
  transform: perspective(720px) rotateX(62deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 72%, transparent 100%);
}

.devices-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 56px;
  width: min(1450px, 94vw);
  height: 220px;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 255, 213, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 38px rgba(0, 255, 213, 0.22),
    0 0 110px rgba(0, 231, 255, 0.1),
    inset 0 0 40px rgba(0, 255, 213, 0.14);
  opacity: 0.72;
  pointer-events: none;
}

.devices-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.devices-inner::before,
.devices-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  border-radius: 999px;
  box-shadow:
    58px 34px 0 rgba(255, 255, 255, 0.52),
    188px 8px 0 rgba(0, 231, 255, 0.62),
    316px 74px 0 rgba(255, 138, 31, 0.56),
    780px 30px 0 rgba(255, 255, 255, 0.48),
    930px 86px 0 rgba(0, 255, 213, 0.55),
    1060px 12px 0 rgba(255, 255, 255, 0.5);
  opacity: 0.82;
}

.devices-inner::before {
  top: 18px;
  left: 0;
}

.devices-inner::after {
  right: 120px;
  bottom: 46px;
  transform: rotate(180deg);
}

.devices-ornament {
  display: grid;
  width: min(690px, 78vw);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.devices-ornament span {
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 255, 213, 0.72), rgba(255, 138, 31, 0.72), transparent);
  box-shadow: 0 0 18px rgba(0, 255, 213, 0.25);
}

.devices-ornament span:first-child {
  transform: scaleX(-1);
}

.devices-ornament img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(0, 255, 213, 0.46))
    drop-shadow(0 0 18px rgba(255, 138, 31, 0.24));
}

.devices-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.devices-heading h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.64);
}

.devices-heading h2 span {
  display: block;
}

.devices-heading h2 em {
  color: #00ffd5;
  font-style: normal;
  text-shadow:
    0 0 18px rgba(0, 255, 213, 0.48),
    0 0 34px rgba(0, 231, 255, 0.24);
}

.devices-heading p {
  max-width: 690px;
  margin: 0;
  color: #c7d0df;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.devices-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(10, minmax(94px, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.device-card {
  position: relative;
  display: grid;
  min-height: 154px;
  place-items: center;
  gap: 14px;
  padding: 22px 10px 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 213, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 255, 213, 0.12), rgba(3, 7, 17, 0.78) 56%, rgba(3, 7, 17, 0.92)),
    rgba(3, 7, 17, 0.74);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 42px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(0, 231, 255, 0.08);
  color: #d9fbff;
  font-weight: 820;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0 15%, rgba(255, 138, 31, 0.7) 42% 56%, transparent 78%) top / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(0, 255, 213, 0.2), transparent 56%);
  opacity: 0.62;
  pointer-events: none;
}

.device-card::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 213, 0.5), transparent);
  opacity: 0.65;
}

.device-card:hover,
.device-card:focus-visible {
  border-color: rgba(0, 255, 213, 0.78);
  box-shadow:
    0 0 0 1px rgba(0, 255, 213, 0.16) inset,
    0 24px 48px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(0, 255, 213, 0.36);
  background:
    linear-gradient(180deg, rgba(0, 255, 213, 0.2), rgba(3, 7, 17, 0.76) 58%, rgba(3, 7, 17, 0.92)),
    rgba(3, 7, 17, 0.8);
  transform: translateY(-6px);
}

.device-card:active {
  opacity: 0.9;
  transform: scale(0.96);
}

.device-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: #7bfff2;
  filter:
    drop-shadow(0 0 8px rgba(0, 255, 213, 0.48))
    drop-shadow(0 0 14px rgba(0, 231, 255, 0.22));
}

.device-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: none;
}

.logo-fill {
  fill: currentColor;
  stroke: none;
}

.logo-stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  vector-effect: non-scaling-stroke;
}

.logo-cut,
.logo-cutout {
  fill: #03111a;
  stroke: none;
}

.device-icon-linux .logo-stroke {
  stroke-width: 2;
}

.device-icon-linux .logo-fill {
  fill: #03111a;
  stroke: currentColor;
  stroke-width: 1.2;
}

.device-icon-android .logo-stroke,
.device-icon-more .logo-stroke,
.device-icon-chrome .logo-stroke {
  stroke-width: 2.35;
}

.device-icon-android .logo-cut {
  fill: none;
  stroke: #03111a;
  stroke-linecap: round;
  stroke-width: 3.2;
}

.device-icon-chrome .logo-fill {
  fill: rgba(123, 255, 242, 0.95);
}

.device-icon-firefox .logo-cutout,
.device-icon-edge .logo-cutout {
  fill: #03111a;
  opacity: 0.92;
}

.device-icon-firefox .logo-stroke,
.device-icon-edge .logo-stroke {
  stroke-width: 1.55;
}

.device-icon-fire-tv {
  width: 82px;
}

.device-icon-fire-tv svg {
  width: 82px;
  height: 56px;
}

.fire-tv-word {
  fill: currentColor;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: lowercase;
}

.device-wordmark {
  width: auto;
  min-width: 62px;
  font-size: 2.2rem;
  font-weight: 930;
  line-height: 1;
}

.device-wordmark.fire-tv {
  min-width: 74px;
  font-size: 1.45rem;
  text-transform: lowercase;
}

.device-card > span:last-child {
  position: relative;
  z-index: 1;
  color: #d8fbff;
  font-size: 1.02rem;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .devices-grid {
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    gap: 12px;
  }
}

.features {
  padding: 58px 0 92px;
  background:
    radial-gradient(circle at 78% 20%, rgba(141, 107, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #070b12, #090f1d);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
}

.center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card,
.price-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.feature-card {
  min-height: 284px;
  padding: 24px;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(65, 216, 255, 0.32);
  border-radius: 8px;
  background: rgba(65, 216, 255, 0.1);
  color: var(--cyan);
}

.icon-box svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.dashboard-band {
  padding: 92px 0;
  background:
    radial-gradient(circle at 16% 80%, rgba(255, 138, 28, 0.15), transparent 28rem),
    #06080e;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.dashboard-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.check-list li {
  position: relative;
  min-height: 34px;
  padding-left: 42px;
  color: #e9f2ff;
  font-weight: 760;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(95, 240, 160, 0.14);
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.app-panel {
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0b1222;
  box-shadow: var(--shadow);
}

.app-topbar {
  display: flex;
  gap: 8px;
}

.app-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.power-orbit {
  display: grid;
  min-height: 286px;
  place-items: center;
  margin-top: 30px;
  border: 1px solid rgba(65, 216, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(255, 138, 28, 0.28), transparent 30%),
    repeating-radial-gradient(circle, rgba(65, 216, 255, 0.18) 0 1px, transparent 1px 36px);
}

.power-button {
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff5622);
  box-shadow:
    0 0 0 14px rgba(255, 138, 28, 0.1),
    0 24px 52px rgba(255, 93, 25, 0.32);
  cursor: pointer;
}

.power-button svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #170b04;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.power-button[aria-pressed="false"] {
  background: linear-gradient(135deg, #6c7587, #31394a);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.05),
    0 24px 52px rgba(0, 0, 0, 0.24);
}

.connection-row {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.muted {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.connection-row strong {
  display: block;
  margin-top: 2px;
  font-size: 1.25rem;
}

.ping {
  padding: 7px 10px;
  border: 1px solid rgba(95, 240, 160, 0.32);
  border-radius: 6px;
  background: rgba(95, 240, 160, 0.1);
  color: var(--green);
  font-weight: 900;
}

.speed-bars {
  display: grid;
  height: 84px;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  margin-top: 18px;
}

.speed-bars span {
  height: var(--bar);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(65, 216, 255, 0.14));
}

.pricing {
  padding: 92px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(65, 216, 255, 0.12), transparent 34rem),
    #06080e;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 26px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.billing-toggle button {
  min-width: 104px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.billing-toggle button.active {
  background: var(--text);
  color: #0a0d14;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 456px;
  flex-direction: column;
  padding: 26px;
}

.price-card h3 {
  min-height: 4.35em;
  line-height: 1.08;
}

.price-title-line {
  display: block;
}

.price-card.featured {
  border-color: rgba(255, 138, 28, 0.52);
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 138, 28, 0.2), transparent 50%),
    #111827;
  transform: none;
}

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 138, 28, 0.14);
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-note {
  min-height: 3.2em;
  margin: 12px 0 0;
  color: var(--muted);
}

.price {
  min-height: 1.08em;
  margin: 28px 0 0;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 760;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 112px;
  margin: 24px 0 28px;
  padding: 0;
  color: #dbe6f3;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "•";
  font-size: 1.1rem;
  font-weight: 950;
}

.price-card .btn {
  margin-top: auto;
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }
}

.faq {
  padding: 92px 0;
  background: #080d18;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 48px;
}

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

.ip-check-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: #050912;
}

.download-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: #050912;
}

.download-section {
  min-height: 100svh;
  padding: 118px 0 80px;
  background:
    radial-gradient(circle at 18% 18%, rgba(53, 245, 198, 0.15), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(34, 211, 238, 0.13), transparent 30rem),
    radial-gradient(circle at 50% 92%, rgba(0, 231, 255, 0.1), transparent 32rem),
    linear-gradient(135deg, #071422 0%, #050912 50%, #02050d 100%);
}

.download-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.8px),
    radial-gradient(circle at 66% 12%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.8px),
    radial-gradient(circle at 82% 42%, rgba(0, 255, 213, 0.42) 0 1px, transparent 1.8px),
    radial-gradient(circle at 35% 72%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.8px);
  background-size: 280px 190px, 360px 240px, 240px 220px, 430px 280px;
  opacity: 0.48;
  pointer-events: none;
  animation: ip-stars-drift 24s linear infinite;
  content: "";
}

.download-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 255, 213, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 213, 0.05) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 50% 46%, black 0%, transparent 68%);
  opacity: 0.35;
  pointer-events: none;
  content: "";
}

.download-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 202px);
  align-content: start;
  justify-items: center;
}

.download-tabs {
  position: relative;
  display: flex;
  width: min(940px, 100%);
  align-items: stretch;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  border: 1px solid rgba(94, 234, 212, 0.16);
  border-radius: 24px;
  background: rgba(8, 15, 28, 0.52);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(0, 255, 213, 0.07);
  scrollbar-width: none;
  -ms-overflow-style: none;
  backdrop-filter: blur(18px);
}

.download-tabs::-webkit-scrollbar {
  display: none;
}

.download-tab {
  position: relative;
  display: inline-grid;
  min-width: 112px;
  min-height: 72px;
  flex: 0 0 auto;
  justify-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: rgba(247, 251, 255, 0.58);
  cursor: pointer;
  font-weight: 880;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.download-tab::after {
  position: absolute;
  right: 18px;
  bottom: 6px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  content: "";
}

.download-tab:hover,
.download-tab:focus-visible {
  background: rgba(94, 234, 212, 0.075);
  color: #f7fbff;
  transform: translateY(-2px);
}

.download-tab[aria-pressed="true"] {
  background: rgba(94, 234, 212, 0.1);
  color: #f7fbff;
  box-shadow: 0 0 24px rgba(0, 255, 213, 0.1);
}

.download-tab[aria-pressed="true"]::after {
  background: linear-gradient(90deg, transparent, #00ffd5, transparent);
  box-shadow: 0 0 18px rgba(0, 255, 213, 0.46);
}

.download-tab-icon,
.download-cta-platform {
  display: inline-grid;
  place-items: center;
}

.download-tab-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.download-center-card {
  position: relative;
  display: grid;
  width: min(720px, 100%);
  justify-items: center;
  margin-top: 66px;
  padding: 48px 38px 42px;
  overflow: hidden;
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    rgba(8, 15, 28, 0.62);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.35),
    0 0 46px rgba(0, 255, 213, 0.08);
  text-align: center;
  backdrop-filter: blur(18px);
  animation: download-card-in 0.62s ease both;
}

.download-center-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 213, 0.14), transparent 18rem),
    radial-gradient(circle at 8% 92%, rgba(34, 211, 238, 0.1), transparent 16rem);
  pointer-events: none;
  content: "";
}

.download-center-card > * {
  position: relative;
  z-index: 1;
}

.download-center-card.is-switching {
  animation: download-card-switch 0.34s ease both;
}

.download-logo {
  width: 116px;
  height: 116px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 34px rgba(0, 255, 213, 0.36))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.38));
}

.download-center-card h1 {
  max-width: 720px;
  margin-top: 30px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.02;
  text-shadow: 0 0 38px rgba(0, 231, 255, 0.14);
}

.download-center-card p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #b9c4d3;
  font-size: 1.08rem;
  font-weight: 720;
}

.download-cta {
  display: inline-flex;
  max-width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, #6dffb8, #00e7ff);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 20px 52px rgba(0, 236, 190, 0.28);
  color: #02130f;
  font-size: 1.05rem;
  font-weight: 920;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.download-cta:hover,
.download-cta:focus-visible {
  filter: brightness(1.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 34px rgba(0, 255, 213, 0.58);
  transform: translateY(-3px);
}

.download-cta:active {
  opacity: 0.9;
  transform: translateY(0);
}

.download-cta-platform svg,
.download-cta-arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.download-cta-platform svg {
  fill: currentColor;
}

.download-cta-arrow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

@keyframes download-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes download-card-switch {
  from {
    opacity: 0.55;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ip-check-section {
  min-height: 100svh;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 18% 22%, rgba(53, 245, 198, 0.15), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(34, 211, 238, 0.12), transparent 30rem),
    radial-gradient(circle at 72% 88%, rgba(0, 231, 255, 0.08), transparent 24rem),
    linear-gradient(135deg, #050912 0%, #07111f 45%, #030711 100%);
}

.ip-check-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.8px),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.8px),
    radial-gradient(circle at 52% 70%, rgba(0, 255, 213, 0.55) 0 1px, transparent 1.8px),
    radial-gradient(circle at 90% 66%, rgba(34, 211, 238, 0.5) 0 1px, transparent 1.8px);
  background-size: 260px 170px, 320px 210px, 220px 190px, 360px 260px;
  opacity: 0.5;
  pointer-events: none;
  animation: ip-stars-drift 22s linear infinite;
  content: "";
}

.ip-check-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 255, 213, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 213, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 72%, transparent 100%);
  opacity: 0.35;
  pointer-events: none;
  content: "";
}

.ip-check-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100svh - 220px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.ip-check-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 13px;
  border: 1px solid rgba(94, 234, 212, 0.26);
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.08);
  box-shadow: 0 0 28px rgba(0, 255, 213, 0.08);
  color: #6dffb8;
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0;
}

.ip-check-copy h1 {
  max-width: 560px;
  color: #f7fbff;
  font-size: 5.25rem;
  line-height: 0.96;
  text-shadow: 0 0 34px rgba(0, 231, 255, 0.12);
}

.ip-check-lead {
  max-width: 540px;
  margin: 20px 0 0;
  color: #d8e2ef;
  font-size: 1.16rem;
  line-height: 1.58;
}

.ip-check-auto-status {
  display: inline-flex;
  max-width: 430px;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 15px;
  border: 1px solid rgba(94, 234, 212, 0.14);
  border-radius: 18px;
  background: rgba(8, 15, 28, 0.54);
  color: #aeb9c9;
  font-size: 0.94rem;
  font-weight: 760;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.ip-check-auto-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #5ff0a0;
  box-shadow: 0 0 18px rgba(95, 240, 160, 0.62);
}

.ip-check-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 36%),
    rgba(8, 15, 28, 0.72);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.38),
    0 0 46px rgba(0, 255, 213, 0.08);
  backdrop-filter: blur(18px);
  animation: ip-card-in 0.65s ease both;
}

.ip-check-panel::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 255, 213, 0.16), transparent 18rem),
    radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.1), transparent 16rem);
  pointer-events: none;
  content: "";
}

.ip-check-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.ip-check-card-header h2 {
  max-width: none;
  color: #f7fbff;
  font-size: 1.62rem;
  line-height: 1.12;
}

.ip-live-status {
  display: inline-flex;
  min-height: 30px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(95, 240, 160, 0.3);
  border-radius: 999px;
  background: rgba(95, 240, 160, 0.1);
  color: #8dffc0;
  font-size: 0.78rem;
  font-weight: 900;
}

.ip-live-status span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5ff0a0;
  box-shadow: 0 0 14px rgba(95, 240, 160, 0.68);
}

.ip-check-status {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 390px;
  align-content: center;
  justify-items: center;
  gap: 16px;
  margin: 0;
  color: #d8e2ef;
  font-size: 1.12rem;
  font-weight: 850;
  text-align: center;
}

.ip-check-status[hidden],
.ip-check-table[hidden] {
  display: none;
}

.ip-spinner {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(94, 234, 212, 0.16);
  border-top-color: #00ffd5;
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(0, 255, 213, 0.16);
  animation: ip-spin 0.9s linear infinite;
}

.ip-check-status:not(.is-error)::after {
  width: min(100%, 360px);
  height: 74px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  background-size: 220px 100%, 100% 100%;
  animation: ip-shimmer 1.35s ease-in-out infinite;
  content: "";
}

.ip-check-status.is-error {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 138, 31, 0.22);
  border-radius: 20px;
  background: rgba(255, 138, 31, 0.08);
  color: #ffbd5b;
}

.ip-check-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
}

.ip-check-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.ip-check-row:hover {
  border-color: rgba(94, 234, 212, 0.2);
  background: rgba(94, 234, 212, 0.065);
  box-shadow: 0 0 22px rgba(0, 255, 213, 0.08);
  transform: translateY(-2px);
}

.ip-check-row dt {
  color: #8f9baa;
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ip-check-row dd {
  min-width: 0;
  margin: 0;
  color: #f7fbff;
  font-size: 1.02rem;
  font-weight: 820;
  overflow-wrap: anywhere;
}

.ip-row-main dd,
.ip-value-primary {
  color: #eafffb;
  font-size: 1.28rem;
  text-shadow: 0 0 20px rgba(0, 255, 213, 0.14);
}

.ip-value-muted {
  color: #9aa6b6;
  font-weight: 760;
}

@keyframes ip-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ip-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ip-shimmer {
  0% {
    background-position: -220px 0, 0 0;
  }

  100% {
    background-position: 220px 0, 0 0;
  }
}

@keyframes ip-stars-drift {
  to {
    background-position: 260px 170px, -320px 210px, 220px -190px, -360px -260px;
  }
}

details {
  padding: 0;
}

summary {
  min-height: 70px;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 870;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details summary {
  position: relative;
}

details summary::after {
  position: absolute;
  top: 23px;
  right: 22px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  content: "+";
  text-align: center;
  line-height: 24px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -4px 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.94), rgba(5, 7, 12, 0.7)),
    url("./assets/images/hero-bg.png") center center / cover;
}

.final-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-inner h2 {
  margin-bottom: 30px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #05070c;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .layered-hero-page .site-header,
  .ip-check-page .site-header {
    width: calc(100% - 24px);
    background: rgba(2, 7, 13, 0.78);
  }

  .layered-hero-page .brand-logo,
  .ip-check-page .brand-logo {
    width: 44px;
    height: 44px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    width: min(100%, 100%);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 11, 19, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: grid;
  }

  .site-nav > a,
  .login-trigger {
    min-height: 48px;
  }

  .site-nav > a.telegram-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
    justify-self: start;
  }

  .nav-resources {
    display: grid;
  }

  .resources-trigger {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
  }

  .resources-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 4px 0 8px;
    transform: none;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.38),
      0 0 30px rgba(0, 255, 213, 0.07);
  }

  .resources-column {
    padding: 18px;
  }

  .resources-column + .resources-column {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero {
    min-height: 86svh;
    padding-top: 124px;
  }

  .hero-art {
    object-position: 70% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 12, 0.98) 0%, rgba(5, 7, 12, 0.82) 46%, rgba(5, 7, 12, 0.2)),
      linear-gradient(180deg, rgba(5, 7, 12, 0.08), rgba(5, 7, 12, 0.8));
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    gap: 12px;
  }

  .dashboard-layout,
  .split-heading,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .download-section {
    padding: 114px 0 70px;
  }

  .download-shell {
    min-height: auto;
  }

  .download-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .download-center-card {
    margin-top: 72px;
  }

  .ip-check-section {
    padding: 122px 0 70px;
  }

  .ip-check-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ip-check-copy {
    text-align: center;
  }

  .ip-check-copy h1,
  .ip-check-lead,
  .ip-check-auto-status {
    margin-right: auto;
    margin-left: auto;
  }

  .ip-check-copy h1 {
    font-size: 4.25rem;
  }

  .layered-hero-page .hero-layered {
    min-height: 100svh;
    padding: 96px 0 42px;
    background-position: center top;
  }

  .hero-layered-inner {
    min-height: calc(100svh - 138px);
    align-content: start;
    gap: 22px;
  }

  .hero-copy-layer h1 {
    max-width: 720px;
    font-size: clamp(2.8rem, 7vw, 4.2rem);
  }

  .hero-copy-layer p {
    max-width: 620px;
  }

  .hero-app {
    width: min(86vw, 460px);
  }

  .devices-section {
    padding: 82px 0 74px;
  }

  .devices-section::before {
    inset: 38% -28% -34%;
  }

  .devices-section::after {
    bottom: 34px;
    height: 150px;
  }

  .devices-grid {
    max-width: 760px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 38px;
  }

  .device-card {
    min-height: 132px;
    padding: 18px 8px 16px;
  }

  .device-icon {
    width: 56px;
    height: 56px;
  }

  .device-icon-fire-tv,
  .device-icon-fire-tv svg {
    width: 74px;
    height: 52px;
  }

  .device-wordmark {
    font-size: 1.82rem;
  }

  .device-wordmark.fire-tv {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 10px;
  }

  .layered-hero-page .site-header,
  .ip-check-page .site-header {
    width: calc(100% - 20px);
  }

  .layered-hero-page .brand-logo,
  .ip-check-page .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 84svh;
    padding: 104px 0 52px;
  }

  .hero-art {
    opacity: 0.72;
    object-position: 72% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 12, 0.98), rgba(5, 7, 12, 0.7)),
      linear-gradient(180deg, rgba(5, 7, 12, 0.04), rgba(5, 7, 12, 0.9));
  }

  .hero-inner {
    min-height: calc(84svh - 156px);
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-stats div {
    min-height: 74px;
    padding: 12px;
  }

  .hero-stats dt {
    font-size: 1.12rem;
    line-height: 1.1;
  }

  .hero-stats dd {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .dashboard-band,
  .pricing,
  .faq,
  .final-cta {
    padding: 62px 0;
  }

  .feature-card,
  .price-card {
    min-height: auto;
    padding: 20px;
  }

  .download-section {
    padding: 96px 0 54px;
  }

  .download-tabs {
    width: 100%;
    gap: 6px;
    padding: 8px;
    border-radius: 20px;
  }

  .download-tab {
    min-width: 88px;
    min-height: 66px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .download-tab-icon svg {
    width: 24px;
    height: 24px;
  }

  .download-center-card {
    margin-top: 56px;
    padding: 34px 18px 30px;
    border-radius: 24px;
  }

  .download-logo {
    width: 90px;
    height: 90px;
  }

  .download-center-card h1 {
    margin-top: 24px;
    font-size: 2.25rem;
  }

  .download-center-card p {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .download-cta {
    width: min(100%, 330px);
    min-height: 56px;
    margin-top: 30px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .ip-check-section {
    padding: 106px 0 50px;
  }

  .ip-check-copy h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  .ip-check-lead {
    margin-top: 16px;
    font-size: 1rem;
  }

  .ip-check-auto-status {
    width: 100%;
    margin-top: 22px;
    align-items: flex-start;
    text-align: left;
  }

  .ip-check-panel {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .ip-check-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }

  .ip-check-card-header h2 {
    font-size: 1.35rem;
  }

  .ip-check-status {
    min-height: 250px;
    font-size: 1rem;
  }

  .ip-check-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
  }

  .ip-check-row dt {
    font-size: 0.76rem;
  }

  .ip-check-row dd {
    font-size: 0.96rem;
  }

  .ip-row-main dd,
  .ip-value-primary {
    font-size: 1.08rem;
  }

  .dashboard-layout {
    gap: 30px;
  }

  .app-panel {
    min-height: 430px;
  }

  .power-orbit {
    min-height: 218px;
  }

  .power-button {
    width: 112px;
    height: 112px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .layered-hero-page .hero-layered {
    min-height: 100svh;
    padding: 86px 0 34px;
    background-position: center top;
  }

  .hero-layered-inner {
    min-height: calc(100svh - 120px);
    gap: 18px;
  }

  .hero-copy-layer h1 {
    max-width: 360px;
    font-size: 2.36rem;
    line-height: 1.06;
  }

  .hero-copy-layer p {
    max-width: 350px;
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-download {
    width: min(100%, 310px);
    min-height: 54px;
    margin-top: 20px;
    padding: 0 20px;
    font-size: 0.98rem;
  }

  .hero-app {
    width: 86vw;
  }

  .devices-section {
    padding: 72px 0 64px;
  }

  .devices-ornament {
    width: min(100%, 340px);
    gap: 12px;
    margin-bottom: 22px;
  }

  .devices-ornament img {
    width: 38px;
    height: 38px;
  }

  .devices-heading {
    gap: 14px;
  }

  .devices-heading h2 {
    max-width: 360px;
    font-size: 2.16rem;
    line-height: 1.12;
  }

  .devices-heading p {
    max-width: 350px;
    font-size: 0.98rem;
  }

  .devices-grid {
    width: min(100%, 360px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
  }

  .device-card {
    min-height: 122px;
    gap: 10px;
    padding: 16px 8px 14px;
  }

  .device-icon {
    width: 50px;
    height: 50px;
  }

  .device-icon-fire-tv,
  .device-icon-fire-tv svg {
    width: 68px;
    height: 48px;
  }

  .device-wordmark {
    min-width: 50px;
    font-size: 1.48rem;
  }

  .device-wordmark.fire-tv {
    min-width: 58px;
    font-size: 1.05rem;
  }

  .device-card > span:last-child {
    font-size: 0.9rem;
  }
}

@media (max-width: 340px) {
  .devices-grid {
    grid-template-columns: 1fr;
  }
}

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