/* ═══════════════════════════════════════════════════════════════
   DarkHorse.al — TheyDigital-Inspired Design
   Light background · Bold black type · Neon accents
   Mobile-first · v2.0
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --pink:         #FF2D6B;
  --blue:         #0066FF;
  --yellow:       #FFE500;
  --green:        #00E87A;

  --bg:           #F5F5F0;
  --bg-white:     #FFFFFF;
  --bg-off:       #EFEFEA;
  --bg-dark:      #111110;

  --ink:          #111110;
  --ink-2:        #3A3A38;
  --ink-3:        #7A7A72;
  --ink-4:        #AAAAAA;

  --border:       #DDDDD8;
  --border-dark:  rgba(0,0,0,0.08);

  --font-display: 'Syne', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --radius:       3px;
  --nav-h:        64px;
  --container:    1240px;
  --container-n:  780px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── BASE ────────────────────────────────────────────────────── */
.dh-body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
#dh-cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  mix-blend-mode: multiply;
}
#dh-cursor.is-hovering { width: 40px; height: 40px; }
@media (hover: none), (max-width: 768px) { #dh-cursor { display: none; } }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.dh-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}
@media (min-width: 640px)  { .dh-container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .dh-container { padding: 0 4rem; } }
.dh-container--narrow { max-width: var(--container-n); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.dh-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,245,240,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.dh-nav--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.dh-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
@media (min-width: 640px)  { .dh-nav__inner { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .dh-nav__inner { padding: 0 4rem; } }

.dh-nav__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  margin-right: auto;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.dh-nav__brand-dark   { color: var(--ink); }
.dh-nav__brand-accent { color: var(--pink); }
.dh-nav__brand-dot    { color: var(--ink-4); }

.dh-nav__links {
  display: none;
  gap: 0;
}
@media (min-width: 860px) { .dh-nav__links { display: flex; } }

.dh-nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  letter-spacing: 0;
}
.dh-nav__link:hover     { color: var(--ink); }
.dh-nav__link--active   { color: var(--pink); font-weight: 700; }

.dh-nav__cta { margin-left: 1rem; display: none; }
@media (min-width: 860px) { .dh-nav__cta { display: inline-flex; } }

.dh-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: 0.5rem;
  cursor: pointer;
}
@media (min-width: 860px) { .dh-nav__hamburger { display: none; } }
.dh-nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.dh-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dh-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.dh-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.dh-nav__mobile {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem 2rem;
}
@media (min-width: 640px) { .dh-nav__mobile { padding: 1.5rem 2.5rem 2rem; } }
.dh-nav__mobile.is-open { display: block; }
.dh-nav__mobile ul { display: flex; flex-direction: column; gap: 0; }
.dh-nav__mobile-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.dh-nav__mobile-link:hover { color: var(--pink); }
.dh-nav__mobile-cta { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.dh-btn svg { flex-shrink: 0; transition: transform 0.2s; }
.dh-btn:hover svg { transform: translateX(3px); }
.dh-btn--sm  { font-size: 0.78rem; padding: 0.45rem 1rem; }
.dh-btn--lg  { font-size: 0.95rem; padding: 0.9rem 1.75rem; }
.dh-btn--xl  { font-size: 1rem; padding: 1.05rem 2.25rem; }
.dh-btn--full { width: 100%; }

.dh-btn--primary {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.dh-btn--primary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.dh-btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.dh-btn--outline:hover { background: var(--ink); color: #fff; }

.dh-btn--ghost {
  background: transparent;
  color: var(--ink-3);
  border-color: var(--border);
}
.dh-btn--ghost:hover { color: var(--ink); border-color: var(--ink-2); }

.dh-btn--danger {
  background: transparent;
  color: var(--pink);
  border-color: rgba(255,45,107,0.3);
}
.dh-btn--danger:hover { background: rgba(255,45,107,0.06); }

/* ── HERO ────────────────────────────────────────────────────── */
.dh-hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 1.25rem 3rem;
  background: var(--bg);
}
@media (min-width: 640px)  { .dh-hero { padding: 5rem 2.5rem 4rem; } }
@media (min-width: 1024px) { .dh-hero { padding: 6rem 4rem 5rem; } }

/* Subtle grid bg */
.dh-hero__bg-grid {
  position: absolute; inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
@media (min-width: 768px) { .dh-hero__bg-grid { background-size: 72px 72px; opacity: 0.5; } }

/* No dark orbs — replace with light color blobs */
.dh-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.dh-hero__orb--pink  { width: 400px; height: 400px; background: var(--pink);   opacity: 0.10; top: -10%;   left: -5%; }
.dh-hero__orb--blue  { width: 350px; height: 350px; background: var(--blue);   opacity: 0.08; bottom: 0%;  right: 5%; }
@media (min-width: 768px) {
  .dh-hero__orb--pink { width: 600px; height: 600px; filter: blur(120px); }
  .dh-hero__orb--blue { width: 500px; height: 500px; filter: blur(120px); }
}

.dh-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.dh-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}
.dh-hero__eyebrow-line {
  display: block; width: 1.5rem; height: 2px;
  background: var(--blue); flex-shrink: 0;
}

.dh-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s ease forwards;
  color: var(--ink);
  word-break: break-word;
}
.dh-hero__title span { display: block; }
.dh-hero__title--accent { color: var(--pink); }

.dh-hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s ease forwards;
}
@media (min-width: 768px) {
  .dh-hero__bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2rem; }
}
.dh-hero__desc {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 480px;
}
@media (min-width: 640px) { .dh-hero__desc { font-size: 1.1rem; } }
.dh-hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 400px) {
  .dh-hero__actions { flex-direction: column; }
  .dh-hero__actions .dh-btn { width: 100%; }
}

/* Metrics — TheyDigital style: clean white cards with bold numbers */
.dh-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s ease forwards;
}
@media (min-width: 640px) {
  .dh-hero__metrics { grid-template-columns: repeat(4, 1fr); margin-top: 5rem; }
}
.dh-hero__metric {
  background: var(--bg-white);
  padding: 1.5rem 1.25rem;
  transition: background 0.2s;
}
@media (min-width: 640px) { .dh-hero__metric { padding: 2rem 1.75rem; } }
.dh-hero__metric:hover { background: var(--bg-off); }
.dh-hero__metric-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.dh-hero__metric-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.dh-hero__metric--pink   .dh-hero__metric-value { color: var(--pink); }
.dh-hero__metric--blue   .dh-hero__metric-value { color: var(--blue); }
.dh-hero__metric--yellow .dh-hero__metric-value { color: #C8A800; }

/* ── TICKER ──────────────────────────────────────────────────── */
.dh-ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 0.8rem 0;
}
.dh-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.dh-ticker__item {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--bg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 2rem;
  flex-shrink: 0;
}
.dh-ticker__dot {
  color: rgba(245,245,240,0.3);
  font-size: 0.5rem;
  align-self: center;
  flex-shrink: 0;
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.dh-section {
  padding: 3.5rem 1.25rem;
}
@media (min-width: 640px)  { .dh-section { padding: 5rem 2.5rem; } }
@media (min-width: 1024px) { .dh-section { padding: 7rem 4rem; } }

/* TheyDigital alternates between white and off-white */
.dh-section--dark {
  background: var(--bg-off);
}
.dh-section--black {
  background: var(--bg-dark);
  color: #F5F5F0;
}

.dh-section__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .dh-section__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
  }
}

/* TheyDigital giant section title style */
.dh-section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.dh-section__title em { font-style: normal; color: var(--pink); }
.dh-text--blue { color: var(--blue) !important; }

/* TheyDigital eyebrow: small mono tag */
.dh-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--pink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.dh-eyebrow--blue { color: var(--blue); }

.dh-link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  letter-spacing: 0;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  align-self: flex-start;
}
.dh-link-arrow:hover { color: var(--pink); border-color: var(--pink); }

/* ── SERVICES GRID — TheyDigital: big bordered cards ─────────── */
.dh-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}
@media (min-width: 480px) { .dh-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dh-services-grid { grid-template-columns: repeat(3, 1fr); } }
.dh-services-grid--full { grid-template-columns: 1fr; }
@media (min-width: 480px) { .dh-services-grid--full { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dh-services-grid--full { grid-template-columns: repeat(3, 1fr); } }

.dh-service-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .dh-service-card { padding: 2.5rem 2rem; } }

/* TheyDigital: color bar appears on hover at top */
.dh-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.dh-service-card--pink::before   { background: var(--pink); }
.dh-service-card--blue::before   { background: var(--blue); }
.dh-service-card--yellow::before { background: var(--yellow); }
.dh-service-card:hover { background: var(--bg-off); }
.dh-service-card:hover::before { transform: scaleX(1); }

.dh-service-card__icon   { font-size: 2rem; }
.dh-service-card__title  { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); line-height: 1.25; }
.dh-service-card__excerpt{ font-size: 0.875rem; color: var(--ink-3); line-height: 1.65; flex-grow: 1; }
.dh-service-card__cta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s;
  margin-top: 0.25rem;
}
.dh-service-card--pink   .dh-service-card__cta { color: var(--pink); }
.dh-service-card--blue   .dh-service-card__cta { color: var(--blue); }
.dh-service-card--yellow .dh-service-card__cta { color: #9A8200; }
.dh-service-card:hover .dh-service-card__cta { opacity: 1; }
.dh-service-card__arrow { display: inline-block; transition: transform 0.2s; }
.dh-service-card:hover .dh-service-card__arrow { transform: translateX(4px); }
.dh-service-card--pink:hover   .dh-service-card__title { color: var(--pink); }
.dh-service-card--blue:hover   .dh-service-card__title { color: var(--blue); }
.dh-service-card--yellow:hover .dh-service-card__title { color: #9A8200; }

/* ── CASE STUDIES ────────────────────────────────────────────── */
.dh-cs-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}
@media (min-width: 600px) { .dh-cs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dh-cs-grid { grid-template-columns: repeat(3, 1fr); } }
.dh-cs-grid--full { grid-template-columns: 1fr; }
@media (min-width: 600px) { .dh-cs-grid--full { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dh-cs-grid--full { grid-template-columns: repeat(3, 1fr); } }

.dh-cs-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.25s, background 0.2s;
}
@media (min-width: 640px) { .dh-cs-card { padding: 2.5rem 2rem; } }
.dh-cs-card:hover { background: var(--bg-off); border-top-color: var(--blue); }

.dh-cs-card__client {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dh-cs-card__title  { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; line-height: 1.25; color: var(--ink); }
.dh-cs-card__excerpt{ font-size: 0.875rem; color: var(--ink-3); line-height: 1.65; flex-grow: 1; }
.dh-cs-card__results {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.25rem;
}
.dh-cs-card__result-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1;
}
.dh-cs-card__result-key {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.dh-cs-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 0.25rem;
}
.dh-cs-card__link:hover { color: var(--ink); }

.dh-cs-results-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0;
}
@media (min-width: 480px) { .dh-cs-results-banner { grid-template-columns: repeat(4, 1fr); } }
.dh-cs-results-banner__item { background: var(--bg-white); padding: 2rem 1.5rem; text-align: center; }
.dh-cs-results-banner__val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.dh-cs-results-banner__key {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}

/* ── CTA BAND — TheyDigital: bold black section ──────────────── */
.dh-cta-band {
  padding: 4rem 1.25rem;
  background: var(--ink);
  color: #F5F5F0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px)  { .dh-cta-band { padding: 6rem 2.5rem; } }
@media (min-width: 1024px) { .dh-cta-band { padding: 8rem 4rem; } }

.dh-cta-band__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.06;
  filter: blur(140px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.dh-cta-band__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.dh-cta-band__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--pink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.dh-cta-band__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #F5F5F0;
  margin-bottom: 1.25rem;
}
.dh-cta-band__title em { font-style: normal; color: var(--pink); }
.dh-cta-band__desc {
  font-size: 1rem;
  color: rgba(245,245,240,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.dh-cta-band__actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
@media (min-width: 480px) { .dh-cta-band__actions { flex-direction: row; justify-content: center; } }

/* Override btn colours inside dark CTA band */
.dh-cta-band .dh-btn--primary { background: var(--pink); border-color: var(--pink); color: #fff; }
.dh-cta-band .dh-btn--primary:hover { background: #fff; border-color: #fff; color: var(--ink); }
.dh-cta-band .dh-btn--ghost { border-color: rgba(245,245,240,0.25); color: rgba(245,245,240,0.7); }
.dh-cta-band .dh-btn--ghost:hover { border-color: #fff; color: #fff; }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.dh-page-hero {
  padding: 3.5rem 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
@media (min-width: 640px)  { .dh-page-hero { padding: 5rem 2.5rem 3.5rem; } }
@media (min-width: 1024px) { .dh-page-hero { padding: 7rem 4rem 4.5rem; } }

.dh-page-hero__icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.dh-page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  word-break: break-word;
}
.dh-page-hero__title em { font-style: normal; color: var(--pink); }
.dh-page-hero__desc {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2rem;
}
.dh-page-hero--post .dh-page-hero__title { font-size: clamp(1.85rem, 5vw, 3.75rem); }

.dh-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-4);
  letter-spacing: 0.06em;
}

/* ── BLOG GRID ───────────────────────────────────────────────── */
.dh-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 600px) { .dh-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dh-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.dh-blog-card {
  background: var(--bg-white);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: background 0.2s;
}
.dh-blog-card:hover { background: var(--bg-off); }
.dh-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dh-blog-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.3; color: var(--ink); }
.dh-blog-card__title a { text-decoration: none; transition: color 0.2s; }
.dh-blog-card__title a:hover { color: var(--pink); }
.dh-blog-card__excerpt { font-size: 0.875rem; color: var(--ink-3); flex-grow: 1; line-height: 1.65; }
.dh-blog-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 0.25rem;
}
.dh-blog-card__link:hover { color: var(--ink); }

/* ── PROSE ───────────────────────────────────────────────────── */
.dh-prose {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.85;
}
.dh-prose h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 2.5rem 0 0.85rem;
}
.dh-prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 2rem 0 0.65rem;
}
.dh-prose p  { margin-bottom: 1.1rem; }
.dh-prose ul, .dh-prose ol { padding-left: 1.4rem; margin-bottom: 1.25rem; }
.dh-prose li { margin-bottom: 0.45rem; }
.dh-prose strong { color: var(--ink); font-weight: 700; }
.dh-prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.dh-prose a:hover { color: var(--ink); }
.dh-prose code {
  font-family: var(--font-mono);
  font-size: 0.83em;
  background: var(--bg-off);
  border: 1px solid var(--border);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  color: var(--pink);
  word-break: break-all;
}
.dh-prose blockquote {
  border-left: 3px solid var(--pink);
  padding: 1rem 1.25rem;
  background: rgba(255,45,107,0.04);
  margin: 1.5rem 0;
  color: var(--ink);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.dh-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .dh-contact-grid { grid-template-columns: 1fr 2fr; gap: 5rem; } }

.dh-contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.dh-contact-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.dh-contact-item__icon { font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.dh-contact-item__label { font-family: var(--font-mono); font-size: 0.62rem; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.1em; }
.dh-contact-item__value { display: block; color: var(--ink); font-size: 0.9rem; text-decoration: none; margin-top: 0.15rem; font-weight: 500; }
.dh-contact-item__value:hover { color: var(--pink); }

.dh-contact-partner {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.dh-contact-partner p  { font-size: 0.82rem; color: var(--ink-3); margin-bottom: 0.75rem; }
.dh-contact-partner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.dh-contact-partner__link:hover { color: var(--blue); }

/* ── FORM ────────────────────────────────────────────────────── */
.dh-form { display: flex; flex-direction: column; gap: 1.25rem; }
.dh-form__row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 480px) { .dh-form__row { grid-template-columns: repeat(2, 1fr); } }
.dh-form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.dh-form__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dh-form__input {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.dh-form__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}
.dh-form__input::placeholder { color: var(--ink-4); }
.dh-form__select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A72' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.5rem; }
.dh-form__textarea { resize: vertical; min-height: 130px; }
.dh-form__textarea--sm { min-height: 75px; }
.dh-form__textarea--lg { min-height: 200px; }
.dh-form__textarea--code { font-family: var(--font-mono); font-size: 0.8rem; min-height: 220px; }

/* ── ALERTS ──────────────────────────────────────────────────── */
.dh-alert { padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.875rem; }
.dh-alert--success { background: rgba(0,200,90,0.08); border: 1px solid rgba(0,200,90,0.25); color: #007A35; }
.dh-alert--error   { background: rgba(255,45,107,0.06); border: 1px solid rgba(255,45,107,0.25); color: #CC1F56; }
.dh-alert p { margin: 0 0 0.3rem; }
.dh-alert p:last-child { margin: 0; }

/* ── ABOUT / VALUES ──────────────────────────────────────────── */
.dh-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}
@media (min-width: 480px) { .dh-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dh-values-grid { grid-template-columns: repeat(4, 1fr); } }
.dh-value-card {
  background: var(--bg-white);
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.dh-value-card:hover { background: var(--bg-off); }
.dh-value-card__icon  { font-size: 1.75rem; margin-bottom: 0.85rem; }
.dh-value-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--ink); }
.dh-value-card__desc  { font-size: 0.875rem; color: var(--ink-3); line-height: 1.65; }

/* ── 404 ─────────────────────────────────────────────────────── */
.dh-error-page { padding: 4rem 1.25rem; text-align: center; }
@media (min-width: 640px) { .dh-error-page { padding: 8rem 2.5rem; } }
.dh-error-page__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
}
.dh-error-page__desc { font-size: 1.05rem; color: var(--ink-3); margin-bottom: 2rem; }

/* ── FOOTER — TheyDigital: clean light footer ────────────────── */
.dh-footer {
  background: var(--ink);
  color: rgba(245,245,240,0.8);
  padding: 3.5rem 1.25rem 2rem;
}
@media (min-width: 640px)  { .dh-footer { padding: 5rem 2.5rem 2.5rem; } }
@media (min-width: 1024px) { .dh-footer { padding: 6rem 4rem 3rem; } }
.dh-footer__inner { max-width: var(--container); margin: 0 auto; }

.dh-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 540px) { .dh-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dh-footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; } }

.dh-footer__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: #F5F5F0;
  transition: color 0.2s;
}
.dh-footer__brand span { color: var(--pink); }
.dh-footer__brand em   { font-style: normal; color: rgba(245,245,240,0.25); }
.dh-footer__brand:hover { color: var(--pink); }
.dh-footer__tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(245,245,240,0.4);
  line-height: 1.7;
  max-width: 260px;
}
.dh-footer__socials { display: flex; gap: 0.5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.dh-footer__social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(245,245,240,0.4);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.dh-footer__social:hover { border-color: var(--pink); color: var(--pink); }

.dh-footer__nav-heading {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(245,245,240,0.25);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.dh-footer__nav-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.dh-footer__nav-link {
  font-size: 0.875rem;
  color: rgba(245,245,240,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.dh-footer__nav-link:hover { color: #F5F5F0; }

.dh-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .dh-footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
.dh-footer__copy  { font-family: var(--font-mono); font-size: 0.62rem; color: rgba(245,245,240,0.2); }
.dh-footer__stack { font-family: var(--font-mono); font-size: 0.58rem; color: rgba(245,245,240,0.12); }

/* ★ theSEO.al Credit Badge */
.dh-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.45rem 1rem;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.dh-footer__credit:hover { border-color: rgba(0,102,255,0.5); background: rgba(0,102,255,0.06); }
.dh-footer__credit-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(0,102,255,0.7);
  flex-shrink: 0;
  animation: pulseDot 1.8s ease-in-out infinite;
}
.dh-footer__credit-managed {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(245,245,240,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.dh-footer__credit-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(245,245,240,0.55);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.dh-footer__credit:hover .dh-footer__credit-brand   { color: #fff; }
.dh-footer__credit:hover .dh-footer__credit-managed { color: var(--blue); }
.dh-footer__credit svg { color: rgba(245,245,240,0.2); transition: color 0.2s, transform 0.2s; }
.dh-footer__credit:hover svg { color: var(--blue); transform: translate(2px, -2px); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 4px rgba(0,102,255,0.4); }
  50%       { box-shadow: 0 0 12px rgba(0,102,255,0.9); }
}

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   ADMIN PANEL STYLES
══════════════════════════════════════════════════════════════ */
.dh-admin-body  { background: #F5F5F0; }
.dh-admin-login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  background: var(--bg);
}
.dh-admin-login {
  width: 100%;
  max-width: 380px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.dh-admin-login__brand { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--ink); margin-bottom: 0.25rem; }
.dh-admin-login__brand span { color: var(--pink); }
.dh-admin-login__brand em   { font-style: normal; color: var(--ink-4); }
.dh-admin-login__sub { font-family: var(--font-mono); font-size: 0.65rem; color: var(--ink-4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }
.dh-admin-login__form { display: flex; flex-direction: column; gap: 1rem; }

.dh-admin-shell { display: flex; min-height: 100vh; background: var(--bg); }

.dh-admin-sidebar {
  width: 210px;
  flex-shrink: 0;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
@media (max-width: 640px) {
  .dh-admin-sidebar { width: 50px; }
  .dh-admin-sidebar__badge,
  .dh-admin-nav__link span:not(.dh-admin-nav__icon),
  .dh-admin-sidebar__site-link,
  .dh-admin-sidebar__logout { display: none; }
  .dh-admin-sidebar__brand { padding: 0.85rem 0.5rem; justify-content: center; }
  .dh-admin-sidebar__logo  { font-size: 0.7rem; }
  .dh-admin-nav__link { padding: 0.6rem; justify-content: center; }
  .dh-admin-sidebar__footer { padding: 0.5rem; align-items: center; }
}

.dh-admin-sidebar__brand {
  padding: 1.1rem 1.1rem 0.9rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dh-admin-sidebar__logo { font-family: var(--font-display); font-weight: 900; font-size: 0.95rem; text-decoration: none; color: var(--ink); }
.dh-admin-sidebar__logo span { color: var(--pink); }
.dh-admin-sidebar__badge { font-family: var(--font-mono); font-size: 0.52rem; color: var(--pink); border: 1px solid rgba(255,45,107,0.3); padding: 0.1rem 0.35rem; letter-spacing: 0.1em; }

.dh-admin-nav { padding: 0.5rem 0; flex: 1; }
.dh-admin-nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.dh-admin-nav__link:hover { color: var(--ink); background: var(--bg-off); }
.dh-admin-nav__link--active { color: var(--ink); background: rgba(255,45,107,0.06); border-left: 2px solid var(--pink); font-weight: 600; }
.dh-admin-nav__icon { font-size: 0.85rem; width: 1.1rem; text-align: center; flex-shrink: 0; }

.dh-admin-sidebar__footer { padding: 0.85rem 1.1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.4rem; }
.dh-admin-sidebar__site-link,
.dh-admin-sidebar__logout { font-family: var(--font-mono); font-size: 0.65rem; text-decoration: none; color: var(--ink-4); transition: color 0.2s; letter-spacing: 0.05em; }
.dh-admin-sidebar__site-link:hover { color: var(--blue); }
.dh-admin-sidebar__logout:hover    { color: var(--pink); }

.dh-admin-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.dh-admin-topbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-wrap: wrap;
}
@media (min-width: 640px) { .dh-admin-topbar { padding: 1rem 2rem; } }
.dh-admin-topbar__title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.dh-admin-topbar__partner { font-family: var(--font-mono); font-size: 0.62rem; color: var(--ink-4); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; }
.dh-admin-topbar__partner:hover { color: var(--blue); }

.dh-admin-content { padding: 1.25rem; flex: 1; }
@media (min-width: 640px) { .dh-admin-content { padding: 2rem; } }

.dh-admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .dh-admin-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .dh-admin-stats { grid-template-columns: repeat(5, 1fr); } }

.dh-admin-stat { background: var(--bg-white); padding: 1.25rem 1.1rem; text-decoration: none; transition: background 0.2s; border-top: 3px solid transparent; }
@media (min-width: 640px) { .dh-admin-stat { padding: 1.5rem; } }
.dh-admin-stat:hover { background: var(--bg-off); }
.dh-admin-stat--pink   { border-top-color: var(--pink); }
.dh-admin-stat--blue   { border-top-color: var(--blue); }
.dh-admin-stat--yellow { border-top-color: #C8A800; }
.dh-admin-stat__value  { font-family: var(--font-display); font-weight: 900; font-size: 1.85rem; color: var(--ink); letter-spacing: -0.03em; }
.dh-admin-stat__label  { font-family: var(--font-mono); font-size: 0.58rem; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; line-height: 1.3; }

.dh-admin-section-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.85rem; color: var(--ink); }
.dh-admin-quicklinks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 640px) { .dh-admin-quicklinks__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .dh-admin-quicklinks__grid { grid-template-columns: repeat(6, 1fr); } }

.dh-admin-quicklink { display: flex; align-items: center; padding: 0.65rem 0.85rem; background: var(--bg-white); border: 1px solid var(--border); font-size: 0.78rem; color: var(--ink-3); text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.dh-admin-quicklink:hover { border-color: var(--pink); color: var(--ink); background: var(--bg-off); }

.dh-admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dh-admin-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; min-width: 500px; }
.dh-admin-table thead tr { border-bottom: 2px solid var(--pink); }
.dh-admin-table th { font-family: var(--font-mono); font-size: 0.62rem; color: var(--pink); text-transform: uppercase; letter-spacing: 0.08em; text-align: left; padding: 0.6rem 0.75rem; white-space: nowrap; background: var(--bg-white); }
.dh-admin-table td { padding: 0.65rem 0.75rem; color: var(--ink-2); border-bottom: 1px solid var(--border); vertical-align: middle; background: var(--bg-white); }
.dh-admin-table tr:hover td { background: var(--bg-off); }

.dh-admin-badge { display: inline-block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em; padding: 0.2rem 0.5rem; border-radius: 3px; background: var(--bg-off); border: 1px solid var(--border); color: var(--ink-3); text-transform: uppercase; }
.dh-admin-badge--green { background: rgba(0,180,70,0.08); border-color: rgba(0,180,70,0.25); color: #007A35; }

.dh-admin-form { max-width: 900px; }
.dh-admin-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 480px) { .dh-admin-form__row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .dh-admin-form__row { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.dh-admin-form__divider { font-family: var(--font-mono); font-size: 0.62rem; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.12em; border-top: 1px solid var(--border); padding-top: 1.1rem; margin: 1.1rem 0 0.65rem; }
.dh-admin-form__actions { display: flex; gap: 0.65rem; margin-top: 1.25rem; flex-wrap: wrap; }

.dh-seo-counter { font-family: var(--font-mono); font-size: 0.6rem; color: var(--ink-4); float: right; }
.dh-seo-len { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; padding: 0.1rem 0.38rem; border-radius: 3px; margin-right: 0.35rem; }
.dh-seo-len--ok    { background: rgba(0,180,70,0.1); color: #007A35; }
.dh-seo-len--over  { background: rgba(255,45,107,0.08); color: var(--pink); }
.dh-seo-len--empty { background: var(--bg-off); color: var(--ink-4); }
