/* ============================================================
   d-dat — Shared Styles
   Tokens, reset, layout containers, nav, status, buttons, footer.
   Page-specific styles live in each page's <style> block.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --accent: #E8471C;
  --ink: #0A0A0A;
  --paper: #F4F2ED;
  --white: #FFFFFF;
  --accent-soft: #FBE3D8;
  --line: #D8D3C7;
  --line-dark: #2a2a2a;
  --mute: #8A8578;
  --canvas: 1440px;
  --content: 1328px;
  --f-display: 'Archivo Black', sans-serif;
  --f-body: 'Space Grotesk', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
html, body { background: var(--white); color: var(--ink); }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* ---------- A11Y ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 9999;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 2px solid var(--accent);
}
.skip-link:focus {
  top: 8px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- FLOATING WHATSAPP ---------- */
.fab-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--accent);
  transition: transform .2s ease, background .2s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18) !important;
}
.fab-wa:hover { background: var(--accent); transform: translateY(-2px); }
.fab-wa svg { width: 26px; height: 26px; display: block; }
.fab-wa .label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.fab-wa:hover .label, .fab-wa:focus-visible .label { opacity: 1; }
@media (max-width: 720px){
  .fab-wa { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .fab-wa .label { display: none; }
}
/* Lift WhatsApp FAB above the cookie banner when it's visible */
body.ddat-cb-open .fab-wa { bottom: 110px; }
@media (max-width: 720px){
  body.ddat-cb-open .fab-wa { bottom: 260px; }
}

/* ---------- NOSCRIPT BANNER ---------- */
.no-js-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 2px solid var(--accent);
}
.no-js-banner a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* ---------- LAYOUT CONTAINERS ---------- */
.page { max-width: var(--canvas); margin: 0 auto; background: var(--white); }
.wrap { max-width: var(--content); margin: 0 auto; padding: 0 24px; }

/* ---------- UTILITIES ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
}
.accent { color: var(--accent); }

/* ---------- NAV ---------- */
.nav {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.logo {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  text-transform: lowercase;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.logo .cursor {
  display: inline-block;
  width: 0.55em;
  height: 1em;
  background: var(--accent);
  margin-left: 4px;
  transform: translateY(2px);
  animation: blink 1s steps(2, start) infinite;
}
@keyframes blink { to { background: transparent; } }

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--ink);
  text-transform: lowercase;
  padding: 4px 0;
  position: relative;
  transition: color .15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--ink);
  transition: right .2s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { right: 0; background: var(--accent); }

.nav-dropdown { position: relative; display: inline-flex; align-items: center; padding: 4px 0; }
.nav-dropdown > a { display: inline-flex; align-items: center; padding: 0; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a .caret { display: inline-block; margin-left: 4px; transition: transform .15s ease; font-size: 9px; line-height: 1; }
.nav-dropdown:hover > a .caret,
.nav-dropdown:focus-within > a .caret { transform: rotate(180deg); }
.nav-dropdown::after {
  /* invisible bridge so hover doesn't drop when crossing the gap */
  content: "";
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 16px;
  pointer-events: auto;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border: 1px solid var(--ink);
  padding: 8px 0;
  min-width: 180px;
  z-index: 100;
  flex-direction: column;
  gap: 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  transition: color .15s ease, background .15s ease;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { color: var(--accent); background: var(--paper); }

.nav-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s ease;
}
.nav-cta:hover { background: var(--accent); }
.nav-cta .arrow { display: inline-block; transition: transform .2s ease; }
.nav-cta:hover .arrow { transform: translateX(3px); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  display: block;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* ---------- STATUS BAR ---------- */
.status {
  max-width: var(--content);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mute);
}
.status .live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  transition: opacity .15s ease;
}
.status .live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.status .right { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; align-items: center; }

/* ---------- LANGUAGE SWITCH ---------- */
.lang-switch {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  border: 1px solid var(--line);
  line-height: 1;
}
.lang-switch a {
  color: var(--mute);
  padding: 6px 11px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  display: inline-flex;
  align-items: center;
}
.lang-switch a + a { border-left: 1px solid var(--line); }
.lang-switch a:hover { color: var(--ink); background: var(--paper); }
.lang-switch a.active {
  color: var(--white);
  background: var(--ink);
}
.lang-switch .sep { display: none; }

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); color: var(--paper); }
.btn-primary::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(232, 71, 28, 0.35), transparent);
  transform: translateX(0);
  transition: transform .6s ease;
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(350%); }

.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- FOOTER ---------- */
.foot {
  background: var(--paper);
  padding: 64px 0 40px;
  color: var(--ink);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.foot-brand .logo { font-size: 24px; }
.foot-brand p { margin-top: 24px; font-size: 14px; color: var(--mute); max-width: 260px; line-height: 1.6; }
.foot-col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.foot-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink);
  transition: color .15s ease;
}
.foot-col a:hover { color: var(--accent); }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom .legal { display: flex; gap: 24px; }

/* ---------- COUNTER ---------- */
.counter { font-variant-numeric: tabular-nums; }

/* ---------- NEWSLETTER ---------- */
.news {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 24px;
}
.news-left .eyebrow { display: block; margin-bottom: 24px; }
.news-left h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.news-left h2 .accent { color: var(--accent); }
.news-left p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 460px;
}
.news-form {
  display: flex;
  border: 1px solid var(--ink);
  background: var(--white);
  transition: border-color .15s ease;
}
.news-form:focus-within { border-color: var(--accent); }
.news-form input {
  flex: 1;
  padding: 18px 20px;
  border: 0;
  outline: none;
  font: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  min-width: 0;
}
.news-form input::placeholder { color: var(--mute); }
.news-form button {
  padding: 18px 28px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease;
  border: 0;
  white-space: nowrap;
}
.news-form button:hover { background: var(--accent); }
.news-form.sent { border-color: var(--accent); }
.news-form.sent button { background: var(--accent); }
.news-note {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.04em;
}
.news-success {
  display: none;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.news-form.sent ~ .news-success { display: block; }
.news-form.sent ~ .news-note { display: none; }

@media (max-width: 880px) {
  .news { padding: 64px 0; }
  .news-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-form { flex-direction: column; }
  .news-form input { padding: 16px 18px; }
  .news-form button { padding: 14px 20px; border-top: 1px solid var(--ink); }
}

.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CLIENT MARQUEE ---------- */
.client-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 56px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.client-marquee-track {
  display: flex;
  width: max-content;
  animation: client-scroll 90s linear infinite;
  will-change: transform;
}
.client-marquee:hover .client-marquee-track { animation-play-state: paused; }
.client-marquee-set {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}
.client-marquee-set img {
  max-height: 44px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
}
/* Per-logo height tuning for visual balance (aspect ratios vary 1:1 → 11:1) */
.client-marquee-set img[src*="kismet-by-milka"]    { max-height: 16px; }
.client-marquee-set img[src*="vivense"]            { max-height: 24px; }
.client-marquee-set img[src*="turkish-jewellery"]  { max-height: 26px; }
.client-marquee-set img[src*="mers"]               { max-height: 24px; }
.client-marquee-set img[src*="maico"]              { max-height: 24px; }
.client-marquee-set img[src*="fellas"]             { max-height: 24px; }
.client-marquee-set img[src*="asics"]              { max-height: 38px; }
.client-marquee-set img[src*="empa-store"]         { max-height: 28px; }
.client-marquee-set img[src*="cushman-wakefield"]  { max-height: 30px; }
.client-marquee-set img[src*="contemporary"]       { max-height: 34px; }
.client-marquee-set img[src*="evenos"]             { max-height: 32px; }
.client-marquee-set img[src*="value-solution"]     { max-height: 38px; }
/* Square / tall logos — bump up so they read as equally weighted */
.client-marquee-set img[src*="menarini"]           { max-height: 56px; }
.client-marquee-set img[src*="soke"]               { max-height: 54px; }
.client-marquee-set img[src*="promake-ai"]         { max-height: 52px; }
.client-marquee-set img[src*="pinar-online"]       { max-height: 56px; }
.client-marquee-set img[src*="buluro"]             { max-height: 50px; }
.client-marquee-set img[src*="apitera"]            { max-height: 50px; }
.client-marquee-set img[src*="balparmak"]          { max-height: 50px; }
.client-marquee-set img[src*="bayegan"]            { max-height: 50px; }
.client-marquee-set img[src*="zen-diamond"]        { max-height: 44px; }
.client-marquee-set img[src*="oro-monaco"]         { max-height: 50px; }
.client-marquee-set img[src*="idis"]               { max-height: 50px; }
.client-marquee-set img[src*="monaco-chain"]       { max-height: 28px; }
.client-marquee-set img[src*="sport-works"]        { max-height: 44px; }
.client-marquee-set img[src*="nilky"]              { max-height: 50px; }

.client-marquee-set img:hover {
  transform: scale(1.08);
}
@keyframes client-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .client-marquee-track { animation: none; }
  .client-marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
}
@media (max-width: 720px) {
  .client-marquee-set { gap: 36px; padding-right: 36px; }
  .client-marquee-set img { max-height: 32px; max-width: 140px; }
  .client-marquee-set img[src*="kismet-by-milka"]    { max-height: 11px; }
  .client-marquee-set img[src*="vivense"]            { max-height: 17px; }
  .client-marquee-set img[src*="turkish-jewellery"]  { max-height: 19px; }
  .client-marquee-set img[src*="mers"]               { max-height: 17px; }
  .client-marquee-set img[src*="maico"]              { max-height: 17px; }
  .client-marquee-set img[src*="fellas"]             { max-height: 17px; }
  .client-marquee-set img[src*="asics"]              { max-height: 26px; }
  .client-marquee-set img[src*="zen-diamond"]        { max-height: 30px; }
  .client-marquee-set img[src*="empa-store"]         { max-height: 20px; }
  .client-marquee-set img[src*="cushman-wakefield"]  { max-height: 22px; }
  .client-marquee-set img[src*="monaco-chain"]       { max-height: 22px; }
  .client-marquee-set img[src*="menarini"]           { max-height: 40px; }
  .client-marquee-set img[src*="soke"]               { max-height: 38px; }
  .client-marquee-set img[src*="promake-ai"]         { max-height: 38px; }
  .client-marquee-set img[src*="pinar-online"]       { max-height: 40px; }
  .client-marquee-set img[src*="buluro"]             { max-height: 36px; }
  .client-marquee-set img[src*="apitera"]            { max-height: 36px; }
  .client-marquee-set img[src*="balparmak"]          { max-height: 36px; }
  .client-marquee-set img[src*="bayegan"]            { max-height: 36px; }
}

/* ---------- COOKIE BANNER + PREFERENCE MODAL ---------- */
.ddat-cb{position:fixed;left:0;right:0;bottom:0;z-index:9000;background:var(--ink);color:var(--paper);border-top:2px solid var(--accent);padding:12px 20px;font-family:var(--f-body);box-shadow:0 -6px 18px rgba(0,0,0,0.18);display:none;}
.ddat-cb.is-open{display:block;}
body.ddat-cb-open{padding-bottom:96px;}
.ddat-cb-inner{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:20px;align-items:center;}
.ddat-cb-text h3{font-family:var(--f-display);font-weight:400;font-size:15px;letter-spacing:-0.015em;margin-bottom:3px;color:var(--paper);line-height:1.2;}
.ddat-cb-text p{font-size:12.5px;line-height:1.45;color:var(--line);margin-bottom:3px;max-width:760px;}
.ddat-cb-text small{font-family:var(--f-mono);font-size:9.5px;letter-spacing:0.1em;color:var(--mute);}
.ddat-cb-text small a{color:var(--accent);text-decoration:none;}
.ddat-cb-text small a:hover{text-decoration:underline;}
.ddat-cb-actions{display:flex;gap:6px;flex-wrap:wrap;align-items:center;}
.ddat-cb-btn{font-family:var(--f-mono);font-size:10.5px;letter-spacing:0.1em;text-transform:lowercase;padding:9px 14px;border:1px solid var(--paper);background:transparent;color:var(--paper);cursor:pointer;transition:background .15s ease,color .15s ease;white-space:nowrap;}
.ddat-cb-btn:hover{background:var(--paper);color:var(--ink);}
.ddat-cb-btn--primary{background:var(--accent);border-color:var(--accent);color:var(--white);}
.ddat-cb-btn--primary:hover{background:var(--paper);color:var(--ink);border-color:var(--paper);}
.ddat-cb-btn--ghost{border-color:var(--mute);color:var(--mute);}
.ddat-cb-btn--ghost:hover{color:var(--paper);border-color:var(--paper);background:transparent;}

.ddat-cm{position:fixed;inset:0;z-index:9100;background:rgba(10,10,10,0.72);display:none;align-items:center;justify-content:center;padding:20px;}
.ddat-cm.is-open{display:flex;}
.ddat-cm-panel{background:var(--white);max-width:620px;width:100%;max-height:88vh;border:1px solid var(--ink);display:flex;flex-direction:column;}
.ddat-cm-head{padding:20px 26px 14px;border-bottom:1px solid var(--line);flex-shrink:0;}
.ddat-cm-head .eyebrow{display:block;margin-bottom:6px;font-family:var(--f-mono);font-size:9.5px;letter-spacing:0.14em;color:var(--mute);font-weight:600;}
.ddat-cm-head h2{font-family:var(--f-display);font-weight:400;font-size:22px;letter-spacing:-0.025em;line-height:1.05;color:var(--ink);margin-bottom:4px;}
.ddat-cm-head p{font-size:12.5px;line-height:1.45;color:var(--mute);margin:0;}
.ddat-cm-body{padding:0;overflow-y:auto;flex:1 1 auto;min-height:0;}
.ddat-cat{padding:14px 26px;border-bottom:1px solid var(--line);display:grid;grid-template-columns:1fr auto;gap:16px;align-items:start;}
.ddat-cat:last-child{border-bottom:0;}
.ddat-cat h3{font-family:var(--f-body);font-weight:600;font-size:14px;color:var(--ink);margin-bottom:3px;display:flex;align-items:center;gap:8px;line-height:1.3;}
.ddat-cat .req{font-family:var(--f-mono);font-size:8.5px;letter-spacing:0.12em;text-transform:uppercase;background:var(--ink);color:var(--paper);padding:2px 7px;font-weight:400;}
.ddat-cat p{font-size:12px;line-height:1.45;color:var(--mute);margin:0 0 3px;}
.ddat-cat small{font-family:var(--f-mono);font-size:9.5px;letter-spacing:0.04em;color:var(--mute);}
.ddat-toggle{position:relative;width:40px;height:22px;background:var(--line);border:0;cursor:pointer;flex-shrink:0;transition:background .15s ease;border-radius:0;padding:0;}
.ddat-toggle::after{content:"";position:absolute;left:2px;top:2px;width:18px;height:18px;background:var(--white);transition:left .15s ease;border-radius:0;}
.ddat-toggle.on{background:var(--accent);}
.ddat-toggle.on::after{left:20px;}
.ddat-toggle:disabled{opacity:0.7;cursor:not-allowed;}
.ddat-cm-foot{padding:14px 26px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;align-items:center;background:var(--paper);flex-shrink:0;}
.ddat-cm-foot .actions{display:flex;gap:6px;flex-wrap:wrap;}
.ddat-cm-foot .detail{font-family:var(--f-mono);font-size:10.5px;letter-spacing:0.04em;color:var(--mute);}
.ddat-cm-foot .detail a{color:var(--ink);text-decoration:underline;text-decoration-color:var(--accent);text-underline-offset:2px;}
.ddat-cm-btn{font-family:var(--f-mono);font-size:10.5px;letter-spacing:0.1em;text-transform:lowercase;padding:9px 13px;border:1px solid var(--ink);background:transparent;color:var(--ink);cursor:pointer;transition:background .15s ease,color .15s ease;white-space:nowrap;}
.ddat-cm-btn:hover{background:var(--ink);color:var(--paper);}
.ddat-cm-btn--primary{background:var(--ink);color:var(--paper);}
.ddat-cm-btn--primary:hover{background:var(--accent);border-color:var(--accent);color:var(--white);}

@media (max-width:720px){
  .ddat-cb{padding:14px 16px;}
  .ddat-cb-inner{grid-template-columns:1fr;gap:10px;}
  .ddat-cb-actions{flex-direction:column;align-items:stretch;}
  .ddat-cb-btn{width:100%;text-align:center;}
  body.ddat-cb-open{padding-bottom:240px;}
  .ddat-cm-head, .ddat-cat, .ddat-cm-foot{padding-left:18px;padding-right:18px;}
  .ddat-cm-foot{flex-direction:column;align-items:stretch;}
  .ddat-cm-foot .actions{flex-direction:column;}
  .ddat-cm-btn{width:100%;text-align:center;}
}

/* ---------- MOBILE (≤880px) ---------- */
@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 24px;
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }

  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
  .nav-dropdown > a .caret { display: none; }
  .nav-dropdown-menu { display: flex; position: static; border: 0; padding: 0 0 8px 16px; background: transparent; min-width: 0; }
  .nav-dropdown-menu a { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
  .nav-dropdown-menu a:last-child { border-bottom: 0; }

  .status { flex-direction: column; align-items: flex-start; gap: 8px; }
  .status .right { justify-content: flex-start; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .news-left h2 { font-size: clamp(28px, 8vw, 40px); }
  .news-form input { padding: 14px 16px; font-size: 14px; }
  .news-form button { padding: 14px 18px; font-size: 10px; }
  .news-consent { font-size: 10px; }
}

@media (max-width: 480px) {
  .foot-top { grid-template-columns: 1fr; }
}

/* ---------- TL;DR / GEO direct-answer block ----------
   A 40-60 word "what is this, who it's for" summary placed right after
   the hero on product/about pages. Helps both human scanners and
   generative search engines (ChatGPT, Perplexity, Google AIO) extract
   a clean canonical answer when someone asks "what is d-lens" etc. */
.tldr {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.tldr-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 48px);
}
.tldr-card .eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
  font-weight: 600;
  text-transform: lowercase;
  padding-top: 4px;
}
.tldr-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 880px;
}
@media (max-width: 720px) {
  .tldr { padding: 24px 0; }
  .tldr-card { grid-template-columns: 1fr; gap: 12px; padding: 0 20px; }
  .tldr-card p { font-size: 15px; }
}

/* ---------- PRINT ---------- *
   Hide site chrome (nav, footer, cookie banner, FAB, marquees) so
   legal pages print as clean documents. Keep links visible but stop
   them from being underlined or printing their hrefs. */
@media print {
  body { background: #fff !important; color: #000 !important; }
  nav, .nav, footer, .foot, .ddat-cb, .ddat-cm, .fab-wa, .skip-link,
  .no-js-banner, .client-marquee, .trust, .clients, .news,
  .hero-scan, .photo-scan { display: none !important; }
  body.ddat-cb-open { padding-bottom: 0 !important; }
  a { color: #000 !important; text-decoration: none !important; }
  .legal-hero, .legal-body, section { break-inside: avoid; page-break-inside: avoid; }
  h1, h2, h3 { break-after: avoid; page-break-after: avoid; }
  .legal-body table { font-size: 11px; }
  img { max-width: 100% !important; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
