:root {
  color-scheme: dark;
  --bg: #080b0f;
  --bg-2: #10161d;
  --text: #f4f8fb;
  --muted: #aebbc2;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(12, 18, 24, 0.72);
  --panel-strong: rgba(14, 23, 30, 0.9);
  --cyan: #24d5ca;
  --lime: #75f095;
  --coral: #ff6f68;
  --gold: #f2c25b;
  --violet: #8c7cf0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(36, 213, 202, 0.18), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(255, 111, 104, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

code {
  padding: 0.12rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lime);
  font-size: 0.92em;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(8, 11, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.header-download,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 213, 202, 0.55);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(36, 213, 202, 0.22), rgba(117, 240, 149, 0.14));
  color: var(--lime);
  font-size: 0.85rem;
}

.brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  gap: clamp(10px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  justify-self: end;
  gap: 10px;
  min-width: 0;
}

.language-menu {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 142px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
}

.language-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.language-menu.is-open .language-toggle svg {
  transform: rotate(180deg);
}

.language-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 4px;
  width: min(260px, calc(100vw - 28px));
  max-height: min(520px, calc(100vh - 92px));
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 13, 19, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu.is-open .language-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-list button {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
}

.language-list button:hover,
.language-list button.is-active {
  background: rgba(36, 213, 202, 0.15);
  color: var(--text);
}

.header-download {
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
}

.header-download svg,
.language-toggle svg,
.button svg,
.feature-card svg,
.notice-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 84svh;
  padding: 112px clamp(18px, 4vw, 56px) 58px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.94) 0%, rgba(8, 11, 15, 0.78) 35%, rgba(8, 11, 15, 0.24) 72%, rgba(8, 11, 15, 0.62) 100%),
    linear-gradient(0deg, rgba(8, 11, 15, 0.86) 0%, rgba(8, 11, 15, 0.06) 30%, rgba(8, 11, 15, 0.18) 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(1180px, 100%);
  max-width: 1180px;
  min-height: calc(84svh - 170px);
  margin: 0 auto;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(117, 240, 149, 0.9);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #d7e1e5;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #061013;
  box-shadow: 0 16px 38px rgba(36, 213, 202, 0.2);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button.wide {
  width: 100%;
}

.button.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.52;
  filter: grayscale(0.5);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(680px, 100%);
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 9, 12, 0.58);
  backdrop-filter: blur(10px);
}

.hero-points strong {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.risk-note {
  max-width: 640px;
  margin-bottom: 0;
  color: #c0cbd0;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.release-band {
  padding: 34px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(36, 213, 202, 0.12), rgba(117, 240, 149, 0.08), rgba(255, 111, 104, 0.1)),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-preview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 56px);
}

.preview-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.preview-showcase figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.preview-showcase img {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #05090c;
  object-fit: cover;
  object-position: center top;
}

.preview-main {
  min-height: 520px;
}

.preview-stack {
  display: grid;
  gap: 16px;
}

.preview-stack figure {
  min-height: 160px;
}

.preview-main figcaption,
.preview-stack figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(6, 10, 14, 0.94), rgba(6, 10, 14, 0.66), transparent);
}

.preview-showcase figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-weight: 900;
}

.preview-showcase figcaption p {
  max-width: 640px;
  margin: 0;
  color: #d6e1e6;
  font-size: 0.94rem;
}

.image-open-button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 9, 12, 0.78);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.image-open-button:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 213, 202, 0.45);
  background: rgba(36, 213, 202, 0.18);
}

.image-open-button svg {
  width: 19px;
  height: 19px;
}

.release-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.release-copy p:not(.section-kicker),
.section-heading p,
.workflow-copy p {
  max-width: 680px;
  color: var(--muted);
}

.release-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 11, 15, 0.68);
  box-shadow: var(--shadow);
}

.release-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin-bottom: 18px;
  color: #dce7eb;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(242, 194, 91, 0.8);
}

.release-panel.is-ready .status-dot {
  background: var(--lime);
  box-shadow: 0 0 20px rgba(117, 240, 149, 0.8);
}

.release-panel.is-missing .status-dot {
  background: var(--coral);
  box-shadow: 0 0 20px rgba(255, 111, 104, 0.75);
}

.release-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.release-meta div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  min-height: 42px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.release-meta dt,
.release-meta dd {
  margin: 0;
}

.release-meta dt {
  color: var(--muted);
}

.release-meta dd {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 750;
}

.section,
.workflow-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 790px;
}

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

.feature-card,
.notice-item,
.workflow-list li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-card {
  min-height: 236px;
  padding: 22px;
}

.feature-card svg {
  margin-bottom: 28px;
  color: var(--cyan);
}

.feature-card:nth-child(3n) svg {
  color: var(--coral);
}

.feature-card:nth-child(3n + 2) svg {
  color: var(--lime);
}

.feature-card p,
.notice-item p,
.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-section {
  padding-top: 18px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.guide-card {
  grid-column: span 2;
  display: flex;
  min-height: 226px;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.guide-card.is-video {
  grid-column: span 3;
  padding: 0;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.guide-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 213, 202, 0.12), rgba(255, 111, 104, 0.1)),
    #05090c;
}

.guide-media video {
  display: block;
  width: 100%;
  height: 100%;
  background: #05090c;
  object-fit: contain;
}

.guide-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 22px;
}

.guide-video-disclosure {
  width: 100%;
  margin-top: 24px;
}

.guide-video-disclosure summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.guide-video-disclosure summary::-webkit-details-marker {
  display: none;
}

.guide-video-disclosure .guide-badge {
  margin-bottom: 0;
}

.guide-video-disclosure .guide-media {
  margin-top: 16px;
}

.guide-arrow {
  width: 18px;
  height: 18px;
  color: var(--lime);
  transition: transform 180ms ease;
}

.guide-video-disclosure[open] .guide-arrow {
  transform: rotate(180deg);
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 10px;
  border: 1px solid rgba(36, 213, 202, 0.26);
  border-radius: 8px;
  background: rgba(36, 213, 202, 0.12);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-badge.is-soon {
  border-color: rgba(242, 194, 91, 0.28);
  background: rgba(242, 194, 91, 0.1);
  color: var(--gold);
}

.guide-badge svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.guide-card h3 {
  overflow-wrap: anywhere;
}

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

.why-us-section {
  padding: 92px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 11, 15, 0.98), rgba(18, 12, 27, 0.92), rgba(8, 11, 15, 0.98)),
    var(--bg);
}

.why-us-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.why-us-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  margin-bottom: 34px;
}

.why-us-headline {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.04;
}

.why-us-headline em {
  color: var(--lime);
  font-style: normal;
}

.why-us-desc {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.fee-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(140, 124, 240, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(140, 124, 240, 0.16), rgba(36, 213, 202, 0.07)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.fee-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-number {
  color: var(--lime);
  font-size: clamp(4.2rem, 10vw, 6.2rem);
  font-weight: 950;
  line-height: 0.9;
}

.fee-unit {
  font-size: 0.48em;
}

.fee-tagline {
  margin: 18px 0 0;
  color: #d6e1e6;
}

.fee-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.fee-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.fee-chip.us {
  border-color: rgba(117, 240, 149, 0.34);
  background: rgba(117, 240, 149, 0.1);
  color: var(--lime);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.adv-card {
  min-height: 232px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.adv-card:hover {
  transform: translateY(-1px);
  border-color: rgba(140, 124, 240, 0.34);
  background: rgba(255, 255, 255, 0.075);
}

.adv-card.highlight {
  border-color: rgba(117, 240, 149, 0.24);
  background:
    linear-gradient(135deg, rgba(117, 240, 149, 0.08), rgba(36, 213, 202, 0.05)),
    rgba(255, 255, 255, 0.055);
}

.adv-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 24px;
  color: var(--cyan);
}

.adv-card:nth-child(3n) svg {
  color: var(--coral);
}

.adv-card:nth-child(3n + 2) svg {
  color: var(--lime);
}

.adv-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 16px;
  padding: 0 9px;
  border: 1px solid rgba(117, 240, 149, 0.22);
  border-radius: 8px;
  background: rgba(117, 240, 149, 0.1);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.adv-tag + svg {
  display: block;
}

.adv-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(117, 240, 149, 0.7);
}

.workflow-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  min-height: 246px;
  padding: 22px;
  background: var(--panel);
}

.workflow-list span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: 900;
}

.beta-section {
  padding-top: 72px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.notice-item {
  min-height: 170px;
  padding: 20px;
  background: var(--panel-strong);
}

.notice-item svg {
  margin-bottom: 20px;
  color: var(--gold);
}

.notice-item span {
  display: block;
  margin-bottom: 8px;
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 56px) 92px;
}

.support-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
}

.report-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 213, 202, 0.12), rgba(255, 111, 104, 0.12)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.report-card > svg {
  width: 38px;
  height: 38px;
  color: var(--coral);
}

.report-card span {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

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

.button.report-button {
  min-width: 166px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #130b08;
}

.button.report-button.is-disabled {
  pointer-events: auto;
  cursor: not-allowed;
  opacity: 0.76;
  filter: none;
}

.contact-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) 92px;
}

.contact-copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}

.contact-copy h2,
.contact-copy p {
  margin: 0;
}

.contact-copy p:not(.section-kicker) {
  color: var(--muted);
}

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

.social-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 19, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  opacity: 0.8;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 213, 202, 0.46);
  background:
    linear-gradient(135deg, rgba(36, 213, 202, 0.12), rgba(117, 240, 149, 0.05)),
    rgba(8, 13, 19, 0.88);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cyan);
}

.social-icon svg,
.social-card > svg {
  width: 20px;
  height: 20px;
}

.social-card > svg {
  color: var(--muted);
}

.social-card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.social-card-copy strong {
  font-size: 1rem;
  font-weight: 900;
}

.social-card-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.social-card.telegram::before {
  background: linear-gradient(90deg, #2aa8e8, var(--cyan));
}

.social-card.x-social::before {
  background: linear-gradient(90deg, #f4f8fb, var(--cyan));
}

.social-card.youtube::before {
  background: linear-gradient(90deg, #ff3d4a, var(--coral));
}

.social-card.discord::before {
  background: linear-gradient(90deg, #8c7cf0, var(--cyan));
}

body.is-lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 8, 11, 0.92);
  backdrop-filter: blur(16px);
}

.image-lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  display: grid;
  gap: 14px;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
}

.lightbox-figure img {
  max-width: calc(100vw - 56px);
  max-height: calc(100svh - 112px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #05090c;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-figure figcaption {
  color: var(--muted);
  font-weight: 850;
}

.lightbox-close {
  position: fixed;
  z-index: 61;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: rgba(255, 111, 104, 0.55);
  background: rgba(255, 111, 104, 0.16);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .release-wrap,
  .preview-showcase,
  .why-us-top,
  .support-band,
  .workflow-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .notice-grid,
  .adv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-card,
  .guide-card.is-video {
    grid-column: span 3;
  }

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

  .workflow-list li {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .header-download {
    min-height: 40px;
    padding: 0 12px;
  }

  .header-download span {
    display: none;
  }

  .language-toggle {
    min-width: 48px;
    width: 48px;
    height: 40px;
    padding: 0;
  }

  .language-toggle [data-current-label] {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 92px 16px 30px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 11, 15, 0.96), rgba(8, 11, 15, 0.84)),
      linear-gradient(0deg, rgba(8, 11, 15, 0.88), rgba(8, 11, 15, 0.18));
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    max-width: calc(100vw - 32px);
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  h2 {
    font-size: 2.15rem;
  }

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

  .hero-points {
    display: none;
  }

  .lead {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }

  .risk-note {
    font-size: 0.88rem;
  }

  .feature-grid,
  .notice-grid,
  .adv-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .guide-card.is-video {
    grid-column: 1 / -1;
  }

  .guide-card {
    min-height: auto;
  }

  .release-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .release-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section,
  .product-preview,
  .guide-section,
  .why-us-section,
  .support-band,
  .contact-band,
  .workflow-band {
    padding: 68px 16px;
  }

  .preview-main {
    min-height: 280px;
  }

  .preview-stack figure {
    min-height: 220px;
  }

  .report-card {
    grid-template-columns: 1fr;
  }

  .button.report-button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand span:not(.brand-mark) {
    display: none;
  }
}

[data-text-dir="rtl"] .language-list button {
  text-align: right;
}

[data-text-dir="rtl"] .image-open-button {
  right: auto;
  left: 12px;
}

[data-text-dir="rtl"] .lightbox-close {
  right: auto;
  left: 18px;
}

[data-text-dir="rtl"] .hero-copy,
[data-text-dir="rtl"] .section-heading,
[data-text-dir="rtl"] .guide-card,
[data-text-dir="rtl"] .guide-card-body,
[data-text-dir="rtl"] .why-us-copy,
[data-text-dir="rtl"] .fee-card,
[data-text-dir="rtl"] .adv-card,
[data-text-dir="rtl"] .workflow-copy,
[data-text-dir="rtl"] .support-copy,
[data-text-dir="rtl"] .contact-copy,
[data-text-dir="rtl"] .social-card,
[data-text-dir="rtl"] .release-copy {
  direction: rtl;
  text-align: right;
}
