:root {
  --bg: #10121B;
  --cream: #E7E1CF;
  --green: #76B25C;
  --green-dim: rgba(118, 178, 92, 0.10);
  --green-hover: #88C76C;
  --brand-green: #02FF9E;
  --loss: #D46A57;
  --loss-dim: rgba(212, 106, 87, 0.14);
  --muted: #8A8E9E;
  --line: #E7E1CF;
  --line-soft: rgba(231, 225, 207, 0.16);

  --head: 'Kode Mono', ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
  --body: 'IBM Plex Mono', ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;

  --fs-hero: clamp(34px, calc(20px + 2vw), 58px);
  --fs-h2: clamp(28px, calc(18px + 1.7vw), 48px);
  --fs-h3: clamp(21px, calc(15px + 1vw), 33px);
  --fs-num: clamp(40px, calc(24px + 2.6vw), 88px);
  --fs-lead: clamp(14px, calc(10px + 0.5vw), 20px);
  --fs-body: clamp(13px, calc(10px + 0.35vw), 17px);
  --fs-sm: 14px;
  --fs-xs: 12px;
  --fs-stat: clamp(30px, calc(20px + 1.6vw), 48px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 479px) {
  :root {
    --fs-hero: max(28px, 8vw);
    --fs-h2: max(24px, 6.6vw);
    --fs-h3: max(20px, 5.4vw);
    --fs-num: max(40px, 13vw);
    --fs-lead: max(13px, 3.9vw);
    --fs-body: max(12px, 3.6vw);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-transform: uppercase;
}

h1 span, h2 span, h3 span { color: inherit; }

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.rupee { font-family: var(--body); font-weight: 500; }
.num {
  font-variant-numeric: tabular-nums lining-nums slashed-zero;
  font-feature-settings: "tnum" 1, "lnum" 1, "zero" 1;
  white-space: nowrap;
}
.is-gain { color: var(--green); }
.is-loss { color: var(--loss); }

/* ===== CTA ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(14px, 0.97vw, 18px);
  text-transform: uppercase;
  color: var(--cream);
  background: var(--green-dim);
  border: 1px solid var(--green);
  border-radius: 4px;
  padding: clamp(9px, 0.8vw, 14px) clamp(20px, 1.9vw, 34px);
  cursor: pointer;
  transition: background 0.2s var(--ease), opacity 0.2s var(--ease);
}
.cta:hover { background: rgba(118, 178, 92, 0.18); }
@media (max-width: 479px) { .cta { font-size: 3.6vw; padding: 3vw 7vw; min-height: 44px; } }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 50; height: 80px; background: var(--bg); border-bottom: 1px solid var(--line); }
.site-header .header-row { display: flex; align-items: center; height: 100%; gap: 40px; padding: 0 4vw 0 3.5vw; }
.header-brand { display: inline-flex; align-items: center; gap: 12px; }
.site-header .brand { display: inline-flex; align-items: center; }
.site-header .brand img { width: 120px; height: auto; }
.header-brand__sl { color: var(--muted); font-family: var(--head); font-weight: 600; font-size: var(--fs-sm); line-height: 1; }
.header-brand__name { font-family: var(--head); font-weight: 600; font-style: italic; font-size: var(--fs-sm); letter-spacing: 0.04em; text-transform: uppercase; color: var(--brand-green); line-height: 1; }
.header-nav { flex: 1; display: flex; align-items: center; gap: 40px; }
.header-link { font-family: var(--body); font-weight: 300; font-size: var(--fs-sm); color: var(--cream); }
.header-link:hover { color: var(--green); }
.header-link--login { display: none; }
.site-header .login-link { display: inline-flex; align-items: center; gap: 17px; color: var(--cream); }
.site-header .login-link .login-icon { width: 13px; height: 13px; }
.site-header .login-link span { font-family: var(--body); font-weight: 300; font-size: var(--fs-sm); color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.site-header .login-link:hover span { color: var(--green); }

.nav-toggle { display: none; margin-left: auto; width: 26px; padding: 0; border: none; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; height: 1px; margin: 7px 0; background: var(--cream); transform-origin: center; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-header .login-link { display: none; }
  .header-link--login { display: block; }
  .header-nav {
    position: fixed;
    left: 0; right: 0; top: 80px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: 0;
    overflow: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transition: height 0.35s var(--ease);
    z-index: 100;
  }
  .site-header.nav-open .header-nav { height: auto; }
  .header-nav a { padding: 18px 5.6vw; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
  .header-nav a:last-child { border-bottom: none; }
}
@media (max-width: 479px) {
  .site-header { height: 13.6vw; }
  .site-header .brand img { width: 19.4vw; }
  .header-nav { top: 13.6vw; }
}

/* ===== REVEAL ===== */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== HERO ===== */
.dg-hero {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(64px, 9vw, 150px) 4vw clamp(64px, 9vw, 150px) 10vw;
  overflow: hidden;
}
.dg-hero__inner { max-width: 1180px; }
.dg-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 400; font-size: var(--fs-xs);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 26px;
}
.dg-hero__eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--green); }
.dg-hero h1 { font-size: var(--fs-hero); max-width: 20ch; }
.dg-hero__lead {
  margin-top: 24px; max-width: 60ch;
  font-family: var(--body); font-weight: 300; font-size: var(--fs-lead); line-height: 1.6; color: var(--cream);
}
.dg-hero__ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 479px) {
  .dg-hero { padding-block: 20vw 24vw; }
  .dg-hero__lead { margin-top: 6vw; }
  .dg-hero__ctas { margin-top: 10vw; }
}

/* ===== SECTION HEAD (full-bleed band) ===== */
.dg-sectionhead {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 7vw, 110px) 4vw clamp(40px, 5vw, 72px) 10vw;
}
.dg-sectionhead h2 { font-size: var(--fs-h2); max-width: 22ch; }
.dg-sectionhead__num { display: block; font-family: var(--body); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.dg-sectionhead--center { align-items: center; text-align: center; padding-inline: 5vw; }
.dg-sectionhead--center h2 { max-width: 32ch; margin-inline: auto; }
@media (max-width: 479px) { .dg-sectionhead { padding: 14vw 5.6vw 8vw; } }

/* Item 4 — "Six AI tests" head styled as the homepage section banner (cream band, dark bold, centered).
   Spacing tightened to match the homepage section-banner-jan2026 (thin band). */
.dg-banner-head {
  background: var(--cream);
  color: var(--bg);
  align-items: center;
  text-align: center;
  padding: clamp(16px, 2vw, 30px) 5vw;
}
.dg-banner-head h2 {
  color: var(--bg);
  font-weight: 700;
  font-size: clamp(22px, calc(15px + 1.2vw), 38px);
  max-width: none;
  margin-inline: auto;
}
.dg-banner-head h2 span { color: inherit; }
@media (max-width: 479px) { .dg-banner-head { padding: 4vw 5.6vw; } }

/* ===== TEST BANDS (mirror homepage feature sections) ===== */
.dg-band {
  display: flex;
  min-height: 40vw;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.dg-band.reverse { flex-direction: row-reverse; }

.dg-band__aside {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 3vw 6vw 3vw 10vw;
}
.dg-band.reverse .dg-band__aside { padding: 3vw 10vw 3vw 6vw; }
.dg-band__kicker { display: flex; align-items: baseline; gap: 16px; font-family: var(--head); font-weight: 600; font-size: clamp(15px, calc(11px + 0.5vw), 21px); letter-spacing: 0.02em; text-transform: uppercase; color: var(--green); }
.dg-band__kicker b { color: var(--green); font-weight: 700; font-size: clamp(40px, calc(26px + 2.6vw), 76px); line-height: 0.85; letter-spacing: -0.03em; }
@media (max-width: 479px) { .dg-band__kicker { gap: 12px; } }
.dg-band__title { font-size: var(--fs-h3); max-width: 20ch; }
.dg-band__sub { font-family: var(--body); font-weight: 300; font-size: var(--fs-lead); line-height: 1.55; color: var(--muted); max-width: 42ch; }

.dg-band__media {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.6vw 6vw;
  border-left: 1px solid var(--line);
  min-width: 0;
}
.dg-band.reverse .dg-band__media { border-left: none; border-right: 1px solid var(--line); }
.dg-viz { width: 100%; max-width: 560px; }

@media (max-width: 860px) {
  .dg-band, .dg-band.reverse { flex-direction: column; }
  .dg-band__aside, .dg-band.reverse .dg-band__aside { flex: none; padding: 12vw 6vw 8vw; }
  .dg-band__media, .dg-band.reverse .dg-band__media { flex: none; border-left: none; border-right: none; border-top: 1px solid var(--line); padding: 12vw 6vw 14vw; }
  .dg-viz { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 479px) {
  .dg-band__aside, .dg-band.reverse .dg-band__aside { padding: 8vw 5.6vw 6vw; }
  .dg-band__media, .dg-band.reverse .dg-band__media { padding: 6vw 5.6vw 8vw; }
  .dg-band__sub { display: none; }
}

/* ===== DATA VIZ (flat, hard-edged instrument panels) ===== */
.dtiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.dtile { display: flex; flex-direction: column; gap: 14px; padding: 22px; background: var(--bg); }
.dtile--wide { grid-column: 1 / -1; }
.dtile__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.dtile__name { font-family: var(--body); font-weight: 500; font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.dtile__big { font-family: var(--head); font-weight: 600; font-size: var(--fs-stat); line-height: 1; }
.dtile__kpis { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.dtile__kpi { font-family: var(--body); font-variant-numeric: tabular-nums slashed-zero; font-size: var(--fs-xs); color: var(--muted); border: 1px solid var(--line-soft); padding: 3px 9px; }

.single { border: 1px solid var(--line-soft); }
.single .dtile { padding: 26px; }

/* asymmetry bars */
.asym { display: flex; flex-direction: column; gap: 16px; }
.asym__row { display: grid; grid-template-columns: 5rem 1fr auto; align-items: center; gap: 14px; }
.asym__k { font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.asym__track { height: 14px; background: rgba(231, 225, 207, 0.06); overflow: hidden; }
.asym__fill { display: block; height: 100%; }
.asym__fill.is-gain { background: var(--green); }
.asym__fill.is-loss { background: var(--loss); }
.asym__v { font-variant-numeric: tabular-nums slashed-zero; font-size: var(--fs-sm); color: var(--cream); white-space: nowrap; }

/* pie */
.pie { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
.pie__disc { width: 104px; height: 104px; border-radius: 50%; flex: none; background: conic-gradient(var(--green) 0 45%, color-mix(in srgb, var(--green) 45%, var(--bg)) 45% 80%, var(--muted) 80% 100%); }
.pie__legend { display: flex; flex-direction: column; gap: 10px; }
.pie__row { display: grid; grid-template-columns: 12px 1fr auto; gap: 12px; align-items: center; font-size: var(--fs-sm); color: var(--muted); }
.pie__sw { width: 12px; height: 12px; }
.pie__v { font-variant-numeric: tabular-nums slashed-zero; color: var(--cream); }

/* heatmap */
.heat { display: grid; grid-template-columns: 2.4rem repeat(7, 1fr); gap: 3px; }
.heat__cell { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; font-size: 9px; font-variant-numeric: tabular-nums; color: var(--muted); }
.heat__lab { font-size: 10px; letter-spacing: 0.04em; color: var(--muted); display: flex; align-items: center; }

/* underwater */
.uw { display: block; width: 100%; height: auto; max-height: 150px; }
.uw__fill { fill: var(--loss-dim); }
.uw__line { fill: none; stroke: var(--loss); stroke-width: 2; }
.uw__zero { fill: none; stroke: var(--line-soft); stroke-width: 1; stroke-dasharray: 3 3; }

/* weekly bars */
.wk { display: flex; align-items: stretch; gap: 5px; height: 150px; }
.wk__col { flex: 1; display: flex; flex-direction: column; }
.wk__top { flex: 1; display: flex; align-items: flex-end; border-bottom: 1px solid var(--line-soft); }
.wk__bot { flex: 1; display: flex; align-items: flex-start; }
.wk__bar { width: 100%; }
.wk__bar.is-gain { background: var(--green); }
.wk__bar.is-loss { background: var(--loss); }

/* vitals */
.vitals { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.vital { display: flex; flex-direction: column; gap: 6px; padding: 22px; background: var(--bg); }
.vital__k { font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.vital__v { font-family: var(--head); font-weight: 600; font-size: var(--fs-h3); }
.spark { display: flex; align-items: flex-end; gap: 3px; height: 40px; margin-top: 8px; padding-bottom: 4px; border-bottom: 1px solid var(--line-soft); }
.spark i { display: block; width: 8px; }
.spark .is-gain { background: var(--green); }
.spark .is-loss { background: var(--loss); }
.vital-line { display: block; width: 100%; height: 40px; margin-top: 8px; }

@media (max-width: 479px) {
  .dtiles { grid-template-columns: 1fr 1fr; }
  .dtile { padding: 16px; }
  .dtile:not(.dtile--wide) .dtile__big { font-size: clamp(20px, 5.4vw, 28px); }
  .pie { grid-template-columns: 1fr; gap: 16px; justify-items: start; }
  .pie__disc { width: 88px; height: 88px; }
  .pie__row { font-size: 13px; }
}

/* ===== QUESTIONS ===== */
/* Item 7 — breather above the section head; Item 6 — breather below the marquee */
.dg-questions { background: var(--bg); border-bottom: 1px solid var(--line); padding-top: clamp(28px, 4vw, 72px); padding-bottom: clamp(48px, 6vw, 104px); }
.dg-qgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
}
.dg-qcell {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 5vw 28px 10vw;
  background: var(--bg);
  font-family: var(--body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--cream);
}
.dg-qcell:nth-child(even) { padding-left: 6vw; }
.dg-qcell__mark { flex: none; margin-top: 2px; color: var(--green); font-family: var(--head); font-weight: 700; font-size: var(--fs-sm); }
@media (max-width: 860px) {
  .dg-qgrid { grid-template-columns: 1fr; }
  .dg-qcell, .dg-qcell:nth-child(even) { padding: 6vw 5.6vw; }
}

/* ===== CLOSING (cream banner inversion + dark image band) ===== */
.dg-banner {
  background: var(--cream);
  color: var(--bg);
  text-align: center;
  padding: clamp(16px, 2vw, 30px) 5vw;
  border-bottom: 1px solid var(--line);
}
.dg-banner h2 { color: var(--bg); font-weight: 700; font-size: clamp(22px, calc(15px + 1.2vw), 38px); max-width: none; margin-inline: auto; }
.dg-banner span { color: inherit; }
@media (max-width: 479px) { .dg-banner { padding: 4vw 5.6vw; } }

.dg-close {
  background: var(--bg);
  text-align: center;
  padding: clamp(28px, 3.5vw, 64px) 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
/* Item 8 — Punch AI Diagnostics branding in the closing section (mirrors the site header brand lockup) */
.dg-brandmark { display: inline-flex; align-items: center; gap: 12px; }
.dg-brandmark img { width: 120px; height: auto; }
.dg-brandmark__sl { color: var(--muted); font-family: var(--head); font-weight: 600; font-size: var(--fs-sm); line-height: 1; }
.dg-brandmark__name { font-family: var(--head); font-weight: 600; font-style: italic; font-size: var(--fs-sm); letter-spacing: 0.04em; text-transform: uppercase; color: var(--brand-green); line-height: 1; }

.dg-close__frame { width: 100%; max-width: 720px; margin: 0; padding-top: clamp(12px, 3vw, 24px); }
.dg-close__frame img { width: 100%; display: block; transform: scale(1.0); transition: transform 0.6s ease-out; }
.dg-close.is-visible .dg-close__frame img { transform: scale(1.10); transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) { .dg-close__frame img, .dg-close.is-visible .dg-close__frame img { transform: scale(1.10); transition: none; } }
.dg-close__price, .dg-hero__price { font-family: var(--body); font-size: var(--fs-sm); color: var(--muted); }
.dg-close__price .free, .dg-hero__price .free { color: var(--cream); font-weight: 500; }
@media (max-width: 479px) { .dg-close { padding: 18vw 5vw; } }
.dg-close__price .amt, .dg-hero__price .amt { color: var(--cream); font-variant-numeric: tabular-nums slashed-zero; }
.dg-close__price .per, .dg-hero__price .per { color: var(--cream); }
.dg-hero__price { margin-top: clamp(14px, 3.5vw, 22px); }

/* ===== EARLY ACCESS STATES ===== */
.ea-slot { display: inline-grid; place-items: center; }
.ea-slot > * { grid-area: 1 / 1; }
.ea-btn { transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s; }
.ea-pending, .is-waitlisted { opacity: 0; visibility: hidden; transform: translateY(4px); pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s 0.22s; }
.ea-pending { cursor: default; background: transparent; border-color: var(--line-soft); color: var(--muted); }
.ea-pending .ea-dots { display: inline-flex; gap: 5px; margin-left: 8px; }
.ea-pending .ea-dots i { width: 5px; height: 5px; border-radius: 999px; background: var(--green); }
@media (prefers-reduced-motion: no-preference) {
  .ea-pending .ea-dots i { animation: eaBeat 1s var(--ease) infinite; }
  .ea-pending .ea-dots i:nth-child(2) { animation-delay: 0.15s; }
  .ea-pending .ea-dots i:nth-child(3) { animation-delay: 0.3s; }
}
@keyframes eaBeat { 0%, 100% { opacity: 0.3; } 40% { opacity: 1; } }
.is-waitlisted { cursor: default; background: var(--green-dim); border: 1px solid var(--green); color: var(--cream); }
.ea-check { width: 15px; height: 15px; flex: 0 0 auto; }
.ea-check path { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
html.ea-confirming .ea-btn, html.ea-waitlisted .ea-btn { opacity: 0; visibility: hidden; transform: translateY(-4px); pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s 0.22s; }
html.ea-confirming .ea-pending { opacity: 1; visibility: visible; transform: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s; }
html.ea-waitlisted .is-waitlisted { opacity: 1; visibility: visible; transform: none; transition: opacity 0.22s var(--ease) 60ms, transform 0.22s var(--ease) 60ms, visibility 0s; }
html.ea-waitlisted .ea-check path { stroke-dashoffset: 0; transition: stroke-dashoffset 320ms var(--ease) 180ms; }

/* ===== HERO CENTER + DIAGNOSE/MEASURE/FIX WIDGET (item 1) ===== */
.dg-hero--center { text-align: center; padding-inline: 5vw; }
.dg-hero--center .dg-hero__inner { max-width: 900px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.dg-hero--center h1 { max-width: 22ch; }
.dg-hero--center .dg-hero__lead { margin-inline: auto; }
.dg-hero--center .dg-hero__ctas { justify-content: center; }

.c1 { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 24px; }
.c1__words { display: grid; grid-template-columns: repeat(3, max-content); gap: clamp(24px, 4vw, 44px); font-size: clamp(12px, 1vw, 14px); }
.pw { font-family: var(--head); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.pw.is-fix { color: var(--green); }
.c1__line { display: block; width: 300px; max-width: 60vw; height: 18px; }
.c1__line .flat { stroke: var(--line-soft); }
.c1__line .beat { stroke: var(--green); }
@media (prefers-reduced-motion: no-preference) {
  .c1__line .beat { stroke-dasharray: 0.55 0.45; stroke-dashoffset: 0; animation: beatsweep 2400ms linear infinite; }
}
@keyframes beatsweep { to { stroke-dashoffset: -1; } }
@media (max-width: 479px) {
  .dg-hero--center .c1 { margin-bottom: 8vw; }
}

/* ===== QUESTIONS MARQUEE (item 9 — hard-edged chips, restrained) ===== */
.dg-marquee {
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  padding-block: clamp(24px, 3vw, 48px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.dg-mrow { display: flex; overflow: hidden; }
.dg-mtrack { display: flex; width: max-content; will-change: transform; }
.dg-mset { display: flex; }
.dg-mtrack--l { animation: dgScrollL 46s linear infinite; }
.dg-mtrack--r { animation: dgScrollR 52s linear infinite; }
.dg-mtrack--l2 { animation: dgScrollL 58s linear infinite; }
.dg-marquee:hover .dg-mtrack, .dg-marquee:focus-within .dg-mtrack { animation-play-state: paused; }
.dg-chip {
  display: inline-flex; align-items: center; white-space: nowrap;
  margin-right: 14px; padding: 12px 18px;
  border: 1px solid var(--line-soft); background: rgba(231, 225, 207, 0.02);
  color: var(--cream); font-family: var(--body); font-weight: 300; font-size: var(--fs-body);
}
@keyframes dgScrollL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dgScrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .dg-mtrack--l, .dg-mtrack--r, .dg-mtrack--l2 { animation: none !important; }
  .dg-mrow { overflow-x: auto; scrollbar-width: none; }
  .dg-mrow::-webkit-scrollbar { display: none; }
  .dg-mset[aria-hidden="true"] { display: none; }
}

/* ===== SIX-TESTS CAROUSEL — Replace / crossfade (locked; no-JS = stacked bands) ===== */
.dg-carousel { display: block; }
.dg-carousel.is-enhanced { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.dg-carousel.is-enhanced .dg-band { border-bottom: none; min-height: 0; }
.dg-carousel__viewport { position: relative; }
.dg-carousel__track { position: relative; min-height: var(--dg-carousel-h, 60vh); }

.dg-carousel.is-enhanced .dg-band {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
.dg-carousel.is-enhanced .dg-band.is-active {
  opacity: 1; visibility: visible; transition: opacity 0.5s var(--ease);
}
/* Item 5 — no load flash/overlap: keep only the first slide before JS enhances, and
   suppress the crossfade transition on the first paint so slides don't fade 1->0 stacked. */
html.js .dg-carousel:not(.is-enhanced) .dg-band:not(:first-child) { display: none; }
.dg-carousel.is-init .dg-band,
.dg-carousel.is-init .dg-band.is-active { transition: none; }

/* measure helper: lay bands out statically to read natural height without revealing inactive slides */
.dg-carousel.is-measuring .dg-carousel__track { min-height: 0; }
.dg-carousel.is-measuring .dg-band { position: static; transition: none; }

@media (prefers-reduced-motion: reduce) {
  .dg-carousel.is-enhanced .dg-band { transition: none; }
}

/* nav */
.dg-carousel__nav { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 20px; border-top: 1px solid var(--line-soft); }
.dg-dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.dg-dot {
  min-width: 36px; height: 36px; padding: 0 8px;
  border: 1px solid var(--line-soft); background: transparent;
  color: var(--muted); font-family: var(--head); font-weight: 600; font-size: 13px;
  font-variant-numeric: tabular-nums; cursor: pointer;
  transition: color 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.dg-dot:hover { color: var(--cream); border-color: var(--cream); }
.dg-dot.is-active { color: var(--bg); background: var(--green); border-color: var(--green); }
.dg-arrow {
  width: 40px; height: 40px; flex: none;
  border: 1px solid var(--line-soft); background: transparent; color: var(--cream);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.dg-arrow:hover { border-color: var(--green); color: var(--green); }
@media (max-width: 560px) { .dg-arrow { display: none; } }

/* persistent autoplay pause/resume (stays visible on mobile; WCAG 2.2.2) */
.dg-playpause {
  width: 40px; height: 40px; flex: none;
  border: 1px solid var(--line-soft); background: transparent; color: var(--cream);
  font-size: 14px; line-height: 1; cursor: pointer; font-family: var(--body);
}
.dg-playpause:hover { border-color: var(--green); color: var(--green); }
.dg-playpause.is-paused { border-color: var(--green); color: var(--green); }

/* ===== FOOTER ===== */
footer.site-footer { border-top: 1px solid var(--cream); }
footer.site-footer .content-wrapper { padding: 0 20px; width: 1300px; max-width: 100%; margin-inline: auto; }
footer.site-footer .footer-nav { padding: 2.5vw 0; display: flex; gap: 6.25vw; }
footer.site-footer .footer-nav .col { width: 25%; }
footer.site-footer .footer-nav .footer-label { margin: 0 0 0.8333vw; font-size: max(14px, 0.8333vw); font-family: var(--head); font-weight: 600; text-transform: uppercase; display: block; color: var(--cream); }
footer.site-footer .footer-nav ul li { margin-bottom: 1.09375vw; }
footer.site-footer .footer-nav ul li a { color: var(--muted); text-decoration: none; display: inline-block; padding-bottom: 2px; font-weight: 300; border-bottom: 1px solid currentColor; font-size: max(13px, 0.8333vw); }
footer.site-footer .footer-nav ul li a:hover { color: var(--cream); }
footer.site-footer .copyright { border-top: 1px solid var(--cream); font-size: 13px; color: var(--muted); padding: 1.5625vw 0; }
footer.site-footer .copyright p { margin: 0; }
@media (max-width: 560px) {
  footer.site-footer .footer-nav { flex-direction: column; gap: 2rem; padding: 2rem 0; }
  footer.site-footer .footer-nav .col { width: 100%; }
  footer.site-footer .copyright { padding: 20px 0; }
}
