/* ===== Devaron website — theme tokens ===== */
:root {
  --accent: #7c5cfc;
  --accent-2: #9d86ff;
  --accent-grad: linear-gradient(120deg, #7c5cfc, #a779ff 55%, #5cc8ff);
  /* Lively rainbow used by .grad (animated) and the Donate button */
  --rainbow: linear-gradient(90deg, #ff3d6e, #ff7a18, #ffd23f, #2ee86e, #1fb6ff, #6a5cff, #c948ff, #ff3d6e);
  --radius: 14px;
  --maxw: 1120px;
  --nav-h: 64px;
  --font: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
[data-theme="dark"] {
  --bg: #0d0d13;
  --bg-soft: #13131c;
  --surface: #16161f;
  --card: #1a1a26;
  --card-2: #20202e;
  --text: #e9e9f1;
  --muted: #9b9bb2;
  --stroke: #2a2a3a;
  --shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  --nav-bg: rgba(13,13,19,.72);
  --accent-text: #9d86ff;
}
[data-theme="light"] {
  --bg: #f6f6fb;
  --bg-soft: #eeeef6;
  --surface: #ffffff;
  --card: #ffffff;
  --card-2: #f3f3fa;
  --text: #181822;
  --muted: #5b5b73;
  --stroke: #e7e7f1;
  --shadow: 0 24px 50px -22px rgba(40,30,90,.25);
  --nav-bg: rgba(255,255,255,.78);
  --accent-text: #6a45d8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -.02em; }
img { display: block; }
section { scroll-margin-top: 84px; }

/* ===== Animated rainbow gradient text ===== */
.grad {
  background: var(--rainbow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbow-flow 7s linear infinite;
}
@keyframes rainbow-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .grad { animation: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 15px; cursor: pointer;
  border-radius: 11px; padding: 12px 20px; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s, border-color .2s, filter .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #7050e6; color: #fff; box-shadow: 0 8px 24px -8px rgba(124,92,252,.7); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--stroke); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 14px; font-size: 14px; border-radius: 9px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* Donate button — animated rainbow background, white bold text */
.btn-donate {
  color: #fff;
  font-weight: 700;
  border: none;
  background: var(--rainbow);
  background-size: 300% 100%;
  animation: rainbow-flow 7s linear infinite;
  box-shadow: 0 8px 24px -10px rgba(201,72,255,.65);
}
.btn-donate:hover { filter: brightness(1.07) saturate(1.1); }
@media (prefers-reduced-motion: reduce) { .btn-donate { animation: none; } }

/* Brand-colored pay buttons inside the modal */
.btn-pay { background: var(--pay, var(--accent)); color: #fff; align-self: flex-start; }
.btn-pay:hover { filter: brightness(1.08); }

/* ===== Download buttons (OS + arch dropdown) ===== */
.dl-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 8px 0 18px; }
.dl-split { position: relative; display: inline-flex; }
.dl-main { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.dl-caret {
  padding-left: 12px; padding-right: 12px;
  border-top-left-radius: 0; border-bottom-left-radius: 0;
  border-left: 1px solid rgba(255,255,255,.28);
}
/* Reserve icon box before the web component upgrades (deferred) so deferring it causes no layout shift */
iconify-icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; }
.dl-caret iconify-icon { transition: transform .2s; font-size: 18px; }
.dl-split.open .dl-caret iconify-icon { transform: rotate(180deg); }
.dl-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 100%;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: 12px;
  box-shadow: var(--shadow); padding: 6px; z-index: 20; text-align: left;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.dl-split.open .dl-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dl-opt {
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 10px 12px; border-radius: 8px; color: var(--text); font-size: 14px; font-weight: 500;
}
.dl-opt:hover { background: var(--card-2); }
.dl-opt iconify-icon { color: var(--muted); font-size: 17px; }
.dl-main iconify-icon, .dl-os iconify-icon { font-size: 19px; }
.is-disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
.soon-pill {
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 16%, transparent);
  border-radius: 999px; padding: 2px 8px; margin-left: auto;
}
.dl-os .soon-pill { margin-left: 4px; }

/* ===== Header / nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px;
  min-height: var(--nav-h);
  padding: 12px max(20px, calc((100vw - var(--maxw)) / 2));
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled {
  background: var(--nav-bg); backdrop-filter: blur(14px);
  border-bottom-color: var(--stroke);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { border-radius: 8px; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 22px; margin-left: 8px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-actions .btn-donate { height: 38px; padding: 0 20px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
  background: var(--card-2); border: 1px solid var(--stroke); color: var(--text);
  font-weight: 700; font-size: 13px; transition: border-color .2s, color .2s;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.ico-moon { display: none; }
[data-theme="dark"] .ico-sun { display: none; }
[data-theme="dark"] .ico-moon { display: block; }

/* ===== Language switcher ===== */
.lang-switch { position: relative; }
.lang-btn { width: auto; gap: 7px; padding: 0 10px; }
.lang-btn .fi { width: 20px; height: 15px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.lang-code { font-size: 13px; font-weight: 700; letter-spacing: .03em; }
.lang-caret { opacity: .7; transition: transform .2s; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 190px; margin: 0; padding: 6px; list-style: none;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: 12px;
  box-shadow: var(--shadow); z-index: 60;
  opacity: 0; transform: translateY(-6px) scale(.98); pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.lang-switch.open .lang-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-opt {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 11px; border: none; background: none; cursor: pointer;
  color: var(--text); font: inherit; font-size: 14px; border-radius: 8px; text-align: left;
}
.lang-opt:hover { background: var(--card-2); }
.lang-opt .fi { width: 22px; height: 16px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); flex: none; }
.lang-opt[aria-selected="true"] { color: var(--accent); font-weight: 700; }
.lang-opt .check { margin-left: auto; opacity: 0; }
.lang-opt[aria-selected="true"] .check { opacity: 1; }

/* ===== Hero — sized to the viewport, no scroll caused by the hero ===== */
.hero {
  position: relative;
  /* full-bleed: the background glow reaches the screen edges; content stays
     centered at --maxw via the horizontal padding (fixes the "cut-off" glow). */
  width: 100vw; margin-left: calc(50% - 50vw);
  min-height: calc(100vh - var(--nav-h));
  padding: 40px max(20px, calc((100vw - var(--maxw)) / 2));
  display: grid; grid-template-columns: 0.92fr 1.3fr; gap: 44px; align-items: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background:
    radial-gradient(40% 50% at 22% 30%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 70%),
    radial-gradient(38% 48% at 82% 65%, rgba(92,200,255,.28), transparent 70%),
    radial-gradient(36% 44% at 60% 18%, rgba(201,72,255,.22), transparent 70%);
  filter: blur(8px); pointer-events: none; z-index: 0;
  animation: glow-drift 16s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(2%, -3%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }
.hero-text, .carousel { position: relative; z-index: 1; }
.pill {
  display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; }
.lead { font-size: 18px; color: var(--muted); margin: 20px 0 28px; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.badges { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.badge { font-size: 13.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.badge::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* ===== Hero carousel ===== */
.carousel {
  display: flex; flex-direction: column; gap: 14px;
  animation: float-soft 7s ease-in-out infinite;
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .carousel { animation: none; } }
.carousel-frame {
  border: 2px solid transparent; border-radius: 16px; overflow: hidden;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--rainbow) border-box;
  background-size: 100% 100%, 300% 100%;
  box-shadow: var(--shadow), 0 0 36px -10px rgba(124, 92, 252, .45);
  animation: rainbow-flow 7s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .carousel-frame { animation: none; } }
.carousel-track {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--card-2);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateX(18px) scale(.99);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* Graceful placeholder when an image is missing/fails to load */
.slide .slide-ph {
  position: absolute; inset: 0; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--muted); font-weight: 600; font-size: 15px; letter-spacing: .02em;
  background: repeating-linear-gradient(45deg, var(--card-2), var(--card-2) 12px, var(--card) 12px, var(--card) 24px);
}
.slide .slide-ph iconify-icon { font-size: 30px; }
.slide.noimg img { display: none; }
.slide.noimg .slide-ph { display: flex; }
.carousel-dots { display: flex; justify-content: center; gap: 3px; }
.dot {
  width: 24px; height: 24px; padding: 0; border: none; background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.dot::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--stroke);
  transition: background .2s, width .2s, border-radius .2s;
}
.dot:hover::before { background: var(--muted); }
.dot.active::before { background: var(--accent); width: 22px; border-radius: 5px; }

/* Clickable to open the lightbox */
.carousel-track { cursor: zoom-in; }

/* ===== Gallery lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.open { visibility: visible; opacity: 1; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(5,5,12,.88); backdrop-filter: blur(6px); }
.lb-figure {
  position: relative; z-index: 1; margin: 0; max-width: min(1100px, 92vw);
  display: flex; flex-direction: column; gap: 12px;
}
.lb-stage {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); background: #14141c;
}
.lb-stage img { display: block; max-width: 100%; max-height: 80vh; object-fit: contain; margin: 0 auto; }
.lb-ph {
  display: none; align-items: center; justify-content: center; padding: 90px; color: var(--muted);
  background: repeating-linear-gradient(45deg, #1a1a26, #1a1a26 12px, #20202e 12px, #20202e 24px);
}
.lb-ph iconify-icon { font-size: 56px; }
.lightbox.noimg .lb-stage img { display: none; }
.lightbox.noimg .lb-ph { display: flex; }
.lb-figure figcaption { text-align: center; color: #e9e9f1; font-size: 14.5px; font-weight: 600; }
.lb-btn {
  position: relative; z-index: 2; flex: none; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 24px;
  transition: background .2s ease, transform .15s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-prev { margin-right: 16px; }
.lb-next { margin-left: 16px; }
.lb-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; font-size: 20px; }
@media (max-width: 640px) {
  .lb-prev { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); margin: 0; }
  .lb-next { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); margin: 0; }
  .lb-btn { width: 42px; height: 42px; font-size: 22px; }
  .lightbox { padding: 16px; }
}

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 72px 20px; }
.section-alt { background: var(--bg-soft); max-width: none; }
.section-alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.section-title { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; text-align: center; margin-bottom: 26px; }
.section-title:has(+ .section-sub) { margin-bottom: 0; }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; margin: 12px auto 40px; max-width: 640px; }
.intro { max-width: 820px; margin: 0 auto; padding: 8px 20px 0; text-align: center; }
.intro p { font-size: 19px; color: var(--muted); }
.intro strong { color: var(--text); }
.muted { color: var(--muted); }
.small { font-size: 13.5px; }

/* ===== Feature grid ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 18px; }
.feat {
  background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius);
  padding: 24px; transition: transform .15s ease, border-color .2s;
}
.feat:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 45%, var(--stroke)); }
.feat-ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 13%, transparent);
}
.feat-star .feat-ico { background: color-mix(in srgb, var(--accent) 20%, transparent); }
.feat h3 { font-size: 17.5px; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 14.5px; margin: 0; }
.feat-star { border-color: color-mix(in srgb, var(--accent) 40%, var(--stroke)); background: color-mix(in srgb, var(--accent) 6%, var(--card)); }

/* ===== Why grid ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.why-item {
  background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius);
  padding: 22px; transition: transform .15s ease, border-color .2s;
}
.why-item:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 45%, var(--stroke)); }
.why-ico {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 13%, transparent);
}
.why-item h3 { font-size: 17px; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ===== Spec table — what's included (simple, responsive) ===== */
.spec-card {
  max-width: 680px; margin: 0 auto;
  border: 1px solid var(--stroke); border-radius: 16px; overflow: hidden;
  background: var(--card); box-shadow: var(--shadow);
}
.spec-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 22px; border-bottom: 1px solid var(--stroke);
  transition: background .15s ease;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.spec-feature { font-size: 15px; color: var(--text); font-weight: 500; line-height: 1.35; }
.spec-check { color: #2ea043; font-size: 22px; flex: none; }
.spec-price { color: var(--accent-text); font-weight: 700; font-size: 15px; flex: none; }
@media (max-width: 460px) {
  .spec-row { padding: 13px 16px; }
  .spec-feature { font-size: 14px; }
}

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--card); border: 1px solid var(--stroke); border-radius: 12px; padding: 2px 20px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.faq details:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--stroke)); }
.faq details[open] {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--stroke));
  background: color-mix(in srgb, var(--accent) 5%, var(--card)); box-shadow: var(--shadow);
}
.faq summary {
  list-style: none; cursor: pointer; font-weight: 600; font-size: 16px; padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--accent); font-size: 20px; flex: none; transition: transform .25s ease; }
.faq details[open] .faq-chevron { transform: rotate(180deg); }
.faq p { color: var(--muted); margin: 0 0 16px; font-size: 14.5px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--stroke); background: var(--bg-soft); padding: 44px 20px; }
.footer-in { max-width: var(--maxw); margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer .brand { justify-content: center; }
.footer-actions { display: flex; gap: 10px; align-items: center; color: var(--muted); margin-top: 4px; }
.link-btn { background: none; border: none; color: var(--accent-text); cursor: pointer; font: inherit; font-size: 14px; font-weight: 600; padding: 0; }
.link-btn:hover { text-decoration: underline; }
.footer-maker a { color: var(--accent-text); font-weight: 600; }
.footer-maker a:hover { text-decoration: underline; }

/* ===== Donate modal ===== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease;
}
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,5,12,.6); backdrop-filter: blur(4px); }
.modal-box {
  position: relative; width: min(440px, 100%);
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: 18px;
  box-shadow: var(--shadow); padding: 28px 26px 26px;
  transform: translateY(12px) scale(.98); transition: transform .2s ease;
}
.modal.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 9px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--card-2); border: 1px solid var(--stroke); color: var(--muted);
  transition: color .2s, border-color .2s;
}
.modal-close:hover { color: var(--text); border-color: var(--accent); }
.modal-title { font-size: 24px; font-weight: 800; padding-right: 32px; }
.modal-sub { color: var(--muted); font-size: 14.5px; margin: 8px 0 22px; }
.donate-method {
  background: var(--card); border: 1px solid var(--stroke); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.donate-method:last-child { margin-bottom: 0; }
.donate-head { display: flex; align-items: center; gap: 10px; }
.donate-badge { color: #fff; width: 34px; height: 34px; border-radius: 9px; flex: none; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.donate-label { font-weight: 600; font-size: 14.5px; }
.donate-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-soft); border: 1px solid var(--stroke); border-radius: 9px;
  padding: 8px 10px;
}
.donate-value {
  flex: 1; min-width: 0; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.donate-addr { font-size: 12px; }
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px; flex: none; cursor: pointer;
  background: var(--card-2); border: 1px solid var(--stroke); color: var(--text);
  border-radius: 8px; padding: 6px 11px; font: inherit; font-size: 13px; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.copy-btn.copied { border-color: #2ea043; color: #2ea043; background: color-mix(in srgb, #2ea043 12%, transparent); }
.copy-ico { font-size: 14px; line-height: 1; }

/* ===== Responsive ===== */
/* (Comparison is now a simple spec table — see .spec-* above; no per-breakpoint hacks needed.) */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr; gap: 30px;
    min-height: auto; padding: 40px 20px 56px; text-align: center;
  }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .badges { justify-content: center; }
  .carousel { max-width: 680px; margin: 0 auto; width: 100%; }
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .nav { gap: 10px; padding: 10px 16px; }
  .nav-actions { gap: 7px; }
  .btn-sm { padding: 7px 11px; }
  .section { padding: 54px 18px; }
  .hero h1 { font-size: 33px; }
  .lang-code { display: none; }
  .lang-btn { padding: 0 8px; }
}
