/* ═══════════════════════════════════════════════════════════════
   itjuhtimine.ee — shared design system (v1 navy + cyan)
═══════════════════════════════════════════════════════════════ */
:root {
  --bg:           #06101F;
  --bg-2:         #0A1628;
  --bg-3:         #1A2A4A;
  --line:         rgba(255,255,255,0.08);
  --line-2:       rgba(255,255,255,0.14);
  --ink:          #F4F7FB;
  --ink-2:        #94A3B8;
  --ink-3:        #5B6B85;
  --cyan:         #00B4D8;
  --cyan-2:       #38D6F2;
  --cyan-deep:    #0077B6;
  --orange:       #FF6B35;
  --orange-glow:  rgba(255,107,53,0.18);
  --cyan-glow:    rgba(0,180,216,0.18);

  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --max:    1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  font-feature-settings: "ss01","ss02";
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.mono {
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

h1,h2,h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
h2 { font-size: clamp(34px, 5vw, 68px); font-weight: 500; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; text-wrap: pretty; }

.accent { color: var(--cyan); font-style: italic; font-weight: 400; }
em.accent { font-style: italic; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan); }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

/* ── Background atmosphere ───────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 0%, transparent 70%);
}
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.5;
  mix-blend-mode: overlay; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.8  0 0 0 0 0.8  0 0 0 0 0.8  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(6,16,31,0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.brand-mark { width: 30px; height: 30px; position: relative; flex: 0 0 30px; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; inset: 0; border: 1.5px solid var(--cyan); border-radius: 4px; }
.brand-mark::before { background: linear-gradient(135deg, var(--cyan) 0%, transparent 50%); opacity: 0.4; }
.brand-mark::after { transform: rotate(45deg); border-color: var(--cyan-2); }
.brand-mark span { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--ink); z-index: 2; }
.nav-meta { display: flex; align-items: center; gap: 26px; color: var(--ink-2); }
.nav-meta a { transition: color .2s; }
.nav-meta a:hover, .nav-meta a.active { color: var(--ink); }
.nav-meta a.active { color: var(--cyan); }
.nav-cta { margin-left: 6px; padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 4px; color: var(--ink) !important; display: inline-flex; align-items: center; gap: 8px; transition: all .25s ease; }
.nav-cta:hover { background: var(--cyan); border-color: var(--cyan); color: #001520 !important; }
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav-meta { position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(6,16,31,0.97); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px; transform: translateY(-120%); transition: transform .3s ease; }
  .nav-meta.open { transform: translateY(0); }
  .nav-meta a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-cta { margin: 12px 0 0; justify-content: center; padding: 14px; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
  .nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: .2s; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border-radius: 4px; font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -0.005em; line-height: 1; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; white-space: nowrap; }
.btn-primary { background: var(--cyan); color: #001520; border: 1px solid var(--cyan); }
.btn-primary:hover { background: var(--cyan-2); box-shadow: 0 0 0 6px var(--cyan-glow); transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,0.04); }
.btn-orange { background: var(--orange); border: 1px solid var(--orange); color: #1a0500; }
.btn-orange:hover { background: #ff8359; box-shadow: 0 0 0 6px var(--orange-glow); }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Section chrome ──────────────────────────────────────────── */
section { position: relative; z-index: 2; }
.section-head { display: flex; align-items: baseline; gap: 16px; color: var(--ink-2); margin-bottom: 28px; }
.section-num { color: var(--cyan); }
.section-rule { flex: 1; height: 1px; background: var(--line); }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero { padding-top: clamp(60px, 8vw, 110px); padding-bottom: clamp(40px, 5vw, 72px); position: relative; overflow: hidden; }
.page-hero .eyebrow { margin-bottom: 26px; }
.page-hero h1 { font-size: clamp(44px, 7vw, 104px); font-weight: 500; letter-spacing: -0.04em; line-height: 0.96; }
.page-hero h1 em { color: var(--cyan); font-style: italic; font-weight: 400; }
.page-hero .lede { color: var(--ink-2); font-size: clamp(18px, 1.5vw, 22px); max-width: 56ch; margin-top: 28px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: var(--ink-3); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: 0.5; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { padding-block: 56px; color: var(--ink-2); border-top: 1px solid var(--line); margin-top: clamp(60px, 8vw, 120px); position: relative; z-index: 2; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px 0; font-weight: 500; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { transition: color .2s; }
.foot-grid a:hover { color: var(--ink); }
.foot-end { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-3); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Reveal ──────────────────────────────────────────────────────
   Content is visible by DEFAULT (robust if JS/transitions don't run).
   The hidden→visible enhancement only applies once JS adds `js-anim`
   to <html>, and is fully disabled under reduced-motion. */
.reveal { opacity: 1; transform: none; }
html.js-anim .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
html.js-anim .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Service / feature cards (shared) ────────────────────────── */
.card-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--bg); padding: 32px; display: flex; flex-direction: column; gap: 18px; position: relative; transition: background .25s ease; }
.card:hover { background: #08152A; }
.card .corner-mark { position: absolute; top: 18px; right: 18px; font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.08em; }
.card .c-num { font-family: var(--mono); color: var(--ink-3); font-size: 11px; letter-spacing: 0.08em; }
.card h3 { margin-top: auto; padding-top: 24px; }
.card ul { list-style: none; padding: 0; margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.card li { padding: 8px 0; border-bottom: 1px dashed var(--line); display: flex; align-items: center; gap: 10px; }
.card li:last-child { border-bottom: 0; }
.card li::before { content: ""; width: 6px; height: 1px; background: var(--cyan); flex: 0 0 6px; }
.card.featured { background: radial-gradient(ellipse 80% 100% at 100% 0%, rgba(255,107,53,0.10), transparent 60%), #08152A; border-top: 1px solid rgba(255,107,53,0.30); }
.card.featured .c-num, .card.featured .corner-mark { color: var(--orange); }
.card.featured li::before { background: var(--orange); }

/* ── Pricing ─────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price { border: 1px solid var(--line); border-radius: 8px; padding: 36px; background: rgba(255,255,255,0.01); display: flex; flex-direction: column; gap: 20px; position: relative; }
.price.highlight { border-color: rgba(0,180,216,0.4); background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0,180,216,0.10), transparent 60%), rgba(255,255,255,0.01); }
.price .badge { position: absolute; top: 24px; right: 24px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--cyan); padding: 5px 10px; border: 1px solid rgba(0,180,216,0.3); border-radius: 100px; }
.price .tier { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.price .amount { font-size: clamp(40px, 4vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.price .amount .per { color: var(--ink-3); font-size: 16px; letter-spacing: -0.01em; margin-left: 4px; }
.price .desc { color: var(--ink-2); font-size: 15px; }
.price ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; color: var(--ink); font-size: 15px; }
.price li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.price li .ok { color: var(--cyan); }
.price .btn { margin-top: auto; justify-content: center; }

/* ── Content blocks (roadmap / about / article) ──────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.checklist { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.checklist li { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 24px 1fr; gap: 16px; align-items: center; color: var(--ink); font-size: 17px; }
.checklist .ck { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--cyan); display: grid; place-items: center; color: var(--cyan); font-size: 11px; }

.callout { border: 1px solid var(--line-2); border-radius: 8px; padding: clamp(28px, 4vw, 48px); background: radial-gradient(ellipse 60% 100% at 100% 0%, rgba(0,180,216,0.08), transparent 60%), rgba(255,255,255,0.01); }
.callout.orange { background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(255,107,53,0.12), transparent 60%), rgba(255,255,255,0.01); border-color: rgba(255,107,53,0.25); }

/* funding figures */
.figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
@media (max-width: 700px) { .figures { grid-template-columns: 1fr; } }
.figure { background: var(--bg); padding: 32px; }
.figure .big { font-size: clamp(36px, 4vw, 56px); font-weight: 500; letter-spacing: -0.03em; color: var(--cyan-2); line-height: 1; }
.figure .cap { color: var(--ink-2); font-size: 14px; margin-top: 10px; }
.figure .sub { color: var(--ink-3); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; margin-top: 6px; }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band { padding-block: clamp(80px, 10vw, 140px); text-align: center; position: relative; overflow: hidden; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,180,216,0.16), transparent 60%); border-top: 1px solid var(--line); }
.cta-band h2 { font-size: clamp(40px, 7vw, 104px); font-weight: 400; line-height: 0.96; letter-spacing: -0.04em; max-width: 16ch; margin: 0 auto; }
.cta-band h2 em { font-style: italic; color: var(--cyan); }
.cta-band .lede { color: var(--ink-2); margin-top: 26px; font-size: clamp(17px,1.4vw,21px); max-width: 54ch; margin-inline: auto; }
.cta-band .actions { margin-top: 36px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Blog list ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }
.post { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.01); display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease; }
.post:hover { border-color: var(--line-2); transform: translateY(-2px); }
.post-img { aspect-ratio: 16/10; position: relative; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #0B1A2E, #1A2A4A); overflow: hidden; }
.post-img[data-pat="a"] { background-image: linear-gradient(135deg, transparent 48%, rgba(0,180,216,0.20) 49%, rgba(0,180,216,0.20) 51%, transparent 52%), linear-gradient(135deg, transparent 48%, rgba(0,180,216,0.10) 49%, rgba(0,180,216,0.10) 51%, transparent 52%), linear-gradient(135deg, #0B1A2E, #1A2A4A); background-size: 24px 24px, 48px 48px, 100% 100%; }
.post-img[data-pat="b"] { background-image: radial-gradient(circle at 30% 40%, rgba(0,180,216,0.32) 0%, transparent 30%), radial-gradient(circle at 70% 70%, rgba(255,107,53,0.20) 0%, transparent 30%), linear-gradient(180deg, #0B1A2E, #06101F); }
.post-img[data-pat="c"] { background-image: linear-gradient(0deg, rgba(0,180,216,0.20) 1px, transparent 1px), linear-gradient(90deg, rgba(0,180,216,0.20) 1px, transparent 1px), linear-gradient(180deg, #0B1A2E, #06101F); background-size: 16px 16px, 16px 16px, 100% 100%; }
.post-img[data-pat="d"] { background-image: radial-gradient(circle at 50% 50%, rgba(0,180,216,0.25) 0%, transparent 45%), repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,0.04) 18px 19px), linear-gradient(180deg, #0B1A2E, #06101F); }
.post-img::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(6,16,31,0.7), transparent); }
.post-glyph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 500; font-size: 80px; letter-spacing: -0.04em; color: var(--ink); opacity: 0.92; mix-blend-mode: screen; }
.post-glyph em { font-style: italic; font-weight: 400; color: var(--cyan-2); }
.post-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.post-meta { padding: 16px 22px 0 22px; display: flex; justify-content: space-between; color: var(--ink-3); gap: 12px; }
.post h3 { padding: 12px 22px 16px 22px; font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.post-foot { padding: 14px 22px 18px 22px; margin-top: auto; color: var(--ink-2); border-top: 1px dashed var(--line); display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.post-foot .arrow { transition: transform .2s ease; }
.post:hover .arrow { transform: translateX(3px); color: var(--cyan); }
.empty-state { border: 1px dashed var(--line-2); border-radius: 8px; padding: 56px; text-align: center; color: var(--ink-2); }

/* ── Article ─────────────────────────────────────────────────── */
.article { max-width: 760px; margin: 0 auto; }
.article-cover { aspect-ratio: 21/9; border-radius: 10px; border: 1px solid var(--line); margin-bottom: 40px; position: relative; overflow: hidden; }
.article-body { font-size: 19px; line-height: 1.7; color: #D6DEEA; }
.article-body h2 { font-size: clamp(28px, 3vw, 40px); margin: 48px 0 18px; color: var(--ink); }
.article-body h3 { font-size: 24px; margin: 36px 0 14px; color: var(--ink); }
.article-body p { margin: 0 0 22px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; color: #C4CEDC; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { margin: 28px 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--cyan); color: var(--ink); font-style: italic; }
.article-body code { font-family: var(--mono); font-size: 0.85em; background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; }
.article-body img { border-radius: 8px; border: 1px solid var(--line); margin: 24px 0; }
.article-body strong { color: var(--ink); }

/* ── Forms / Admin ───────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.field .hint { color: var(--ink-3); font-size: 12px; }
.input, .textarea, .select { width: 100%; background: rgba(255,255,255,0.02); border: 1px solid var(--line-2); border-radius: 6px; color: var(--ink); font-family: var(--display); font-size: 15px; padding: 12px 14px; transition: border-color .2s; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--cyan); }
.textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.textarea.body { min-height: 360px; font-family: var(--mono); font-size: 13px; }
.select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.select option, .select optgroup { background: #0A1628; color: #F4F7FB; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px){ .row-2 { grid-template-columns: 1fr; } }
.toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.toolbar button { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; padding: 6px 10px; border: 1px solid var(--line-2); border-radius: 4px; color: var(--ink-2); transition: .2s; }
.toolbar button:hover { color: var(--ink); border-color: var(--ink-2); }

.admin-shell { display: grid; grid-template-columns: 340px 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; min-height: 600px; }
@media (max-width: 900px) { .admin-shell { grid-template-columns: 1fr; } }
.admin-list { background: var(--bg); padding: 20px; }
.admin-editor { background: var(--bg-2); padding: clamp(20px, 3vw, 36px); }
.admin-item { padding: 14px 14px; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; cursor: pointer; transition: .2s; display: flex; flex-direction: column; gap: 6px; }
.admin-item:hover { border-color: var(--line-2); background: rgba(255,255,255,0.02); }
.admin-item.active { border-color: var(--cyan); background: rgba(0,180,216,0.06); }
.admin-item .t { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.admin-item .m { color: var(--ink-3); font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; display: flex; gap: 8px; }
.badge-status { font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; }
.badge-status.pub { color: var(--cyan); background: rgba(0,180,216,0.1); }
.badge-status.draft { color: var(--orange); background: rgba(255,107,53,0.1); }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--cyan); color: #001520; padding: 14px 22px; border-radius: 6px; font-weight: 600; font-size: 14px; z-index: 200; transition: transform .3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.toast.show { transform: translateX(-50%) translateY(0); }
.tag-pill { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(0,180,216,0.3); border-radius: 100px; padding: 5px 12px; }

/* ── Image slots (fillable placeholders) ─────────────────────── */
.img-slot { position: relative; }
.img-slot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; z-index: 3; }
.img-slot.img-slot-filled .img-slot-img { display: block; }
.img-slot.img-slot-drag { outline: 2px dashed var(--cyan); outline-offset: -6px; }
.img-slot-ctrl { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 6; display: flex; gap: 8px; opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.img-slot:hover .img-slot-ctrl, .img-slot.img-slot-drag .img-slot-ctrl { opacity: 1; pointer-events: auto; }
.img-slot-add, .img-slot-remove { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 9px 14px; border-radius: 100px; border: 1px solid var(--line-2); background: rgba(6,16,31,0.82); backdrop-filter: blur(8px); color: var(--ink); transition: .2s; }
.img-slot-add:hover { background: var(--cyan); color: #001520; border-color: var(--cyan); }
.img-slot-remove { display: none; width: 34px; padding: 9px 0; }
.img-slot.img-slot-filled .img-slot-remove { display: inline-block; }
.img-slot.img-slot-filled .img-slot-remove:hover { background: var(--orange); color: #1a0500; border-color: var(--orange); }
