/* ============================================================
   DIGITAL GYM — "TITAN" dark/lime redesign
   Single source of truth for tokens. Change brand here only.
   Prefix: .dt-*  (digital-titan), keeps it isolated from .dg-*
   ============================================================ */

:root {
  /* ---- Canvas & surfaces ---- */
  --bg:        #0B0C0E;   /* near-black page */
  --bg-2:      #0E1013;   /* alternate band */
  --surface:   #141619;   /* cards */
  --surface-2: #1B1E22;   /* raised cards / tiles */
  --surface-3: #23272C;   /* hover / chips */
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.14);

  /* ---- Ink ---- */
  --ink:    #FFFFFF;
  --ink-2:  #C4C8CD;   /* secondary text */
  --muted:  #8B9197;   /* captions / meta */

  /* ---- Accent: neon lime ---- */
  --lime:      #C9F31D;
  --lime-600:  #B4DC12;
  --lime-soft: rgba(201,243,29,.14);
  --lime-line: rgba(201,243,29,.30);
  --on-lime:   #0B0C0E;   /* ink on lime surfaces */

  /* ---- Type ---- */
  --f-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* ---- Radius ---- */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* ---- Shape / rhythm ---- */
  --container: 1240px;
  --gap: 18px;
  --section-y: clamp(64px, 9vw, 132px);

  /* ---- Shadow / glow ---- */
  --shadow:    0 24px 60px -28px rgba(0,0,0,.85);
  --shadow-lg: 0 40px 90px -40px rgba(0,0,0,.9);
  --glow-lime: 0 18px 50px -18px rgba(201,243,29,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--lime); color: var(--on-lime); }

.dt-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }

/* focus */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.dt-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime);
  padding: 7px 13px;
  border: 1px solid var(--lime-line);
  background: var(--lime-soft);
  border-radius: var(--r-pill);
}
.dt-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }

.dt-h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 18px 0 0;
}
.dt-h2 em { font-style: normal; color: var(--lime); }
.dt-sub {
  color: var(--ink-2);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 60ch;
  margin: 16px 0 0;
}
.dt-section-head { margin-bottom: clamp(34px, 5vw, 58px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.dt-btn {
  --bg-btn: var(--surface-2);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1rem;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--bg-btn);
  color: var(--ink);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.dt-btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.dt-btn:hover { transform: translateY(-2px); border-color: var(--line-2); }
.dt-btn:hover svg { transform: translateX(4px); }

.dt-btn--lime { background: var(--lime); color: var(--on-lime); border-color: var(--lime); }
.dt-btn--lime:hover { background: var(--lime-600); border-color: var(--lime-600); box-shadow: var(--glow-lime); }

.dt-btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.dt-btn--ghost:hover { background: var(--surface-2); }

.dt-btn--lg { padding: 17px 28px; font-size: 1.05rem; }

.dt-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--lime);
  font-family: var(--f-mono); font-size: .82rem; letter-spacing: .04em;
}
.dt-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.dt-link:hover svg { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.dt-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.dt-nav--scrolled {
  background: rgba(11,12,14,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.dt-nav__inner { display: flex; align-items: center; gap: 24px; }

.dt-logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.dt-logo__mark {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--lime); color: var(--on-lime);
}
.dt-logo__mark svg { width: 20px; height: 20px; }
.dt-logo b { color: var(--lime); }

.dt-nav__menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
  margin-left: auto;
}
.dt-nav__menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--r-pill);
  color: var(--ink-2); font-weight: 500; font-size: .96rem;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.dt-nav__menu > li > a:hover { color: var(--ink); background: var(--surface-2); }
.dt-nav__menu svg { width: 11px; height: 11px; opacity: .6; }

.dt-drop { position: relative; }
.dt-drop__menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 240px; padding: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  list-style: none; margin: 0;
}
.dt-drop:hover .dt-drop__menu, .dt-drop:focus-within .dt-drop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dt-drop__menu a { display: block; padding: 10px 13px; border-radius: 11px; color: var(--ink-2); font-size: .95rem; transition: background .18s, color .18s; }
.dt-drop__menu a:hover { background: var(--surface-2); color: var(--lime); }

.dt-nav__lang { display: inline-flex; align-items: center; gap: 6px; }
.dt-nav__cta { background: var(--lime) !important; color: var(--on-lime) !important; font-weight: 600 !important; }
.dt-nav__cta:hover { background: var(--lime-600) !important; }

.dt-nav__toggle { display: none; background: transparent; border: 1px solid var(--line-2); border-radius: 11px; width: 44px; height: 44px; cursor: pointer; padding: 0; }
.dt-nav__toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.dt-hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 80px); }
.dt-hero__glow { position: absolute; pointer-events: none; filter: blur(90px); opacity: .5; z-index: 0; }
.dt-hero__glow--a { width: 460px; height: 460px; background: radial-gradient(circle, rgba(201,243,29,.32), transparent 70%); top: -80px; right: 8%; }
.dt-hero__glow--b { width: 380px; height: 380px; background: radial-gradient(circle, rgba(67,97,238,.25), transparent 70%); bottom: -60px; left: -40px; }

.dt-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.dt-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: var(--r-pill);
  background: var(--surface);
}
.dt-hero__badge b { color: var(--lime); font-weight: 600; }

.dt-hero h1 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: .94; letter-spacing: -.035em;
  margin: 22px 0 0;
}
.dt-hero h1 .lime { color: var(--lime); }
.dt-hero h1 .out {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.42);
  text-stroke: 2px rgba(255,255,255,.42);
}
.dt-hero__lead { color: var(--ink-2); font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 46ch; margin: 24px 0 0; }
.dt-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.dt-hero__media { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.4; }
.dt-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.dt-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,12,14,.55)); }
.dt-hero__chip {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: rgba(11,12,14,.6); backdrop-filter: blur(8px); border: 1px solid var(--line-2);
  font-family: var(--f-mono); font-size: .8rem; letter-spacing: .03em;
}
.dt-hero__chip b { color: var(--lime); }

/* hero bottom strip — 3 cards (TITAN signature) */
.dt-strip {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1.3fr 1fr; gap: var(--gap);
  margin-top: clamp(28px, 4vw, 46px);
}
.dt-strip__card { border-radius: var(--r-lg); border: 1px solid var(--line); padding: 22px; background: var(--surface); display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.dt-strip__card--light { background: #F4F6F4; color: var(--on-lime); border-color: transparent; }
.dt-strip__card--lime { background: var(--lime); color: var(--on-lime); border-color: var(--lime); }
.dt-strip__avatars { display: flex; align-items: center; }
.dt-strip__avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #F4F6F4; margin-left: -10px; background: var(--surface-3); display: grid; place-items: center; font-size: 14px; }
.dt-strip__avatars span:first-child { margin-left: 0; }
.dt-strip__big { font-family: var(--f-display); font-weight: 700; font-size: 1.9rem; line-height: 1; }
.dt-strip__label { font-size: .9rem; opacity: .8; }
.dt-strip__fact { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.dt-strip__fact p { margin: 0; font-size: .98rem; color: var(--ink-2); }
.dt-strip__nav { display: flex; gap: 8px; flex-shrink: 0; }
.dt-strip__nav button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface-2); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.dt-strip__nav button:hover { background: var(--surface-3); }
.dt-strip__nav svg { width: 14px; height: 14px; }
.dt-strip__card--lime .dt-strip__arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--on-lime); color: var(--lime); display: grid; place-items: center; margin-top: 4px; }
.dt-strip__card--lime .dt-strip__arrow svg { width: 16px; height: 16px; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.dt-section { padding-block: var(--section-y); }
.dt-section--alt { background: var(--bg-2); }

/* ============================================================
   ZONES (image cards w/ label chips)
   ============================================================ */
.dt-zones__top { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.dt-zones__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: clamp(28px, 4vw, 44px); }
.dt-zone {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1 / 1.04; border: 1px solid var(--line); isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.dt-zone img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.dt-zone::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,12,14,.05) 30%, rgba(11,12,14,.85)); }
.dt-zone:hover { transform: translateY(-4px); border-color: var(--lime-line); }
.dt-zone:hover img { transform: scale(1.06); }
.dt-zone__chip { position: absolute; top: 16px; left: 16px; padding: 7px 14px; border-radius: var(--r-pill); background: rgba(11,12,14,.55); backdrop-filter: blur(6px); border: 1px solid var(--line-2); font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.dt-zone__arrow { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%; background: var(--lime); color: var(--on-lime); display: grid; place-items: center; opacity: 0; transform: translateY(-6px) scale(.85); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.dt-zone__arrow svg { width: 16px; height: 16px; }
.dt-zone:hover .dt-zone__arrow { opacity: 1; transform: translateY(0) scale(1); }
.dt-zone h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.01em; margin: 0; }
.dt-zone p { margin: 4px 0 0; font-family: var(--f-mono); font-size: .8rem; color: var(--ink-2); }

/* ============================================================
   BENTO  (the signature block)
   ============================================================ */
.dt-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--gap);
}
.dt-tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  min-height: 168px;
}
.dt-tile:hover { transform: translateY(-3px); border-color: var(--line-2); }
.dt-tile__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--lime); }
.dt-tile__ic svg { width: 22px; height: 22px; }
.dt-tile h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; margin: 4px 0 0; letter-spacing: -.01em; }
.dt-tile p { margin: 0; font-size: .96rem; color: var(--ink-2); line-height: 1.55; }
.dt-tile__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.03em; }
.dt-tile__num span { color: var(--lime); }
.dt-tile__cap { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: auto; }

.dt-tile--wide { grid-column: span 2; }
.dt-tile--tall { grid-row: span 2; }
.dt-tile--lime { background: var(--lime); color: var(--on-lime); border-color: var(--lime); }
.dt-tile--lime .dt-tile__ic { background: rgba(11,12,14,.12); border-color: rgba(11,12,14,.18); color: var(--on-lime); }
.dt-tile--lime p { color: rgba(11,12,14,.78); }
.dt-tile--lime .dt-tile__cap { color: rgba(11,12,14,.6); }

.dt-tile--media { position: relative; overflow: hidden; padding: 0; min-height: 354px; }
.dt-tile--media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dt-tile--media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(201,243,29,.12), rgba(11,12,14,.78)); }
.dt-tile--media .dt-tile__mono { position: absolute; right: -8px; bottom: -28px; font-family: var(--f-display); font-weight: 700; font-size: 13rem; line-height: 1; color: var(--lime); opacity: .92; z-index: 2; }
.dt-tile--media .dt-tile__cardtext { position: absolute; left: 24px; bottom: 24px; z-index: 3; }
.dt-tile--media .dt-tile__cardtext h3 { font-size: 1.4rem; }
.dt-tile--media .dt-tile__cardtext p { color: var(--ink-2); font-family: var(--f-mono); font-size: .78rem; margin-top: 4px; }

/* ============================================================
   ARTICLE CARDS (comparisons / guides)
   ============================================================ */
.dt-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(26px, 4vw, 42px); }
.dt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.dt-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.dt-card:hover { transform: translateY(-4px); border-color: var(--lime-line); }
.dt-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.dt-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dt-card:hover .dt-card__img img { transform: scale(1.05); }
.dt-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dt-card__tag { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); }
.dt-card__title { font-family: var(--f-display); font-weight: 700; font-size: 1.28rem; line-height: 1.15; letter-spacing: -.01em; margin: 0; }
.dt-card__excerpt { margin: 0; color: var(--ink-2); font-size: .96rem; flex: 1; }
.dt-card .dt-link { margin-top: 4px; }

/* ============================================================
   PICKS (exhibition list)
   ============================================================ */
.dt-picks { display: flex; flex-direction: column; }
.dt-pick {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
  padding: 24px 8px; border-top: 1px solid var(--line);
  transition: padding-left .3s var(--ease), background .3s var(--ease);
}
.dt-pick:last-child { border-bottom: 1px solid var(--line); }
.dt-pick:hover { padding-left: 20px; background: linear-gradient(90deg, var(--lime-soft), transparent 60%); }
.dt-pick__num { font-family: var(--f-mono); font-size: 1rem; color: var(--lime); width: 30px; }
.dt-pick__name { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.9rem); letter-spacing: -.02em; }
.dt-pick__meta { display: flex; align-items: center; gap: 12px; margin-top: 4px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.dt-pick__meta-tag { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); padding: 4px 10px; border: 1px solid var(--line-2); border-radius: var(--r-pill); }
.dt-pick__right { display: flex; align-items: center; gap: 18px; }
.dt-pick__price { font-family: var(--f-mono); font-weight: 500; font-size: 1.1rem; color: var(--ink); }
.dt-pick__go { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink); transition: background .25s, color .25s, transform .25s; }
.dt-pick__go svg { width: 16px; height: 16px; }
.dt-pick:hover .dt-pick__go { background: var(--lime); color: var(--on-lime); border-color: var(--lime); transform: translateX(2px); }

/* ============================================================
   MARQUEE
   ============================================================ */
.dt-marquee { border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: var(--bg-2); }
.dt-marquee__track { display: flex; gap: 0; width: max-content; animation: dt-scroll 32s linear infinite; }
.dt-marquee__row { display: flex; align-items: center; gap: 30px; padding-right: 30px; }
.dt-marquee span { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.01em; color: var(--ink-2); }
.dt-marquee span.acc { color: var(--lime); }
.dt-marquee .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); }
@keyframes dt-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .dt-marquee__track { animation: none; } }

/* ============================================================
   FAQ
   ============================================================ */
.dt-faq { max-width: 820px; margin-inline: auto; }
.dt-faq__item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: var(--surface); overflow: hidden; transition: border-color .25s; }
.dt-faq__item[open] { border-color: var(--lime-line); }
.dt-faq__item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; }
.dt-faq__item summary::-webkit-details-marker { display: none; }
.dt-faq__icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; transition: background .25s, border-color .25s; }
.dt-faq__icon::before, .dt-faq__icon::after { content: ""; position: absolute; background: var(--ink); top: 50%; left: 50%; transition: transform .25s var(--ease), background .25s; }
.dt-faq__icon::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.dt-faq__icon::after { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.dt-faq__item[open] .dt-faq__icon { background: var(--lime); border-color: var(--lime); }
.dt-faq__item[open] .dt-faq__icon::before, .dt-faq__item[open] .dt-faq__icon::after { background: var(--on-lime); }
.dt-faq__item[open] .dt-faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.dt-faq__answer { padding: 0 22px 22px; color: var(--ink-2); }
.dt-faq__answer p { margin: 0; }
.dt-faq__answer a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.dt-news { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--lime); color: var(--on-lime); padding: clamp(40px, 6vw, 72px); text-align: center; }
.dt-news__deco { position: absolute; right: -40px; top: -40px; font-family: var(--f-display); font-weight: 700; font-size: 18rem; line-height: 1; color: rgba(11,12,14,.06); pointer-events: none; }
.dt-news h2 { position: relative; font-family: var(--f-display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.025em; margin: 0; line-height: 1; }
.dt-news p { position: relative; max-width: 52ch; margin: 16px auto 0; color: rgba(11,12,14,.78); font-size: 1.05rem; }
.dt-news__form { position: relative; display: flex; gap: 10px; max-width: 480px; margin: 28px auto 0; flex-wrap: wrap; justify-content: center; }
.dt-news__input { flex: 1; min-width: 220px; padding: 16px 20px; border-radius: var(--r-pill); border: 1px solid rgba(11,12,14,.25); background: rgba(255,255,255,.6); color: var(--on-lime); font-size: 1rem; }
.dt-news__input::placeholder { color: rgba(11,12,14,.5); }
.dt-news__form .dt-btn { background: var(--on-lime); color: var(--ink); border-color: var(--on-lime); }
.dt-news__form .dt-btn:hover { background: #000; }
.dt-news__note { position: relative; font-family: var(--f-mono); font-size: .78rem; color: rgba(11,12,14,.6); margin-top: 14px; }

/* ============================================================
   DISCLOSURE / FOOTER
   ============================================================ */
.dt-disclosure { font-family: var(--f-mono); font-size: .8rem; color: var(--muted); text-align: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.dt-disclosure a { color: var(--lime); }

.dt-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 76px); }
.dt-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.dt-footer__tagline { color: var(--ink-2); max-width: 38ch; margin: 16px 0 0; font-size: .96rem; }
.dt-footer h4 { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.dt-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dt-footer__links a { color: var(--ink-2); font-size: .96rem; transition: color .2s; }
.dt-footer__links a:hover { color: var(--lime); }
.dt-footer__inline { margin-top: 40px; padding: 18px 0; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: .82rem; color: var(--muted); text-align: center; }
.dt-footer__inline a { color: var(--lime); }
.dt-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 30px; border-top: 1px solid var(--line); margin-top: 0; }
.dt-footer__copy { font-family: var(--f-mono); font-size: .82rem; color: var(--muted); }
.dt-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.dt-footer__legal a { color: var(--ink-2); font-size: .9rem; }
.dt-footer__legal a:hover { color: var(--lime); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.dt-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.dt-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .dt-reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .dt-hero__grid { grid-template-columns: 1fr; }
  .dt-hero__media { aspect-ratio: 16/10; order: -1; }
  .dt-strip { grid-template-columns: 1fr 1fr; }
  .dt-strip__card--lime { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; }
  .dt-bento { grid-template-columns: repeat(2, 1fr); }
  .dt-tile--media { grid-column: span 2; grid-row: auto; min-height: 280px; }
  .dt-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .dt-nav__menu {
    position: fixed; inset: 64px 12px auto 12px; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px;
    margin-left: 0; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s, transform .25s, visibility .25s;
  }
  .dt-nav__menu--open { opacity: 1; visibility: visible; transform: none; }
  .dt-nav__toggle { display: block; margin-left: auto; }
  .dt-drop__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 0 12px; }
  .dt-zones__grid { grid-template-columns: 1fr 1fr; }
  .dt-cards { grid-template-columns: 1fr; }
  .dt-zones__top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .dt-strip { grid-template-columns: 1fr; }
  .dt-strip__card--lime { grid-column: auto; }
  .dt-bento { grid-template-columns: 1fr; }
  .dt-tile--wide, .dt-tile--media { grid-column: auto; }
  .dt-tile--media .dt-tile__mono { font-size: 9rem; }
  .dt-zones__grid { grid-template-columns: 1fr; }
  .dt-footer__grid { grid-template-columns: 1fr; }
  .dt-pick { grid-template-columns: auto 1fr; gap: 14px; }
  .dt-pick__right { grid-column: 2; justify-content: flex-start; margin-top: 8px; }
}
