@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ══════════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #07040e;
  --bg2:         #0d0919;
  --bg3:         #130d22;
  --bg4:         #1a1130;
  --bg-card:     rgba(255,255,255,0.035);
  --bg-card-h:   rgba(255,255,255,0.065);
  --bg-glass:    rgba(13,9,25,0.75);
  --accent:      #8632f0;
  --accent2:     #b040f0;
  --accent3:     #d060ff;
  --accent-soft: rgba(134,50,240,0.15);
  --accent-glow: rgba(134,50,240,0.45);
  --accent-line: rgba(134,50,240,0.28);
  --text:        #f2ecff;
  --text2:       #c0aee0;
  --text3:       #8870b0;
  --text4:       #503870;
  --border:      rgba(134,50,240,0.22);
  --border2:     rgba(255,255,255,0.07);
  --border3:     rgba(255,255,255,0.12);
  --danger:      #ff5566;
  --green:       #34d48a;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 8px 40px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 80px rgba(134,50,240,0.18);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
@keyframes floatSlow {
  0%  { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(2deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
  100%{ transform: translateY(0) rotate(0deg); }
}
@keyframes pulsate {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.05); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes borderSpin {
  to { transform: rotate(360deg); }
}
@keyframes typeBlinkCaret {
  0%,100% { border-color: var(--accent2); }
  50%     { border-color: transparent; }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 30px rgba(134,50,240,0.3); }
  50%     { box-shadow: 0 0 70px rgba(176,64,240,0.6), 0 0 120px rgba(134,50,240,0.2); }
}
@keyframes slideInLeft {
  from { opacity:0; transform: translateX(-40px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity:0; transform: translateX(40px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes orbitRotate {
  from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}
@keyframes scanLine {
  from { transform: translateY(-100%); }
  to   { transform: translateY(100%); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ripple {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.scale-up   { transform: scale(0.94); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }
.delay-4 { transition-delay: 0.32s !important; }
.delay-5 { transition-delay: 0.40s !important; }
.delay-6 { transition-delay: 0.48s !important; }

/* ══════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--accent2);
}

/* ══════════════════════════════════════════
   CURSOR GLOW (desktop)
══════════════════════════════════════════ */
#cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,50,240,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 0;
  transition: opacity 0.4s;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
p { line-height: 1.72; }

.gradient-text {
  background: linear-gradient(135deg, #e080ff 0%, #8632f0 40%, #ff80e8 100%);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--text2) 25%, #fff 50%, var(--text2) 75%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: var(--bg-card);
  color: var(--text2);
  border: 1px solid var(--border3);
  backdrop-filter: blur(12px);
}
.btn-outline:hover {
  background: var(--bg-card-h);
  color: var(--text);
  border-color: var(--accent-line);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 38px; font-size: 1.05rem; border-radius: 14px; }

/* Magnetic wrapper */
.btn-magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}

/* ══════════════════════════════════════════
   BADGE
══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: #d090ff;
  position: relative;
  overflow: hidden;
}
.badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease infinite 1s;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 10px var(--accent2);
  animation: pulsate 2s ease infinite;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.35s, background 0.35s, border-bottom 0.35s;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(7,4,14,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border2);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a0a5e, #6020b0);
  animation: glowPulse 4s ease infinite;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo-ver {
  font-size: 0.65rem;
  color: var(--text4);
  align-self: flex-end;
  margin-bottom: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta { margin-left: 10px; padding: 9px 20px; font-size: 0.875rem; }

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text3);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 4px 9px;
  border-radius: 7px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  line-height: 1;
}
.lang-btn:hover { color: var(--text); background: rgba(255,255,255,0.07); }
.lang-btn.active {
  color: var(--accent3);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}
@media (max-width: 700px) {
  .lang-toggle { margin-left: 0; }
  .lang-btn { padding: 4px 7px; font-size: 0.68rem; }
}

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border2);
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text2);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,4,14,0.96);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-mobile-menu.open { display: flex; opacity: 1; }
.nav-mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text2);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-link:hover { color: var(--text); background: var(--bg-card); }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Animated mesh gradient bg */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: floatSlow 12s ease infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(134,50,240,0.28) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(176,64,240,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(208,96,255,0.12) 0%, transparent 70%);
  bottom: 0; left: 30%;
  animation-delay: -8s;
}

/* Canvas particles */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Dot grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(134,50,240,0.14) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Scan line effect */
.hero-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(134,50,240,0.04) 50%, transparent 100%);
  height: 200px;
  animation: scanLine 6s linear infinite;
  pointer-events: none;
}

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

.hero-badge {
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 400;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* Typing cursor */
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent2);
  vertical-align: middle;
  margin-left: 2px;
  border-radius: 1px;
  animation: typeBlinkCaret 0.9s step-end infinite;
}

/* Hero image/gif area */
.hero-media {
  position: relative;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(134,50,240,0.1),
    0 30px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(134,50,240,0.12);
}

/* Animated gradient border on hero frame */
.hero-media-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(90deg,
    var(--accent), var(--accent3), #ff80e8, var(--accent2), var(--accent));
  background-size: 300% 100%;
  animation: gradientShift 4s linear infinite;
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  padding: 1px;
}

/* Decorative corner labels on hero frame */
.hero-frame-label {
  position: absolute;
  top: 12px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 10;
}
.hero-frame-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-frame-dot.r { background: #ff5f57; }
.hero-frame-dot.y { background: #febc2e; }
.hero-frame-dot.g { background: #28c840; }

.gif-box {
  background: var(--bg3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gif-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 32px;
  text-align: center;
}

.gif-play-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--accent2);
  position: relative;
  padding-left: 4px;
  animation: glowPulse 3s ease infinite;
}
.gif-play-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  animation: ripple 2s ease infinite;
}

.gif-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gif-hint {
  font-size: 0.72rem;
  color: var(--text4);
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border2);
}

.gif-hero {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
  cursor: pointer;
}
.hero-scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--text4);
  border-bottom: 2px solid var(--text4);
  transform: rotate(45deg);
  animation: floatY 1.8s ease infinite;
}

/* ══════════════════════════════════════════
   AI CALLOUT
══════════════════════════════════════════ */
.ai-callout {
  padding: 80px 0;
}

.ai-callout-card {
  background: linear-gradient(135deg,
    rgba(134,50,240,0.1),
    rgba(176,64,240,0.06),
    rgba(134,50,240,0.1));
  border: 1px solid var(--accent-line);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ai-callout-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(176,64,240,0.18), transparent 70%);
  pointer-events: none;
}
.ai-callout-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(134,50,240,0.14), transparent 70%);
  pointer-events: none;
}

.ai-callout-card h2 { margin-bottom: 16px; }
.ai-callout-card p { color: var(--text2); max-width: 520px; margin: 0 auto 36px; }

.ai-tools {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ai-tool-tag {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text3);
  transition: all 0.2s;
}
.ai-tool-tag:hover {
  border-color: var(--accent-line);
  color: var(--text2);
  background: var(--bg4);
}

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
.sec-header {
  text-align: center;
  margin-bottom: 72px;
}
.sec-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
  display: block;
  position: relative;
}
.sec-label::before, .sec-label::after {
  content: '—';
  margin: 0 10px;
  color: var(--text4);
}
.sec-header h2 { margin-bottom: 16px; }
.sec-header p {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   FEATURE SPLITS
══════════════════════════════════════════ */
#features { padding: 100px 0 60px; }

.feat-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  position: relative;
}
.feat-split + .feat-split {
  border-top: 1px solid var(--border2);
}
.feat-split.reverse { grid-template-columns: 1.3fr 1fr; }
.feat-split.reverse .feat-split-content { order: 2; }
.feat-split.reverse .feat-split-media  { order: 1; }

.feat-split-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
  display: block;
}
.feat-split-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}
.feat-split-content p {
  font-size: 0.96rem;
  color: var(--text2);
  margin-bottom: 24px;
  line-height: 1.75;
}

.feat-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text2);
}
.feat-bullets li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 8px var(--accent2);
  flex-shrink: 0;
}

/* GIF media box in feature splits */
.feat-split-media .gif-box {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.feat-split-media .gif-box:hover {
  border-color: var(--accent-line);
  box-shadow: var(--shadow), 0 0 60px rgba(134,50,240,0.12);
}

/* 3D tilt effect on feature gifs */
.tilt-wrap {
  perspective: 1000px;
  transform-style: preserve-3d;
}
.tilt-inner {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  transform-style: preserve-3d;
}

@media (max-width: 900px) {
  .feat-split,
  .feat-split.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feat-split.reverse .feat-split-content { order: unset; }
  .feat-split.reverse .feat-split-media  { order: unset; }
}

/* ══════════════════════════════════════════
   FREE BANNER
══════════════════════════════════════════ */
.free-banner {
  position: relative;
  padding: 90px 0 100px;
  text-align: center;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  overflow: hidden;
}
.free-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 260px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}
.free-banner-inner {
  position: relative;
  z-index: 1;
}
.free-banner-title {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
  background: linear-gradient(120deg, #fff 0%, var(--accent3) 45%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.free-banner-sub {
  font-size: 0.9rem;
  color: var(--text3);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   FEATURE CARDS GRID
══════════════════════════════════════════ */
.features-grid-section {
  padding: 90px 0 100px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover {
  background: var(--bg-card-h);
  border-color: var(--accent-line);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(134,50,240,0.08);
}
.feat-card:hover::before { opacity: 1; }

.feat-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid var(--accent-line);
  transition: transform 0.3s;
}
.feat-card:hover .feat-icon { transform: scale(1.08) rotate(-3deg); }

.feat-title-wrap h3 { font-size: 0.97rem; margin-bottom: 5px; }
.feat-title-wrap p  { font-size: 0.85rem; color: var(--text3); line-height: 1.6; }

.feat-gif {
  aspect-ratio: 16/9;
  border-radius: 10px;
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: border-color 0.3s;
}
.feat-card:hover .feat-gif { border-color: var(--accent-line); }
.feat-gif .gif-box { border-radius: 9px; }
.feat-gif .gif-box-inner { padding: 20px; }
.feat-gif .gif-play-icon { width: 40px; height: 40px; font-size: 1rem; }
.feat-gif .gif-label { font-size: 0.73rem; }
.feat-gif .gif-hint { font-size: 0.67rem; }

/* ══════════════════════════════════════════
   CODE TERMINAL (metadata feature)
══════════════════════════════════════════ */
.code-terminal {
  background: #0a0612;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
}
.code-terminal-bar {
  background: var(--bg3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--border2);
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }
.code-title {
  font-size: 0.72rem;
  color: var(--text4);
  margin-left: 4px;
}
.code-body {
  padding: 20px;
  font-size: 0.75rem;
  line-height: 1.8;
  overflow-x: auto;
}
.code-key   { color: #c080ff; }
.code-str   { color: #80e0a0; }
.code-num   { color: #f0c060; }
.code-punct { color: var(--text4); }
.code-comment { color: var(--text4); font-style: italic; }
.code-line { display: block; white-space: pre; }
.code-cursor-inline {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--accent2);
  vertical-align: middle;
  margin-left: 1px;
  animation: typeBlinkCaret 0.8s step-end infinite;
}

/* Typing animation lines */
.code-line.typed { overflow: hidden; white-space: nowrap; }

/* ══════════════════════════════════════════
   DOWNLOAD
══════════════════════════════════════════ */
#download {
  padding: 100px 0;
}
.download-section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(134,50,240,0.05) 50%, transparent);
  pointer-events: none;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: 24px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  gap: 56px;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(134,50,240,0.1), transparent 70%);
  pointer-events: none;
}

.download-info { flex: 1; }
.download-info h2 { margin-bottom: 14px; }
.download-info p  { color: var(--text2); margin-bottom: 28px; line-height: 1.7; }

.platform-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text3);
  background: var(--bg3);
  border: 1px solid var(--border2);
  transition: all 0.2s;
}
.platform-pill.active {
  color: var(--green);
  border-color: rgba(52,212,138,0.3);
  background: rgba(52,212,138,0.07);
  box-shadow: 0 0 20px rgba(52,212,138,0.1);
}

.download-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.download-meta {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.download-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text3);
}
.download-meta-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-line);
  flex-shrink: 0;
}

.download-visual {
  flex-shrink: 0;
  text-align: center;
}
.download-icon-outer {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 16px;
}
.download-icon-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed var(--accent-line);
  animation: borderSpin 12s linear infinite;
}
.download-icon-ring::before {
  content: '◆';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: var(--accent2);
}
.download-icon-wrap {
  width: 140px; height: 140px;
  border-radius: 32px;
  background: linear-gradient(135deg, #2a0a5e, #6a20b0);
  display: flex; align-items: center; justify-content: center;
  animation: glowPulse 4s ease infinite;
}
.download-icon-wrap img { width: 90px; height: 90px; object-fit: contain; }
.download-version { font-size: 0.8rem; color: var(--text4); }

@media (max-width: 860px) {
  .download-card {
    flex-direction: column;
    padding: 40px 28px;
    gap: 36px;
    text-align: center;
  }
  .platform-pills,
  .download-btns { justify-content: center; }
  .download-meta { justify-content: center; }
}

/* ══════════════════════════════════════════
   SUPPORT / DONATION
══════════════════════════════════════════ */
#support { padding: 100px 0; }

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) {
  .support-grid { grid-template-columns: 1fr; }
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.support-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.support-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.support-desc {
  font-size: 0.85rem;
  color: var(--text3);
  margin-bottom: 24px;
  line-height: 1.6;
}

.crypto-list { display: flex; flex-direction: column; gap: 12px; }
.crypto-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.crypto-item:hover { border-color: var(--accent-line); }

.crypto-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 700;
}
.crypto-icon.btc  { background: rgba(247,147,26,0.15); color: #f7931a; }
.crypto-icon.eth  { background: rgba(98,126,234,0.15); color: #627eea; }
.crypto-icon.sol  { background: rgba(153,69,255,0.15); color: #9945ff; }
.crypto-icon.usdt { background: rgba(38,161,123,0.15); color: #26a17b; }

.crypto-info { flex: 1; min-width: 0; }
.crypto-name { font-size: 0.8rem; font-weight: 600; color: var(--text2); margin-bottom: 3px; }
.crypto-address {
  font-size: 0.7rem;
  color: var(--text4);
  font-family: 'JetBrains Mono', monospace;
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.5;
}
.crypto-placeholder {
  font-size: 0.7rem;
  color: var(--text4);
  font-style: italic;
  font-family: 'JetBrains Mono', monospace;
}

.copy-btn {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border2);
  color: var(--text3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.copy-btn:hover { color: var(--text); background: var(--bg-card-h); border-color: var(--border3); }

.donate-links { display: flex; flex-direction: column; gap: 12px; }
.only-ru { display: none; }
.only-en { display: flex; }
.donate-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s;
}
.donate-link:hover {
  background: var(--bg4);
  border-color: var(--accent-line);
  color: var(--text);
  transform: translateX(4px);
}
.donate-link-icon { font-size: 1.25rem; }
.donate-badge {
  margin-left: auto;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.donate-badge.soon { background: var(--accent-soft); color: #c090ff; }
.donate-badge.free { background: rgba(52,212,138,0.12); color: var(--green); }
.rk-amt-btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 7px 4px;
  border-radius: 7px;
  background: var(--bg5);
  border: 0.5px solid var(--border3);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s;
  box-sizing: border-box;
}
.rk-amt-btn:hover { background: var(--bg4); border-color: var(--accent-line); color: var(--text); }

/* ══════════════════════════════════════════
   LEGAL
══════════════════════════════════════════ */
.legal-section {
  padding: 80px 0;
  border-top: 1px solid var(--border2);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .legal-grid { grid-template-columns: 1fr; }
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s;
}
.legal-card:hover { border-color: var(--accent-line); }
.legal-card h3 { font-size: 0.95rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.legal-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.legal-card ul li {
  font-size: 0.84rem;
  color: var(--text3);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.legal-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text4);
}
.legal-more {
  font-size: 0.82rem;
  color: var(--accent2);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s, gap 0.2s;
}
.legal-more:hover { opacity: 0.75; gap: 9px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border2);
  padding: 44px 0;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-right: auto;
}
.footer-logo-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2a0a5e, #6a20b0);
}
.footer-logo-text { font-size: 0.9rem; font-weight: 700; color: var(--text3); }
.footer-links { display: flex; gap: 2px; flex-wrap: wrap; }
.footer-link {
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--text4);
  text-decoration: none;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.footer-link:hover { color: var(--text2); background: var(--bg-card); }
.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 0.78rem; color: var(--text4); }
.footer-domain { font-size: 0.76rem; color: var(--text4); }
.footer-domain a { color: var(--text4); text-decoration: none; }
.footer-domain a:hover { color: var(--text3); }

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-page { padding: 130px 0 90px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text3);
  text-decoration: none;
  margin-bottom: 28px;
  padding: 8px 14px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border2);
  transition: color 0.18s, border-color 0.18s;
}
.back-link:hover { color: var(--text); border-color: var(--border3); }

.legal-page-header {
  margin-bottom: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border2);
}
.legal-page-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px; }
.legal-updated { font-size: 0.82rem; color: var(--text4); }

.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 44px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-content h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border2);
}
.legal-content h3 { font-size: 0.97rem; font-weight: 600; color: var(--text2); margin: 24px 0 8px; }
.legal-content p  { font-size: 0.9rem; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { list-style: none; margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.legal-content ul li {
  font-size: 0.88rem;
  color: var(--text2);
  padding-left: 22px;
  position: relative;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.42rem;
  color: var(--accent2);
  top: 7px;
}
.legal-content a { color: var(--accent2); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-highlight {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.75;
}
.legal-highlight strong { color: var(--accent3); }
hr.legal-divider {
  border: none;
  border-top: 1px solid var(--border2);
  margin: 36px 0;
}

/* ══════════════════════════════════════════
   MISC / UTILITIES
══════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

::selection { background: rgba(134,50,240,0.3); color: var(--text); }

.text-muted { color: var(--text3); }
.monospace { font-family: 'JetBrains Mono', monospace; }

/* Fancy separator */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
  margin: 0;
}

/* Number badges */
.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent2);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PLATFORM DOWNLOAD TABS
══════════════════════════════════════════ */
.dl-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--bg3);
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
}

.dl-tab {
  padding: 8px 20px;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text4);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.dl-tab:hover { color: var(--text2); }
.dl-tab.active        { background: var(--bg-card-h); color: var(--text); border-color: var(--border2); }
.dl-tab.active.win    { color: var(--green); border-color: rgba(52,212,138,0.25); }
.dl-tab.active.lnx    { color: #f0a050; border-color: rgba(240,160,80,0.25); }
.dl-tab.active.mac    { color: var(--accent2); border-color: var(--accent-line); }

.dl-panel { display: none; }
.dl-panel.active { display: block; }

.dl-panel-desc {
  color: var(--text2);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Install steps (Windows) */
.dl-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border2);
}
.dl-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.5;
}
.dl-step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent2);
  flex-shrink: 0;
}

/* Linux format list */
.dl-format-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

.dl-format-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.2s, background 0.2s;
}
.dl-format-item:hover { border-color: var(--accent-line); background: var(--bg4); }

.dl-format-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.dl-format-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent2);
  border: 1px solid var(--accent-line);
}
.dl-format-distros {
  font-size: 0.8rem;
  color: var(--text3);
}
.dl-format-rec {
  font-size: 0.72rem;
  color: var(--green);
  margin-left: auto;
  font-weight: 700;
}

/* Terminal command block */
.dl-cmd {
  background: #080510;
  border: 1px solid var(--border2);
  border-radius: 9px;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 0.76rem;
  color: #80e8a0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.dl-cmd:hover { border-color: var(--border3); }
.dl-cmd-prompt { color: var(--text4); user-select: none; flex-shrink: 0; }
.dl-cmd-text   { flex: 1; word-break: break-all; line-height: 1.5; }
.dl-cmd-copy {
  cursor: pointer;
  color: var(--text4);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
  flex-shrink: 0;
  white-space: nowrap;
}
.dl-cmd-copy:hover { color: var(--text); background: rgba(255,255,255,0.1); }

.dl-format-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.dl-format-size {
  font-size: 0.76rem;
  color: var(--text4);
}

/* macOS coming-soon */
.dl-coming-soon {
  text-align: center;
  padding: 32px 16px 16px;
}
.dl-coming-soon .dl-soon-icon { font-size: 2.8rem; line-height: 1; }
.dl-coming-soon h3 { font-size: 1.05rem; margin: 16px 0 8px; }
.dl-coming-soon p  { color: var(--text3); font-size: 0.88rem; line-height: 1.65; max-width: 340px; margin: 0 auto; }

/* ══════════════════════════════════════════
   RESPONSIVE MOBILE
══════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --radius: 12px; --radius-sm: 8px; }
  h1 { font-size: clamp(1.65rem, 8vw, 2.4rem); }
  .btn-lg { padding: 14px 28px; font-size: 0.97rem; }
  .ai-callout-card { padding: 36px 20px; }
  .download-card { padding: 32px 20px; }
  .support-card { padding: 24px 16px; overflow: hidden; }
  .donate-link { overflow: hidden; }
  .donate-links { width: 100%; }
  .legal-card { padding: 22px 16px; }
  .feat-split { padding: 48px 0; }
  .sec-header { margin-bottom: 48px; }
}
