/* ============================================================
   Mantyger — Unified CSS (CLEAN)
   Dark + gold • responsive • consistent spacing
   Header rebuilt: clear hierarchy + language pill + CTA
   Modal: single source of truth
============================================================ */

/* =========================
   Tokens
========================= */
:root{
  --bg:#0B0F14;
  --surface:#0F141B;
  --surface2:#0D1218;

  --text:#E6EAF0;
  --muted:#97A3B6;

  --border:rgba(255,255,255,.08);

  --gold:#D4AF37;
  --gold2:#F4D77B;

  --shadow:0 0 0 1px rgba(255,255,255,.06), 0 16px 42px rgba(0,0,0,.45);
  --shadow2:0 18px 55px rgba(0,0,0,.55);

  --radius:16px;
  --radius2:22px;

  --max:1100px;

  /* Header */
  --headerH:80px;
}

/* =========================
   Base / Reset
========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html, body{ overflow-x:hidden; }

body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(244,215,123,.12), transparent 60%),
    radial-gradient(900px 600px at 60% 120%, rgba(212,175,55,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a.link{ color:var(--gold2); }
a.link:hover{ text-decoration:underline; text-underline-offset:3px; }

p{ margin:0 0 14px 0; }
h1,h2,h3,h4{ margin:0 0 10px 0; line-height:1.15; letter-spacing:-.4px; }
h1{ font-size:44px; letter-spacing:-1.1px; }
h2{ font-size:34px; letter-spacing:-.7px; }
h3{ font-size:18px; letter-spacing:-.2px; }
h4{ font-size:14px; letter-spacing:-.1px; }

.container{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; }

.muted{ color:var(--muted); }
.tiny{ font-size:12px; }
.fineprint{ font-size:13px; color:var(--muted); }
.mt{ margin-top:18px; }
.center{ text-align:center; }

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

:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(244,215,123,.14);
  border-radius:12px;
}

section[id]{ scroll-margin-top: calc(var(--headerH) + 18px); }

/* =========================
   Skip link
========================= */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:rgba(11,15,20,.92);
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:10px;
  z-index:999;
}
.skip-link:focus{ left:10px; }

/* =========================
   Header / Nav (PRO)
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,15,20,.78);
  border-bottom:1px solid var(--border);
}

.header-inner{
  height:var(--headerH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 10px;
  border-radius:12px;
}
.brand:hover{ background:rgba(255,255,255,.04); }

.brand-logo{
  height:54px;
  width:auto;
  max-width:320px;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.45));
}
.brand-logo--sm{
  height:44px;
  width:auto;
  max-width:260px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-text strong{
  font-size:13px;
  letter-spacing:.8px;
}
.brand-text em{
  font-style:normal;
  font-size:11px;
  color:var(--muted);
  opacity:.95;
}
.brand-text--sm strong{ font-size:13px; }
.brand-text--sm em{ font-size:11px; }

.site-nav{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}

/* hamburger */
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.nav-toggle:hover{ background:rgba(255,255,255,.05); }

.bars{
  display:block;
  width:18px; height:12px;
  position:relative;
}
.bars::before,
.bars::after{
  content:"";
  position:absolute; left:0; right:0;
  height:2px; border-radius:2px;
  background:var(--text);
  transition: transform .14s ease, top .14s ease, bottom .14s ease;
}
.bars::before{ top:1px; }
.bars::after{ bottom:1px; }

.nav-menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:6px;
  margin:0;
  padding:0;
}

/* nav links (not buttons) */
.nav-menu a:not(.btn){
  height:42px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:13px;
  color:rgba(151,163,182,.95);
  white-space:nowrap;
}
.nav-menu a:not(.btn):hover{
  color:rgba(230,234,240,.98);
  background:rgba(255,255,255,.045);
}

/* Right actions (desktop) */
.nav-actions{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding-left:10px;
  margin-left:6px;
  border-left:1px solid rgba(255,255,255,.06);
}

/* Language segmented control */
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:3px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.lang-switch .lang{
  height:34px;
  padding:0 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:rgba(151,163,182,.95);
  line-height:1;
}
.lang-switch .lang:hover{ color:rgba(230,234,240,.98); }
.lang-switch .lang[aria-current="page"]{
  color:rgba(230,234,240,.98);
  border:1px solid rgba(244,215,123,.28);
  background: linear-gradient(180deg, rgba(244,215,123,.16), rgba(212,175,55,.08));
}

/* CTA (header) */
.nav-cta{
  white-space:nowrap;
  padding:11px 16px;
}

/* mobile-only list items inside menu */
.nav-mobile-only{ display:none; }

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.35);
  background: linear-gradient(180deg, rgba(244,215,123,.22), rgba(212,175,55,.12));
  color:var(--text);
  box-shadow:0 10px 24px rgba(0,0,0,.35);
  font-weight:650;
  line-height:1.25;
  min-height:44px;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(244,215,123,.55);
  box-shadow:0 14px 30px rgba(0,0,0,.45);
}
.btn:active{ transform: translateY(0px); }

.btn--gold{
  border-color: rgba(244,215,123,.45);
  background: linear-gradient(180deg, rgba(244,215,123,.26), rgba(212,175,55,.14));
}
.btn--ghost{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  box-shadow:none;
}
.btn--ghost:hover{
  border-color: rgba(212,175,55,.35);
  background:rgba(255,255,255,.06);
}
.btn--sm{
  padding:12px 18px;
  border-radius:12px;
  font-size:13px;
  min-height:40px;
  line-height:1.25;
}
.btn--block{ width:100%; }

/* link-like button */
button.link-btn{
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  color:var(--gold2);
  font:inherit;
}
button.link-btn:hover{ text-decoration:underline; text-underline-offset:3px; }

/* =========================
   Sections / Layout
========================= */
.section{ padding:72px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:28px;
}

/* =========================
   Hero
========================= */
.hero{ padding-top:34px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
}

.eyebrow{
  margin:0 0 14px 0;
  font-size:13px;
  color:var(--muted);
  letter-spacing:.2px;
}
.lead{
  margin:0 0 18px 0;
  font-size:17px;
  color:rgba(230,234,240,.92);
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 18px 0;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}

.pill{
  display:inline-flex;
  padding:7px 12px;
  line-height:1.1;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  font-size:13px;
}
.pill--sm{ padding:6px 10px; font-size:11px; }

.hero-card{ position:relative; }

.card{
  border:1px solid rgba(212,175,55,.20);
  background: linear-gradient(180deg, rgba(15,20,27,.92), rgba(13,18,24,.92));
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:18px;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.checklist li{
  padding-left:36px;
  position:relative;
  color:rgba(230,234,240,.92);
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0; top:.25em;
  width:18px; height:18px;
  border-radius:6px;
  border:1px solid rgba(244,215,123,.45);
  background: rgba(212,175,55,.10);
}
.checklist li::after{
  content:"";
  position:absolute;
  left:5px; top:.62em;
  width:9px; height:5px;
  border-left:2px solid rgba(244,215,123,.95);
  border-bottom:2px solid rgba(244,215,123,.95);
  transform: rotate(-45deg);
}

.mini{ margin-top:14px; border-top:1px solid var(--border); padding-top:12px; }

/* Trust band */
.trust-band{
  margin-top:26px;
  padding:16px 0 18px 0;
  border-top:1px solid var(--border);
}
.trust-row{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap:10px;
}
.trust-item{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  padding:8px 10px;
  text-align:center;
  font-size:13px;
  color:var(--muted);
}

/* =========================
   Grids / Tiles
========================= */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

.tile{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}

.tile-icon{
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(244,215,123,.22);
  background: rgba(212,175,55,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}
.tile-icon svg{ width:26px; height:26px; color:rgba(244,215,123,.95); }

.bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.bullets li{ font-size:14px; }

/* =========================
   Method / Steps
========================= */
.steps.steps--5{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:14px;
}
.step{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:180px;
}
.step-num{
  width:44px; height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:rgba(244,215,123,.95);
  border:1px solid rgba(212,175,55,.30);
  background: rgba(212,175,55,.10);
}

.callout{
  margin-top:18px;
  border:1px solid rgba(212,175,55,.22);
  background: linear-gradient(180deg, rgba(244,215,123,.08), rgba(255,255,255,.02));
  border-radius:var(--radius2);
  padding:16px;
}

/* terms cards */
.term-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.term-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
}
.term-card h4{ margin:0 0 6px 0; }
.term-card p{ margin:0 0 6px 0; color:rgba(230,234,240,.92); }
.term-card .tiny{ margin:0; color:var(--muted); }

/* =========================
   Proof / Stats
========================= */
.stats{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.stat{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:16px;
}
.stat-num{
  font-weight:850;
  font-size:22px;
  letter-spacing:-.5px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:6px;
}
.stat-label{ color:var(--muted); font-size:13px; }

/* Team */
.person-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.avatar{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing:.5px;
  color:var(--bg);
  background: linear-gradient(180deg, rgba(255,205,92,1), rgba(197,141,16,1));
  box-shadow: 0 0 0 1px rgba(255,205,92,.22), 0 14px 30px rgba(0,0,0,.45);
}
.role{ margin:0; font-size:12px; color:var(--muted); }
.tagrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

/* =========================
   Pricing
========================= */
.price-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
}

.price{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:16px;
  padding-top:52px; /* uniform space for badge */
  box-shadow:0 10px 26px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  position:relative;
}
.price h3{
  margin:0 0 6px 0;
  padding-right:120px;
}
.price-amt{
  margin:0 0 8px 0;
  font-size:22px;
  font-weight:850;
  letter-spacing:-.6px;
}
.price--featured{
  border-color: rgba(244,215,123,.45);
  background: linear-gradient(180deg, rgba(244,215,123,.08), rgba(255,255,255,.02));
}
.price .badge{
  position:absolute;
  top:12px;
  right:12px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(244,215,123,.35);
  background: rgba(212,175,55,.10);
  color:rgba(244,215,123,.95);
  z-index:2;
}
.price .btn,
.price a.btn{ margin-top:14px; }

/* =========================
   FAQ (details)
========================= */
.faq details{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:0;
  overflow:hidden;
  margin-bottom:12px;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:16px 16px;
  font-weight:750;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid transparent;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq details[open] summary{ border-bottom-color: var(--border); }
.faq .faq-body{ padding:14px 16px 16px 16px; color:var(--muted); }
.faq .faq-body p{ margin:0; }

/* =========================
   CTA
========================= */
.cta{
  padding:72px 0;
  border-top:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.cta-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

.panel{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:16px;
}

.numbered{ margin:14px 0 0; padding-left:18px; }
.numbered li{ margin:10px 0; color:rgba(230,234,240,.92); }

.card--glow{ position:relative; }
.card--glow::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  background: radial-gradient(600px 200px at 30% 0%, rgba(244,215,123,.18), transparent 60%);
  opacity:.85;
  z-index:0;
}
.card--glow > *{ position:relative; z-index:1; }

/* =========================
   Dialog / Modal (ONE IMPLEMENTATION)
========================= */
dialog.dialog,
.dialog{
  box-sizing:border-box;

  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  margin:0 !important;
  width:calc(100vw - 24px);
  max-width:620px;

  max-height:calc(100vh - 24px);
  max-height:calc(100dvh - 24px);
  overflow:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;

  border:1px solid rgba(244,215,123,.25);
  background:rgba(11,15,20,.95);
  color:var(--text);
  border-radius:18px;
  padding:0;
  box-shadow:var(--shadow2);

  -ms-overflow-style:none;
  scrollbar-width:none;
}
dialog.dialog::-webkit-scrollbar,
.dialog::-webkit-scrollbar{ width:0; height:0; }

dialog.dialog::backdrop{
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}

.dialog-inner{ padding:16px; }
.dialog-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
}
.dialog-body{ padding:14px 16px 16px 16px; }

.icon-btn{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.icon-btn:hover{ background: rgba(255,255,255,.05); }
.icon-btn svg{ width:18px; height:18px; }

.dialog *{ box-sizing:border-box; min-width:0; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.field label{ font-size:13px; color:var(--muted); }

.dialog input,
.dialog textarea,
.dialog select{ width:100%; max-width:100%; }

input, textarea{
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(244,215,123,.55);
  box-shadow:0 0 0 4px rgba(244,215,123,.10);
}

.dialog-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding:12px 16px 16px 16px;
  border-top:1px solid var(--border);
}

.status{
  margin:10px 0 0 0;
  min-height:18px;
  color:var(--muted);
}
.status.ok{ color: rgba(244,215,123,.95); }
.status.bad{ color: rgba(255,140,140,.95); }

/* honeypot */
.hp{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* =========================
   Footer
========================= */
.site-footer{
  border-top:1px solid var(--border);
  padding:42px 0 22px 0;
  background: rgba(0,0,0,.18);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:start;
}

.footer-links h4{ margin:0 0 10px 0; }
.footer-links ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-links a{
  color:var(--muted);
  padding:6px 8px;
  border-radius:12px;
  display:inline-flex;
}
.footer-links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
}

.footer-bottom{
  margin-top:16px;
  border-top:1px solid var(--border);
  padding-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

/* =========================
   Back to top (bottom-right)
========================= */
.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;

  width: 46px;
  height: 46px;
  border-radius: 16px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(244,215,123,.35);
  background: linear-gradient(180deg, rgba(244,215,123,.22), rgba(212,175,55,.12));
  color: var(--text);

  box-shadow: 0 16px 42px rgba(0,0,0,.45);
  cursor: pointer;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.back-to-top:hover{
  border-color: rgba(244,215,123,.55);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  transform: translateY(8px);
}
.back-to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   Inline code
========================= */
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  padding:2px 6px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px){
  .trust-row{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps.steps--5{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .term-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price h3{ padding-right: 90px; }
}

@media (max-width: 980px){
  h1{ font-size:38px; }
  h2{ font-size:30px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .cta-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  :root{ --headerH:76px; }
  .container{ width: calc(100% - 28px); }
  .grid-2{ grid-template-columns: 1fr; }
  .price h3{ padding-right: 0; }

  .brand-logo{ height:48px; }
    .brand-text{ 
    display:flex;
  }
  .brand-text strong{
    display:none; /* το όνομα υπάρχει ήδη στο λογότυπο */
  }
  .brand-text em{
    display:block;
    font-size:11px;
    color:var(--muted);
    white-space:nowrap;
    letter-spacing:.1px;
  }


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

  /* hide desktop actions; move them into the menu */
  .nav-actions{ display:none; }
  .nav-mobile-only{ display:block; }

  .nav-menu{
    position:fixed;
    top:calc(var(--headerH) + 10px);
    right:20px;
    left:20px;
    background: rgba(11,15,20,.94);
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
    max-height: calc(100dvh - var(--headerH) - 24px);
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;

    box-shadow:0 24px 60px rgba(0,0,0,.55);
  }

  .nav-menu a:not(.btn){ width:100%; justify-content:flex-start; }
  .nav-menu a.btn{ width:100%; justify-content:center; }

  .site-nav[data-open="true"] .nav-menu{ display:flex; }

  .site-nav[data-open="true"] .bars::before{
    top:5px;
    transform: rotate(45deg);
  }
  .site-nav[data-open="true"] .bars::after{
    bottom:5px;
    transform: rotate(-45deg);
  }

  dialog.dialog,
  .dialog{
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .back-to-top{
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}
