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

:root {
  --dohoo-bg: #050505;
  --dohoo-surface: #0b0b0b;
  --dohoo-surface-2: #111111;
  --dohoo-surface-3: #151515;
  --dohoo-border: #222222;
  --dohoo-border-soft: #171717;
  --dohoo-text: #f4f4ef;
  --dohoo-muted: #a1a19b;
  --dohoo-dim: #696965;
  --dohoo-lime: #b4ff00;
  --dohoo-lime-soft: rgba(180, 255, 0, 0.10);
  --dohoo-lime-line: rgba(180, 255, 0, 0.32);
  --dohoo-warning: #ffd166;
  --dohoo-danger: #ff7b7b;
  --dohoo-max: 1180px;
  --dohoo-copy: 760px;
  --dohoo-radius-xl: 28px;
  --dohoo-radius-lg: 20px;
  --dohoo-radius-md: 14px;
  --dohoo-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --dohoo-display: 'Syne', system-ui, sans-serif;
  --dohoo-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --dohoo-mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--dohoo-bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% -8%, rgba(180, 255, 0, 0.13), transparent 31rem),
    radial-gradient(circle at -8% 35%, rgba(255, 255, 255, 0.035), transparent 29rem),
    var(--dohoo-bg);
  color: var(--dohoo-text);
  font-family: var(--dohoo-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}
::selection { background: var(--dohoo-lime); color: #050505; }
a { color: inherit; text-underline-offset: 4px; }
a:hover { color: var(--dohoo-lime); }
img, video { max-width: 100%; height: auto; }

/* Page shell */
.dohoo-page { overflow: clip; padding-bottom: 90px; }
.article-hero {
  max-width: var(--dohoo-max);
  margin: 0 auto;
  padding: 92px 24px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 68px;
  align-items: center;
}
.article-hero__copy { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 23px;
  padding: 7px 11px;
  border: 1px solid var(--dohoo-lime-line);
  border-radius: 999px;
  background: var(--dohoo-lime-soft);
  color: var(--dohoo-lime);
  font: 500 10px/1 var(--dohoo-mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dohoo-lime);
  box-shadow: 0 0 18px rgba(180,255,0,.75);
}
h1, h2, h3, h4 { font-family: var(--dohoo-display); letter-spacing: -.035em; }
.article-hero h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(43px, 6.3vw, 78px);
  line-height: .99;
  font-weight: 800;
}
.article-hero h1::after {
  content: '.';
  color: var(--dohoo-lime);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--dohoo-dim);
  font: 400 11px/1.5 var(--dohoo-mono);
}
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta span:not(:first-child)::before { content: '/'; color: #333; }

/* Decorative product panel */
.article-hero__panel {
  position: relative;
  min-height: 410px;
  padding: 18px;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-xl);
  background: linear-gradient(155deg, #111 0%, #080808 68%);
  box-shadow: var(--dohoo-shadow);
  transform: rotate(1.1deg);
  overflow: hidden;
}
.article-hero__panel::before {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  top: -120px;
  right: -90px;
  border-radius: 50%;
  background: var(--dohoo-lime);
  filter: blur(95px);
  opacity: .17;
}
.panel-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--dohoo-border-soft);
}
.panel-dot { width: 8px; height: 8px; border-radius: 50%; background: #303030; }
.panel-dot:last-of-type { background: var(--dohoo-lime); }
.panel-label { margin-left: auto; color: #60605c; font: 400 9px/1 var(--dohoo-mono); letter-spacing: .1em; }
.panel-flow { position: relative; z-index: 1; padding: 14px 2px 0; }
.panel-flow__item {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--dohoo-border-soft);
}
.panel-flow__item:last-child { border-bottom: 0; }
.panel-flow__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dohoo-border);
  border-radius: 12px;
  background: #090909;
  color: var(--dohoo-lime);
  font: 500 11px/1 var(--dohoo-mono);
}
.panel-flow__title { font: 700 14px/1.3 var(--dohoo-display); }
.panel-flow__sub { margin-top: 5px; color: #777772; font-size: 11px; line-height: 1.4; }
.panel-flow__status {
  padding: 5px 8px;
  border: 1px solid var(--dohoo-lime-line);
  border-radius: 999px;
  background: var(--dohoo-lime-soft);
  color: var(--dohoo-lime);
  font: 500 8px/1 var(--dohoo-mono);
  letter-spacing: .08em;
}
.panel-platforms { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 18px; }
.panel-platforms span {
  padding: 7px 10px;
  border: 1px solid var(--dohoo-border);
  border-radius: 999px;
  color: #858580;
  background: #090909;
  font: 400 9px/1 var(--dohoo-mono);
}

/* Main article grid */
.article-layout {
  max-width: var(--dohoo-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.article-toc { position: sticky; top: 24px; padding-top: 26px; }
.article-toc__box {
  padding: 20px;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-lg);
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(12px);
}
.article-toc__title {
  display: block;
  margin-bottom: 14px;
  color: var(--dohoo-lime);
  font: 500 10px/1.3 var(--dohoo-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-toc a {
  display: block;
  padding: 8px 0;
  color: #83837e;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.45;
  border-bottom: 1px solid var(--dohoo-border-soft);
}
.article-toc a:last-child { border-bottom: 0; }
.article-toc a:hover { color: var(--dohoo-text); transform: translateX(3px); }
.article-card {
  min-width: 0;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-xl);
  background: linear-gradient(145deg, rgba(14,14,14,.93), rgba(7,7,7,.93));
  box-shadow: 0 24px 75px rgba(0,0,0,.28);
  overflow: hidden;
}
.content { max-width: 850px; margin: 0 auto; padding: 48px 56px 20px; }
.content > *:first-child { margin-top: 0; }
.content p { margin: 0 0 20px; color: #b4b4ae; }
.content strong { color: var(--dohoo-text); font-weight: 700; }
.content em { color: #d8d8d3; }
.content a { color: var(--dohoo-text); text-decoration-color: var(--dohoo-lime); }
.content h2 {
  position: relative;
  margin: 62px 0 20px;
  padding-top: 18px;
  color: var(--dohoo-text);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  scroll-margin-top: 24px;
}
.content h2::before {
  content: attr(data-section);
  display: block;
  margin-bottom: 13px;
  color: var(--dohoo-lime);
  font: 500 10px/1 var(--dohoo-mono);
  letter-spacing: .1em;
}
.content h2::after {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 99px;
  background: var(--dohoo-lime);
  box-shadow: 0 0 24px rgba(180,255,0,.22);
}
.content h3 {
  margin: 36px 0 12px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
  scroll-margin-top: 24px;
}
.content ul, .content ol { margin: 0 0 24px; padding-left: 0; list-style: none; counter-reset: item; }
.content li {
  position: relative;
  margin: 10px 0;
  padding: 13px 16px 13px 42px;
  border: 1px solid var(--dohoo-border-soft);
  border-radius: 12px;
  background: rgba(255,255,255,.015);
  color: #b1b1ab;
}
.content ul > li::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dohoo-lime);
  box-shadow: 0 0 13px rgba(180,255,0,.4);
}
.content ol > li { counter-increment: item; }
.content ol > li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 13px;
  top: 14px;
  color: var(--dohoo-lime);
  font: 500 10px/1.5 var(--dohoo-mono);
}
.quick-answer {
  position: relative;
  margin: 0 0 34px;
  padding: 30px 30px 28px;
  border: 1px solid var(--dohoo-lime-line);
  border-radius: var(--dohoo-radius-lg);
  background:
    radial-gradient(circle at 95% 0, rgba(180,255,0,.12), transparent 16rem),
    linear-gradient(135deg, rgba(180,255,0,.075), rgba(180,255,0,.018));
  color: #d2d2cc;
  font-size: 17px;
  line-height: 1.72;
}
.quick-answer::before {
  content: 'DIRECT ANSWER';
  display: block;
  margin-bottom: 13px;
  color: var(--dohoo-lime);
  font: 500 9px/1 var(--dohoo-mono);
  letter-spacing: .14em;
}
.quick-answer strong:first-child { display: none; }

/* Code */
code {
  padding: .16em .38em;
  border: 1px solid #282828;
  border-radius: 6px;
  background: #121212;
  color: #d8f99a;
  font: 400 .88em/1.5 var(--dohoo-mono);
}
pre {
  position: relative;
  margin: 24px 0 30px;
  padding: 50px 24px 24px;
  overflow: auto;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-lg);
  background: #070707;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02), 0 20px 50px rgba(0,0,0,.18);
}
pre::before {
  content: 'CODE';
  position: absolute;
  top: 17px;
  left: 20px;
  color: #676762;
  font: 500 9px/1 var(--dohoo-mono);
  letter-spacing: .13em;
}
pre::after {
  content: '●  ●  ●';
  position: absolute;
  top: 15px;
  right: 19px;
  color: #303030;
  font-size: 10px;
  letter-spacing: 5px;
}
pre code { padding: 0; border: 0; background: none; color: #d7d7d1; font-size: 13px; line-height: 1.75; white-space: pre; }

/* Tables */
.table-scroll {
  margin: 26px 0 32px;
  overflow-x: auto;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-lg);
  background: #080808;
}
table { width: 100%; min-width: 690px; border-collapse: collapse; }
th, td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--dohoo-border-soft); }
th {
  background: #111;
  color: #8c8c87;
  font: 500 10px/1.3 var(--dohoo-mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
td { color: #b0b0aa; font-size: 14px; }
tr:last-child td { border-bottom: 0; }
td:first-child { color: var(--dohoo-text); font-weight: 650; }

/* FAQ */
.faq-item {
  margin: 10px 0;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-md);
  background: #090909;
  overflow: hidden;
}
.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--dohoo-text);
  font: 700 15px/1.4 var(--dohoo-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 17px;
  right: 19px;
  color: var(--dohoo-lime);
  font: 400 22px/1 var(--dohoo-mono);
}
.faq-item[open] summary::after { content: '−'; }
.faq-a { padding: 0 20px 18px; }
.faq-a p { margin: 0; color: #969690; }

/* CTA */
.cta-banner {
  margin: 38px 36px 36px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--dohoo-lime-line);
  border-radius: var(--dohoo-radius-lg);
  background:
    radial-gradient(circle at 92% -10%, rgba(180,255,0,.26), transparent 15rem),
    linear-gradient(145deg, #11170a, #090909);
}
.cta-banner p { margin: 0; max-width: 600px; color: var(--dohoo-text); font: 800 clamp(21px,3vw,30px)/1.15 var(--dohoo-display); letter-spacing: -.035em; }
.cta-banner a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--dohoo-lime);
  color: #050505;
  text-decoration: none;
  font: 800 13px/1 var(--dohoo-display);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-banner a:hover { color: #050505; transform: translateY(-2px); box-shadow: 0 14px 35px rgba(180,255,0,.16); }

/* Article navigation */
.prevnext {
  max-width: 924px;
  margin: 24px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.prevnext a {
  min-height: 94px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-md);
  background: #090909;
  color: var(--dohoo-text);
  text-decoration: none;
  font: 700 14px/1.35 var(--dohoo-display);
}
.prevnext a:hover { border-color: var(--dohoo-lime-line); transform: translateY(-2px); }
.prevnext .next { grid-column: 2; text-align: right; }
.prevnext .dir { display: block; margin-bottom: 9px; color: var(--dohoo-lime); font: 500 9px/1 var(--dohoo-mono); letter-spacing: .1em; text-transform: uppercase; }
.related {
  max-width: var(--dohoo-max);
  margin: 78px auto 0;
  padding: 0 24px;
}
.related > h2 {
  margin: 0 0 25px;
  font-size: clamp(30px,4vw,48px);
  line-height: 1;
  font-weight: 800;
}
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.related-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dohoo-border);
  border-radius: var(--dohoo-radius-lg);
  background: linear-gradient(145deg, #0e0e0e, #080808);
  color: var(--dohoo-text);
  text-decoration: none;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}
.related-card::after {
  content: '↗';
  position: absolute;
  top: 20px;
  right: 22px;
  color: #40403d;
  font-size: 20px;
}
.related-card:hover { color: var(--dohoo-text); border-color: var(--dohoo-lime-line); transform: translateY(-4px); }
.related-card:hover::after { color: var(--dohoo-lime); }
.related-card .kicker {
  margin-bottom: 34px;
  color: var(--dohoo-lime);
  font: 500 9px/1 var(--dohoo-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.related-card .title { display: block; margin-bottom: 12px; font: 750 19px/1.17 var(--dohoo-display); letter-spacing: -.025em; }
.related-card .desc { margin-top: auto; color: #7f7f7a; font-size: 12px; line-height: 1.55; }

/* Guide index */
.guide-index { max-width: var(--dohoo-max); margin: 0 auto; padding: 88px 24px 100px; }
.index-hero {
  position: relative;
  margin-bottom: 70px;
  padding: 64px;
  border: 1px solid var(--dohoo-border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 5%, rgba(180,255,0,.23), transparent 24rem),
    linear-gradient(145deg, #121212, #080808);
  overflow: hidden;
  box-shadow: var(--dohoo-shadow);
}
.index-hero::before {
  content: 'DOHOO / KNOWLEDGE BASE';
  display: block;
  margin-bottom: 24px;
  color: var(--dohoo-lime);
  font: 500 10px/1 var(--dohoo-mono);
  letter-spacing: .14em;
}
.index-hero h1 { margin: 0 0 20px; font-size: clamp(60px, 11vw, 126px); line-height: .82; font-weight: 800; }
.index-hero h1::after { content: '.'; color: var(--dohoo-lime); }
.index-hero p { max-width: 760px; margin: 0; color: #aaa9a4; font-size: 18px; line-height: 1.65; }
.index-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: -26px 30px 72px; position: relative; z-index: 2; }
.index-stat { padding: 22px; border: 1px solid var(--dohoo-border); background: #0a0a0a; }
.index-stat:first-child { border-radius: 16px 0 0 16px; }
.index-stat:last-child { border-radius: 0 16px 16px 0; }
.index-stat strong { display: block; color: var(--dohoo-lime); font: 800 23px/1 var(--dohoo-display); }
.index-stat span { display: block; margin-top: 8px; color: #73736e; font-size: 11px; }
.section-label {
  margin: 54px 0 20px;
  color: var(--dohoo-lime);
  font: 500 10px/1 var(--dohoo-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.index-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.index-grid .related-card { min-height: 250px; }
.index-grid .related-card:nth-child(3n+2) { transform: none; }
.index-grid .related-card:nth-child(3n+2):hover { transform: translateY(-4px); }

/* Accessibility and responsive */
@media (max-width: 980px) {
  .article-hero { grid-template-columns: 1fr; gap: 40px; }
  .article-hero__panel { max-width: 680px; min-height: 0; transform: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; padding: 0; max-width: 100%; overflow: hidden; }
  .article-toc__box { display: flex; gap: 8px; overflow-x: auto; padding: 12px; max-width: 100%; min-width: 0; scrollbar-width: none; }
  .article-toc__box::-webkit-scrollbar { display: none; }
  .article-toc__title { display: none; }
  .article-toc a { flex: 0 0 auto; max-width: 240px; padding: 9px 12px; border: 1px solid var(--dohoo-border); border-radius: 999px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .related-grid, .index-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .index-grid .related-card:nth-child(3n+2) { transform: none; }
  .index-grid .related-card:nth-child(3n+2):hover { transform: translateY(-4px); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .dohoo-page { padding-bottom: 56px; }
  .article-hero { padding: 62px 18px 38px; }
  .article-hero h1 { font-size: clamp(39px, 12.5vw, 60px); }
  .article-hero__panel { padding: 13px; border-radius: 21px; }
  .panel-flow__item { grid-template-columns: 40px minmax(0,1fr); }
  .panel-flow__status { display: none; }
  .article-layout { padding: 0 14px; gap: 16px; }
  .article-card { border-radius: 21px; overflow-x: hidden; }
  .content { padding: 31px 20px 8px; }
  .content h2 { margin-top: 48px; font-size: 31px; }
  .content table { font-size: 13px; min-width: 0; }
  .content pre, .content code { word-break: break-all; overflow-wrap: break-word; }
  .quick-answer { padding: 23px 20px; }
  pre { margin-left: -7px; margin-right: -7px; border-radius: 15px; max-width: 100%; }
  .cta-banner { margin: 20px 14px 14px; padding: 22px 20px; grid-template-columns: 1fr; gap: 16px; }
  .cta-banner p { font-size: 20px; }
  .cta-banner a { width: 100%; text-align: center; }
  .prevnext { grid-template-columns: 1fr; padding: 0 14px; }
  .prevnext .next { grid-column: 1; text-align: left; }
  .related { margin-top: 60px; padding: 0 14px; }
  .related-grid, .index-grid { grid-template-columns: 1fr; }
  .guide-index { padding: 48px 14px 70px; }
  .index-hero { padding: 38px 24px; margin-bottom: 48px; border-radius: 23px; }
  .index-hero h1 { font-size: 33px; }
  .index-stats { grid-template-columns: repeat(2,1fr); margin: -20px 12px 54px; }
  .index-stat:first-child { border-radius: 14px 0 0 0; }
  .index-stat:nth-child(2) { border-radius: 0 14px 0 0; }
  .index-stat:nth-child(3) { border-radius: 0 0 0 14px; }
  .index-stat:last-child { border-radius: 0 0 14px 0; }
}
/* Table scroll wrapper — horizontal overflow on all screen sizes */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Language switcher: body-only component, no global header required */
.language-switch{
  max-width:1180px;
  margin:0 auto;
  padding:18px 0 0;
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:8px;
  font-size:13px;
}
.language-switch a{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:7px 12px;
  border:1px solid var(--line, #262626);
  border-radius:999px;
  background:#0a0a0a;
  color:#9d9d98;
  text-decoration:none;
  transition:.2s ease;
}
.language-switch a:hover{color:#f4f4f0;border-color:#484848;transform:translateY(-1px)}
.language-switch a.active{
  background:#242424;
  color:#fff;
  border-color:#3a3a3a;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);
}
@media(max-width:700px){
  .language-switch{justify-content:flex-start;padding:14px 18px 0;overflow-x:auto;flex-wrap:nowrap;scrollbar-width:none}
  .language-switch::-webkit-scrollbar{display:none}
  .language-switch a{white-space:nowrap}
}

/* ── DOHOO site header ───────────────────────────────────────────────────── */
.dohoo-site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,5,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dohoo-border-soft);
}
.dohoo-site-nav__inner {
  max-width: var(--dohoo-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.dohoo-site-nav__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  font-family: var(--dohoo-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.dohoo-site-nav__brand:hover { color: var(--dohoo-lime); }
.dohoo-site-nav__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 4px;
}
.dohoo-site-nav__nav a {
  color: var(--dohoo-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .18s;
}
.dohoo-site-nav__nav a:hover { color: #f4f4ef; }
.dohoo-site-nav__spacer { flex: 1; }
.dohoo-site-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--dohoo-lime);
  color: #050505 !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none !important;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: opacity .18s, transform .18s;
}
.dohoo-site-nav__cta:hover { opacity: .86; transform: translateY(-1px); color: #050505 !important; }
@media (max-width: 640px) {
  .dohoo-site-nav__nav { display: none; }
  .dohoo-site-nav__inner { gap: 12px; }
}

/* ── DOHOO site footer ───────────────────────────────────────────────────── */
.dohoo-site-footer {
  background: #050505;
  border-top: 1px solid var(--dohoo-border-soft);
  padding: 32px 24px;
  margin-top: 72px;
}
.dohoo-site-footer__inner {
  max-width: var(--dohoo-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.dohoo-site-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dohoo-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.dohoo-site-footer__brand:hover { color: var(--dohoo-lime); }
.dohoo-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  flex: 1;
}
.dohoo-site-footer__links a {
  color: #6a6a65;
  text-decoration: none;
  font-size: 13px;
  transition: color .18s;
}
.dohoo-site-footer__links a:hover { color: #f4f4ef; }
.dohoo-site-footer__copy {
  color: #3e3e3b;
  font-size: 12px;
  white-space: nowrap;
  margin-left: auto;
}
@media (max-width: 600px) {
  .dohoo-site-footer__copy { margin-left: 0; width: 100%; }
}
/* Adjust page shell: remove excessive bottom padding when site footer present */
body:has(.dohoo-site-footer) .dohoo-page { padding-bottom: 0; }
