/* ===========================================================================
   DashPad landing page — styles
   Single-page marketing site for the DashPad iPad kiosk app.

   Structure:
     1. Design tokens (:root)
     2. Base / reset
     3. Layout primitives (.dp-bleed, .dp-wrap, .dp-section, grids)
     4. Typography (.dp-eyebrow, .dp-h2, .dp-lead, .dp-gtext)
     5. Components (nav, buttons, device mockup, glow, blob bg, steps,
        privacy list, bento tiles, footer)
     6. Mock device screens (.scr-*)
     7. Responsive overrides
   =========================================================================== */

/* ── 1. Design tokens ───────────────────────────────────────────────────── */
:root {
  /* Surfaces, dark → light */
  --bg:            #0e0f10;  /* page background */
  --surface-1:     #141516;  /* hero/CTA blob backdrop, dark cards */
  --surface-2:     #16181a;  /* banded sections (presence, open source) */
  --surface-3:     #1b1e20;  /* feature tiles */
  --device-shell:  #0c0c0e;  /* iPad bezel */
  --device-screen: #0a0a0c;  /* iPad screen well */
  --footer-bg:     #0a0a0c;

  /* Text */
  --ink:        #f5f5f3;
  --ink-strong: #ffffff;

  /* Brand gradient stops */
  --brand-yellow: #F6C944;
  --brand-orange: #F58A4B;
  --brand-pink:   #FC4B7F;
  --brand-grad: linear-gradient(100deg, var(--brand-yellow), var(--brand-orange) 48%, var(--brand-pink));

  /* Hairlines */
  --line:        rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .10);

  /* Shared device shadow (bezel) */
  --device-shadow:
    0 0 0 1px rgba(255,255,255,.14),
    0 0 50px rgba(255,255,255,.10),
    0 40px 80px -26px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.07) inset;

  /* Fonts */
  --font-sans: 'Manrope', 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ── 2. Base / reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  overflow-x: hidden;
}

::selection { background: rgba(252, 75, 127, .30); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Page wrapper sets the type system for everything inside */
.dp {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  max-width: 1600px;
  margin: 0 auto;
}

/* ── 3. Layout primitives ────────────────────────────────────────────────── */

/* Break out of the centered .dp wrapper to span the full viewport width */
.dp-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Centered content column */
.dp-wrap { max-width: 1140px; margin: 0 auto; }

.dp-section { padding: 120px 24px; }
.dp-section--hero       { position: relative; overflow: hidden; padding: 150px 24px 0; background: var(--bg); }
.dp-section--pitch      { padding: 130px 24px 110px; }
.dp-section--band {            /* presence */
  padding: 100px 24px;
  background: var(--surface-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dp-section--privacy    { position: relative; overflow: hidden; background: var(--surface-1); color: #fff; }
.dp-section--settings   { padding: 0 24px 120px; }
.dp-section--opensource {
  padding: 110px 24px;
  background: var(--surface-2);
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.dp-section--cta {
  position: relative;
  overflow: hidden;
  padding: 140px 24px;
  text-align: center;
  background: var(--bg);
}

/* Grids */
.dp-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.dp-split--reverse { grid-template-columns: .95fr 1.05fr; }

.dp-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dp-bento .b2 { grid-column: span 2; }
.dp-bento .b4 { grid-column: span 4; }

.dp-privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ── 4. Typography ───────────────────────────────────────────────────────── */

/* Mono uppercase section label */
.dp-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 22px;
}

/* Section heading */
.dp-h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
.dp-h2--sm { font-size: clamp(28px, 4vw, 44px); line-height: 1.07; }

/* Oversized display heading (hero + closing CTA). Size set inline per instance. */
.dp-display {
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  color: #fff;
  text-wrap: balance;
}

/* Body lead paragraph */
.dp-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
  text-wrap: pretty;
}
/* Larger, brighter lead — used for the closing CTA subtitle */
.dp-lead--lg { font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, .72); }

/* Gradient-filled inline text */
.dp-gtext {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── 5. Components ───────────────────────────────────────────────────────── */

/* Nav -------------------------------------------------------------------- */
.dp-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px clamp(18px, 4vw, 40px);
  background: rgba(14, 15, 16, .6);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.dp-nav__inner {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dp-nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.dp-nav__brand img {
  width: 30px; height: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}
.dp-nav__brand span {
  font-size: 16px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.dp-nav__links { display: flex; align-items: center; gap: clamp(14px, 3vw, 28px); }
.dp-nav__link {
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
}
.dp-nav__link:hover { color: var(--ink); }

/* Buttons / badges ------------------------------------------------------- */
.dp-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #141516;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  text-decoration: none;
}
.dp-badges { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.dp-badge { display: inline-block; }
.dp-badge img { display: block; }

/* "Coming soon" badges (App Store not live yet) -------------------------- */
.dp-badge--soon { position: relative; cursor: default; }
.dp-badge--soon img { opacity: .5; transition: opacity .2s ease; }
.dp-badge--soon:hover img,
.dp-badge--soon:focus-visible img { opacity: .68; }
.dp-badge--soon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(18, 18, 20, .97);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.dp-badge--soon::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: rgba(18, 18, 20, .97);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.dp-badge--soon:hover::after,
.dp-badge--soon:hover::before,
.dp-badge--soon:focus-visible::after,
.dp-badge--soon:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Device mockup (iPad bezel + screen) ------------------------------------ */
.dp-device {
  position: relative;
  background: var(--device-shell);
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--device-shadow);
}
.dp-device--hero {
  border-radius: 30px;
  padding: 13px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.16),
    0 0 60px rgba(255,255,255,.12),
    0 50px 100px -28px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.08) inset;
}
.dp-device__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #26272b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
  z-index: 3;
}
.dp-device__screen {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--device-screen);
}
.dp-device--hero .dp-device__screen { border-radius: 19px; }
.dp-device__screen video { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Soft radial glow placed behind a device. Tint via --glow-color. */
.dp-glow {
  position: absolute;
  inset: -6%;
  z-index: 0;
  background: radial-gradient(closest-side, var(--glow-color, rgba(252,75,127,.4)), transparent 72%);
  filter: blur(46px);
  pointer-events: none;
}

/* Caption under a device */
.dp-caption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

/* Animated gradient blob background (hero + CTA) ------------------------- */
.dp-blob { position: absolute; inset: 0; z-index: 0; }
.dp-blob__inner {
  position: absolute;
  inset: 0;
  isolation: isolate;
  background: var(--surface-1);
  overflow: hidden;
}
/* Blur the morphing shapes with CSS rather than an in-SVG feGaussianBlur.
   Safari/WebKit miscomputes SVG filter regions under preserveAspectRatio="none"
   scaling and won't re-run the filter every SMIL frame, which left the blobs
   clipped or frozen there. CSS blur works in screen pixels and re-renders each
   frame, so it stays soft and animated across browsers. overflow:visible lets
   the shapes bleed past the viewBox before .dp-blob__inner clips the composite. */
.dp-blob__svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible;
  filter: blur(90px);
  -webkit-filter: blur(90px);
}
.dp-blob__svg--dodge { mix-blend-mode: color-dodge; }

/* Legibility scrims layered over the blob */
.dp-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.dp-scrim--hero  { background: radial-gradient(78% 56% at 50% 33%, rgba(8,8,10,.5), transparent 70%); }
.dp-scrim--top   { inset: 0 0 auto 0; height: 120px; background: linear-gradient(to bottom, rgba(8,8,10,.5), transparent); }
.dp-scrim--fade  { inset: auto 0 0 0; height: 220px; z-index: 3; background: linear-gradient(to bottom, transparent, var(--bg)); }
.dp-scrim--cta   { background: radial-gradient(72% 72% at 50% 50%, rgba(8,8,10,.45), transparent 72%); }

/* Privacy section ambient color wash */
.dp-privacy-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 16% 18%, rgba(246,201,68,.30), transparent 60%),
    radial-gradient(44% 54% at 88% 80%, rgba(252,75,127,.28), transparent 62%),
    radial-gradient(40% 48% at 60% 8%,  rgba(245,138,75,.18), transparent 60%);
}

/* Numbered step list (presence "how it works") --------------------------- */
.dp-steps { display: flex; flex-direction: column; }
.dp-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
}
.dp-step:last-child { border-bottom: 1px solid var(--line-strong); }
.dp-step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-pink);
  flex-shrink: 0;
  width: 28px;
}
.dp-step h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.dp-step p  { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .5); }

/* Privacy points list ---------------------------------------------------- */
.dp-point { display: flex; align-items: flex-start; gap: 14px; }
.dp-point__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}
.dp-point h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.dp-point p  { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .55); }

/* Privacy intro (centered) --------------------------------------------- */
.dp-privacy-intro { max-width: 560px; margin: 0 auto; text-align: center; }
.dp-privacy-intro .dp-lead { max-width: 460px; margin-left: auto; margin-right: auto; }

/* Privacy tiles -------------------------------------------------------- */
.dp-ptile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.dp-ptile:hover {
  background: rgba(255, 255, 255, .05);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.dp-ptile__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--brand-grad);
  box-shadow: 0 0 0 4px rgba(252, 75, 127, .12);
}
.dp-ptile h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.dp-ptile p  { font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, .55); }

/* Feature bento tiles ---------------------------------------------------- */
.dp-tile {
  background: var(--surface-3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 143px;
}
.dp-tile--sm { padding: 26px; }              /* narrower tiles */
.dp-tile--dark { background: var(--surface-1); color: #fff; }
.dp-tile--feature {                          /* the tall code-injection tile */
  grid-row: span 2;
  justify-content: space-between;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}
.dp-tile--accent {                           /* the gradient favourites tile */
  border: 0;
  border-radius: 20px;
  background: var(--brand-grad);
  padding: 30px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dp-tile__icon { color: var(--ink); }
.dp-tile h3 { font-size: 18px; font-weight: 700; letter-spacing: -.015em; color: var(--ink); margin-bottom: 6px; }
.dp-tile--sm h3 { font-size: 17px; }
.dp-tile p  { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .5); }
.dp-tile--sm p { font-size: 13.5px; }

/* Wash inside the feature tile */
.dp-tile__wash {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 80% 0%, rgba(252,75,127,.28), transparent 60%);
}

/* Code sample chip inside the feature tile */
.dp-code {
  position: relative;
  margin-top: 24px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
}
.dp-code .tok-sel  { color: var(--brand-pink); }
.dp-code .tok-prop { color: var(--brand-yellow); }
.dp-code .tok-num  { color: #7fd1a8; }
.dp-code .tok-punc { color: rgba(255, 255, 255, .5); }

/* Accent tile copy + swatch row */
.dp-tile--accent h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: #141516; margin-bottom: 6px; }
.dp-tile--accent p  { font-size: 14.5px; line-height: 1.55; color: rgba(20, 21, 22, .72); }
.dp-swatches { display: flex; gap: 8px; }
.dp-swatch { width: 46px; height: 46px; border-radius: 12px; }
.dp-swatch--1 { background: rgba(20, 21, 22, .16); }
.dp-swatch--2 { background: rgba(20, 21, 22, .28); }
.dp-swatch--3 { background: rgba(255, 255, 255, .55); }

/* Footer ----------------------------------------------------------------- */
.dp-footer {
  padding: 40px 24px;
  background: var(--footer-bg);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.dp-footer__bar {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.dp-footer__brand { display: flex; align-items: center; gap: 11px; }
.dp-footer__brand img { width: 30px; height: 30px; border-radius: 8px; }
.dp-footer__brand span { font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.dp-footer__nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.dp-footer__nav a { font-size: 14px; color: rgba(255, 255, 255, .55); text-decoration: none; }
.dp-footer-soon { font-size: 14px; color: rgba(255, 255, 255, .4); cursor: default; }
.dp-footer-soon em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5px;
  padding: 1px 5px;
  margin-left: 5px;
  vertical-align: 1px;
}
.dp-footer__fine {
  max-width: 1140px;
  margin: 16px auto 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 16px;
}
.dp-footer__fine p { font-size: 12.5px; color: rgba(255, 255, 255, .36); }

/* ── 6. Mock device screens (stand-ins for app screenshots) ─────────────── */
.scr { position: absolute; inset: 0; font-family: var(--font-sans); color: var(--ink); }

.scr-idle {
  background: #070708;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2%;
}
.scr-idle .clock { font-size: clamp(40px,13vw,120px); font-weight: 800; letter-spacing: -.04em; color: var(--ink); }
.scr-idle .date  { font-family: var(--font-mono); font-size: clamp(10px,2.4vw,16px); color: rgba(255,255,255,.4); letter-spacing: .08em; }

.scr-set { background: #141618; padding: 7% 8%; display: flex; flex-direction: column; gap: 4%; }
.scr-set .set-title { font-size: clamp(15px,3.4vw,24px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1%; }
.scr-set .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 3.4% 0; border-top: 1px solid rgba(255,255,255,.08);
}
.scr-set .row label { font-size: clamp(10px,2.4vw,15px); color: rgba(255,255,255,.78); font-weight: 500; }
.scr-set .row .val  { font-family: var(--font-mono); font-size: clamp(9px,2.1vw,13px); color: rgba(255,255,255,.45); }
.scr-set .toggle {
  width: clamp(30px,7vw,46px); height: clamp(18px,4vw,26px);
  border-radius: 99px;
  background: linear-gradient(100deg,#F58A4B,#FC4B7F);
  position: relative; flex-shrink: 0;
}
.scr-set .toggle::after {
  content: ""; position: absolute; top: 14%; right: 8%; width: 42%; height: 72%; border-radius: 50%; background: #fff;
}
.scr-set .toggle.off { background: rgba(255,255,255,.15); }
.scr-set .toggle.off::after { right: auto; left: 8%; }

/* ── 7. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dp-bento { grid-template-columns: repeat(2, 1fr); }
  .dp-bento .b2, .dp-bento .b4 { grid-column: span 2; }
  .dp-split, .dp-split--reverse { grid-template-columns: 1fr; gap: 40px; }
  .dp-privacy-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .dp-bento { grid-template-columns: 1fr; }
  .dp-bento .b2, .dp-bento .b4 { grid-column: span 1; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Scroll reveal — only active when JS is present (.dp-js on <html>), so
   no-JS clients and crawlers always see the content. Driven by an
   IntersectionObserver that adds .is-visible. data-reveal animates one
   element; data-reveal-stagger cascades its direct children via --dp-i.
   ───────────────────────────────────────────────────────────────────────── */
.dp-js [data-reveal],
.dp-js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
              transform .7s cubic-bezier(.16, 1, .3, 1);
}
.dp-js [data-reveal-stagger] > * {
  transition-delay: calc(var(--dp-i, 0) * 70ms);
}
.dp-js [data-reveal].is-visible,
.dp-js [data-reveal-stagger] > .is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .dp-js [data-reveal],
  .dp-js [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 8. Legal / prose pages (privacy policy, etc.) ─────────────────────── */
.dp-page { padding-top: 72px; }
.dp-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 24px 120px;
}
.dp-prose__title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
}
.dp-prose__updated {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
}
.dp-prose__lead {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}
.dp-prose h2 {
  margin-top: 44px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
}
.dp-prose p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
}
.dp-prose a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dp-prose a:hover { color: #fff; }
.dp-prose__divider {
  margin-top: 44px;
  border: 0;
  border-top: 1px solid var(--line);
}
.dp-prose__foot {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
}
