/* ==========================================================================
   DynamicPort — site.css
   Design tokens and components lifted from "DynamicPort Website.dc.html"
   (Claude Design project 04c1a975-6336-421a-9afa-254bfd9e6f27).
   Light-only by design: white ground with #070d18 sections.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand */
  --green: #8CC63F;
  --green-deep: #5B9E31;
  --green-cta: #7BBE45;
  --teal: #00A99D;
  --blue: #1B75BB;
  --sky: #5AA9E6;
  --sky-2: #4FA3E3;

  --grad-cta: linear-gradient(100deg, #7BBE45, #1B75BB);
  --grad-accent: linear-gradient(120deg, #7BBE45, #1B75BB);
  --grad-rule: linear-gradient(90deg, #8CC63F, #1B75BB);

  /* Ink */
  --dark: #070d18;
  --ink: #101828;
  --slate: #3c4451;
  --body: #5A6474;
  --muted: #69737f;
  --muted-2: #8b95a3;
  --muted-3: #7c8798;
  --on-dark: #ffffff;
  --on-dark-body: #a9b4c4;
  --on-dark-link: #98a3b3;
  --on-dark-faint: #6f7b8c;
  --on-dark-soft: #dbe2ea;

  /* Surfaces */
  --surface: #ffffff;
  --surface-2: #fafbfc;
  --surface-3: #f6f8fa;
  --surface-4: #f2f6f9;
  --surface-5: #f4f6f8;

  /* Borders */
  --line: #e7ebf0;
  --line-2: #eaeef2;
  --line-3: #dde3ea;
  --line-4: #d5dfe8;
  --line-5: #eef1f4;

  /* Type */
  --font-sans: Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-wordmark: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Elevation */
  --shadow-card: 0 20px 40px -26px rgba(16, 24, 40, .3);
  --shadow-card-lg: 0 24px 48px -34px rgba(16, 24, 40, .35);
  --shadow-cta: 0 6px 18px -8px rgba(27, 117, 187, .7);
  --shadow-cta-lg: 0 14px 34px -14px rgba(0, 169, 157, .9);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--surface);
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover { color: var(--green); }

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

input,
textarea,
button,
select { font-family: inherit; font-size: inherit; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 { margin: 0; }

p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.dp-section--dark :focus-visible,
.dp-footer :focus-visible { outline-color: var(--green); }

.dp-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.dp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}

.dp-skip:focus {
  left: 0;
  color: #fff;
}

/* --------------------------------------------------------------------------
   3. Motion
   -------------------------------------------------------------------------- */

@keyframes dpSpin  { to { transform: rotate(360deg); } }
@keyframes dpSpinR { to { transform: rotate(-360deg); } }
@keyframes dpDraw  { from { stroke-dashoffset: 305; } to { stroke-dashoffset: 0; } }
@keyframes dpPulse { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes dpRise  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes dpFade  { from { opacity: 0; } to { opacity: 1; } }

.dp-rise { animation: dpRise .7s cubic-bezier(.2, .7, .2, 1) both; }
.dp-fade { animation: dpFade .3s both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .dp-orbit g { animation: none !important; }
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */

.dp-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dp-main { flex: 1; }

.dp-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.dp-section { padding-block: clamp(64px, 8vw, 104px); }
.dp-section--tight { padding-block: clamp(48px, 6vw, 64px); }
.dp-section--top { padding-block: 80px 0; }
.dp-section--flush-top { padding-top: 0; }

.dp-section--dark {
  background: var(--dark);
  color: var(--on-dark);
}

.dp-section--band {
  background: var(--surface-3);
  border-block: 1px solid var(--line-2);
}

/* Spacing rhythms taken straight from the design's per-section padding. */
.dp-band__inner { padding-block: 80px; }
.dp-section--teaser { padding-block: 0 88px; }
.dp-section--cta { padding-block: 88px; }
.dp-section--after-head { padding-block: 56px 0; }
.dp-section--after-head-lg { padding-block: 88px 0; }
.dp-section--stats { padding-block: 88px 0; }

.dp-spacer { height: 96px; }
.dp-spacer--lg { height: 104px; }

/* --------------------------------------------------------------------------
   5. Type
   -------------------------------------------------------------------------- */

.dp-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.2px;
  color: var(--green-deep);
  text-transform: uppercase;
}

.dp-section--dark .dp-eyebrow,
.dp-eyebrow--on-dark { color: var(--green); }

.dp-eyebrow--sm {
  font-size: 11px;
  letter-spacing: 1.6px;
}

.dp-eyebrow--label {
  font-size: 11.5px;
  letter-spacing: 1.8px;
  color: var(--muted-2);
}

.dp-h1 {
  margin: 16px 0 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -.032em;
  font-weight: 800;
  text-wrap: balance;
}

.dp-h1--hero {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.035em;
  color: #fff;
}

.dp-h1--wide {
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
}

.dp-h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.028em;
  font-weight: 800;
  text-wrap: balance;
}

.dp-h2--sm {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -.026em;
}

.dp-h2--xs {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.14;
  letter-spacing: -.026em;
}

/* The design always sets 16px between an eyebrow and the heading under it. */
.dp-eyebrow + .dp-h2 { margin-top: 16px; }

.dp-lead {
  margin: 22px 0 0;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}

.dp-lead--sm {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.68;
}

.dp-lead--md {
  margin-top: 20px;
  font-size: 17px;
}

.dp-section--dark .dp-lead { color: var(--on-dark-body); }

/* Headline measures, matching the per-page max-widths in the design. */
.dp-measure { max-width: 620px; }
.dp-measure--narrow { max-width: 520px; }
.dp-measure-600 { max-width: 600px; }
.dp-measure-640 { max-width: 640px; }
.dp-measure-660 { max-width: 660px; }
.dp-measure-700 { max-width: 700px; }
.dp-measure-720 { max-width: 720px; }
.dp-measure-760 { max-width: 760px; }
.dp-measure-800 { max-width: 800px; }
.dp-measure-840 { max-width: 840px; }

.dp-headline-center {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.dp-btn {
  display: inline-block;
  padding: 13px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--grad-cta);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}

.dp-btn:hover { opacity: .9; color: #fff; }

.dp-btn--header {
  padding: 11px 22px;
  box-shadow: var(--shadow-cta);
}

.dp-btn--lg {
  padding: 15px 28px;
  border-radius: 9px;
  font-size: 15.5px;
  box-shadow: var(--shadow-cta-lg);
}

.dp-btn--cta {
  padding: 16px 30px;
  border-radius: 9px;
  font-size: 16px;
}

.dp-btn--block {
  display: block;
  width: 100%;
  padding: 13px 20px;
  border-radius: 9px;
}

.dp-btn--ghost {
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 9px;
  background: none;
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  transition: background .2s;
}

.dp-btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  opacity: 1;
  color: #fff;
}

.dp-btn--spaced { margin-top: 28px; }

.dp-btn-row {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */

.dp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.dp-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
}

.dp-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  color: inherit;
}

.dp-logo:hover { color: inherit; }

.dp-logo__mark { overflow: visible; }

.dp-logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dp-logo__name {
  font-family: var(--font-wordmark);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1;
  color: var(--slate);
}

.dp-logo__name b {
  font-weight: 800;
  color: var(--blue);
}

.dp-logo__tag {
  font-size: 8.5px;
  letter-spacing: 1.1px;
  color: var(--muted-3);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.dp-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  margin-left: auto;
}

.dp-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.dp-nav__link {
  position: relative;
  display: block;
  padding: 9px clamp(8px, 1vw, 14px);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate);
  border-radius: 7px;
  white-space: nowrap;
  transition: background .18s, color .18s;
}

.dp-nav__link:hover {
  background: #f4f7fa;
  color: var(--ink);
}

.dp-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--grad-rule);
}

.dp-navtoggle {
  display: none;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line-3);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.dp-navtoggle__bars {
  display: block;
  width: 20px;
  height: 14px;
  position: relative;
}

.dp-navtoggle__bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--slate);
  transition: transform .2s, opacity .2s;
}

.dp-navtoggle__bars i:nth-child(1) { top: 0; }
.dp-navtoggle__bars i:nth-child(2) { top: 6px; }
.dp-navtoggle__bars i:nth-child(3) { top: 12px; }

.dp-navtoggle[aria-expanded="true"] .dp-navtoggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.dp-navtoggle[aria-expanded="true"] .dp-navtoggle__bars i:nth-child(2) { opacity: 0; }
.dp-navtoggle[aria-expanded="true"] .dp-navtoggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .dp-header__inner { flex-wrap: wrap; }

  .dp-navtoggle { display: block; }

  .dp-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    margin-left: 0;
    padding: 14px 0 6px;
    border-top: 1px solid var(--line);
  }

  .dp-nav.is-open {
    display: flex;
    animation: dpFade .2s both;
  }

  .dp-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .dp-nav__link { padding: 12px 14px; }

  .dp-nav__link.is-active {
    background: #f4f7fa;
    color: var(--ink);
  }

  .dp-nav__link.is-active::after {
    left: 0;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 3px;
    height: auto;
  }

  .dp-nav__cta { align-self: flex-start; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.dp-hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.dp-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 45%, rgba(0, 169, 157, .22), transparent 60%),
    radial-gradient(70% 70% at 96% 8%, rgba(140, 198, 63, .14), transparent 60%);
}

.dp-hero__orbit {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: min(720px, 50vw);
  height: min(720px, 50vw);
  pointer-events: none;
  opacity: .9;
}

.dp-orbit { overflow: visible; }

.dp-hero__inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(72px, 9vw, 118px) var(--gutter) clamp(80px, 10vw, 124px);
}

.dp-hero__copy { max-width: min(620px, 100%); }

.dp-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2.4px;
  margin-bottom: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dp-kicker span:nth-child(1) { color: var(--green); }
.dp-kicker span:nth-child(2) { color: var(--sky); }
.dp-kicker span:nth-child(3) { color: #eef2f7; }

.dp-hero__lead {
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.62;
  color: var(--on-dark-body);
  max-width: 520px;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .dp-hero__orbit {
    width: 480px;
    height: 480px;
    right: -180px;
    opacity: .5;
  }
}

/* Dark page header used by About / Brands / Shop / Open Source */
.dp-pagehead { background: var(--dark); }

.dp-pagehead__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(64px, 7vw, 88px) var(--gutter) clamp(68px, 7.5vw, 92px);
}

.dp-pagehead .dp-h1 { color: #fff; }

.dp-pagehead__lead {
  margin: 20px 0 0;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--on-dark-body);
  max-width: 620px;
  text-wrap: pretty;
}

.dp-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.2px;
  color: var(--green);
  transition: opacity .2s;
}

.dp-backlink:hover { opacity: .75; color: var(--green); }

/* --------------------------------------------------------------------------
   9. Cards & grids
   -------------------------------------------------------------------------- */

.dp-grid {
  display: grid;
  gap: 20px;
}

.dp-grid--260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.dp-grid--300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.dp-grid--320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.dp-grid--180 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.dp-grid--24 { gap: 24px; }

.dp-card {
  padding: 32px 30px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.dp-card--lift:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: var(--line-4);
}

.dp-card--hover:hover {
  border-color: var(--line-4);
  box-shadow: 0 20px 40px -28px rgba(16, 24, 40, .3);
}

.dp-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 1.4px;
}

.dp-card__title {
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: -.4px;
  line-height: 1.25;
}

.dp-card__body {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--body);
  text-wrap: pretty;
}

.dp-rule {
  width: 34px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--grad-rule);
  margin: 14px 0 20px;
}

/* Stats */
.dp-stat__value {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dp-stat__label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
}

.dp-stat__note {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.dp-stats--rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px 0;
}

.dp-stats--rail > li {
  padding: 0 22px;
  border-left: 1px solid #dfe5eb;
}

.dp-stat-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.dp-stat-card .dp-stat__value { font-size: 42px; }
.dp-stat-card .dp-stat__label { font-size: 14.5px; }
.dp-stat-card .dp-stat__note { font-size: 13.5px; }

/* Tags */
.dp-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dp-tag {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--surface-4);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: #4d5867;
  letter-spacing: .3px;
}

.dp-tag--blue {
  padding: 5px 11px;
  background: #eaf2f9;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0;
}

.dp-tag--grey {
  padding: 5px 11px;
  font-size: 12px;
  letter-spacing: 0;
}

/* Split panel (about band, contributing panel, shop notes) */
.dp-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.dp-panel {
  padding: 44px clamp(28px, 4vw, 48px);
  border-radius: 18px;
  background: var(--surface-3);
  border: 1px solid var(--line-2);
}

/* --------------------------------------------------------------------------
   10. Home-specific
   -------------------------------------------------------------------------- */

.dp-trusted {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.dp-trusted__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted-2);
}

.dp-trusted__list {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.dp-trusted__item {
  font-size: 20px;
  font-weight: 700;
  color: #39424f;
  letter-spacing: -.3px;
}

.dp-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.dp-teaser__media {
  aspect-ratio: 16 / 11;
  background: #111114;
  overflow: hidden;
}

.dp-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dp-teaser__body {
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.dp-teaser__copy {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  max-width: 420px;
  text-wrap: pretty;
}

.dp-teaser__body .dp-btn { align-self: flex-start; margin-top: 8px; }

.dp-ctaband {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.dp-ctaband h2 { color: #fff; }

.dp-ctaband p {
  margin: 14px 0 0;
  font-size: 16.5px;
  color: var(--on-dark-body);
}

/* --------------------------------------------------------------------------
   11. About
   -------------------------------------------------------------------------- */

.dp-mission {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: -.6px;
  font-weight: 600;
  text-wrap: pretty;
}

.dp-vcard {
  margin-top: 36px;
  padding: 26px 28px;
  border-radius: 14px;
  background: var(--surface-3);
  border: 1px solid var(--line-2);
}

.dp-vcard__name { font-size: 15px; font-weight: 700; }
.dp-vcard__role { margin-top: 3px; font-size: 14px; color: var(--body); }
.dp-vcard__where { margin-top: 14px; font-size: 14.5px; line-height: 1.6; color: var(--body); }

.dp-bullets > li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.dp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.dp-dot--sm { width: 6px; height: 6px; }

.dp-bullets__title { display: block; font-size: 16.5px; font-weight: 700; letter-spacing: -.3px; }
.dp-bullets__body { display: block; margin-top: 5px; font-size: 14.5px; line-height: 1.6; color: var(--body); }

.dp-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 4vw, 64px);
}

/* --------------------------------------------------------------------------
   12. Services rows
   -------------------------------------------------------------------------- */

/* Rows carry a top border each; the container closes the last one. */
.dp-rows {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line-2);
}

.dp-servicerow {
  padding: 38px 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 56px minmax(200px, 1.1fr) minmax(260px, 1.4fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
  transition: background .2s;
}

.dp-servicerow:hover { background: var(--surface-2); }

.dp-servicerow__num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--green);
  letter-spacing: 1.4px;
  padding-top: 4px;
}

.dp-servicerow__title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.7px;
  line-height: 1.2;
}

.dp-servicerow__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
  color: var(--body);
  text-wrap: pretty;
}

.dp-servicerow .dp-tags { margin-top: 16px; }

@media (max-width: 720px) {
  .dp-servicerow { grid-template-columns: 40px 1fr; }
  .dp-servicerow > div:last-child { grid-column: 2; }
}

/* --------------------------------------------------------------------------
   13. Solutions / Projects / Brands
   -------------------------------------------------------------------------- */

.dp-solution {
  padding: 34px 32px 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .25s, box-shadow .25s;
}

.dp-solution .dp-rule { margin: 0 0 20px; }

.dp-solution__title { font-size: 22px; font-weight: 700; letter-spacing: -.5px; }

.dp-solution__body {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}

.dp-clientcard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 16px;
  align-items: start;
  transition: border-color .25s;
}

.dp-clientcard:hover { border-color: var(--line-4); }

.dp-clientcard__name { font-size: 26px; font-weight: 800; letter-spacing: -.8px; }

.dp-clientcard__sector {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 1.2px;
  color: var(--green-deep);
}

.dp-clientcard__body {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--slate);
  text-wrap: pretty;
}

.dp-clientcard .dp-tags { margin-top: 18px; }

.dp-stack { display: flex; flex-direction: column; gap: 20px; }
.dp-stack--lg { gap: 24px; }

.dp-brandcard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .25s, box-shadow .25s;
}

.dp-brandcard:hover {
  border-color: var(--line-4);
  box-shadow: var(--shadow-card-lg);
}

.dp-brandcard__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dp-brandcard__kind {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--muted-2);
}

.dp-pill-live {
  padding: 4px 10px;
  border-radius: 20px;
  background: #eef7e6;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  color: #4d8a26;
}

.dp-brandcard h2 { margin-top: 14px; }

.dp-brandcard__body {
  margin: 16px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}

.dp-brandcard .dp-btn { margin-top: 26px; }

.dp-points > li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line-5);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
}

/* --------------------------------------------------------------------------
   14. Shop
   -------------------------------------------------------------------------- */

.dp-product {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s;
}

.dp-product:hover {
  border-color: var(--line-4);
  box-shadow: 0 24px 48px -32px rgba(16, 24, 40, .4);
}

.dp-product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface-5);
  overflow: hidden;
}

.dp-product__media--dark { background: #111114; }

.dp-product__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dp-product__img[hidden] { display: none; }

.dp-product__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  color: #39424f;
  pointer-events: none;
}

.dp-product__flip {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  padding: 8px 14px;
  border: 0;
  border-radius: 20px;
  background: rgba(7, 13, 24, .82);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s;
}

.dp-product__flip:hover { background: var(--dark); }

/* Placeholder shown for render-pending products and for missing image files */
.dp-product__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(90% 70% at 50% 30%, rgba(0, 169, 157, .18), transparent 65%),
    #111114;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.dp-product__placeholder svg { opacity: .85; }

.dp-product__placeholder-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  color: var(--on-dark-link);
}

/* When the file is present the placeholder stays out of the way. */
.dp-product:not(.is-pending):not(.is-missing) .dp-product__placeholder { display: none; }
.dp-product.is-pending .dp-product__img,
.dp-product.is-missing .dp-product__img { display: none; }
.dp-product.is-pending .dp-product__flip,
.dp-product.is-missing .dp-product__flip { display: none; }

.dp-product__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.dp-product__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.dp-product__name {
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: -.4px;
  line-height: 1.3;
}

.dp-product__price {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.dp-product__copy {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--body);
  text-wrap: pretty;
}

.dp-product__foot { margin-top: auto; }

.dp-sizes-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  color: var(--muted-2);
}

.dp-sizes {
  margin-top: 10px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.dp-size {
  min-width: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line-3);
  border-radius: 7px;
  background: #fff;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
}

.dp-size:hover { border-color: var(--green); }

.dp-size[aria-pressed="true"] {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

/* site.js rewrites this link's href with the chosen size before the visitor
   reaches the contact form. */
.dp-product__enquire { margin-top: 18px; }

/* --------------------------------------------------------------------------
   15. Open source
   -------------------------------------------------------------------------- */

.dp-ghbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 13px 22px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  transition: background .2s;
}

.dp-ghbtn:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.dp-osstat {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.dp-osstat .dp-stat__value { font-size: 36px; letter-spacing: -1.4px; }
.dp-osstat .dp-stat__label { color: var(--slate); }

.dp-repo {
  padding: 32px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, box-shadow .25s;
}

.dp-repo:hover {
  border-color: var(--line-4);
  box-shadow: 0 22px 44px -30px rgba(16, 24, 40, .35);
}

.dp-repo__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-repo__name {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--blue);
}

.dp-repo__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--slate);
  text-wrap: pretty;
}

.dp-repo__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--body);
}

.dp-lang {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dp-lang__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dp-repo__branch { font-family: var(--font-mono); color: var(--muted-2); }
.dp-repo__vis { margin-left: auto; color: var(--muted-2); }

.dp-repolist { border-bottom: 1px solid var(--line-2); }

.dp-repolist > li {
  padding: 26px 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(260px, 1.6fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  transition: background .2s;
}

.dp-repolist > li:hover { background: var(--surface-2); }

.dp-repolist__name {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--blue);
  font-weight: 500;
}

.dp-repolist .dp-lang { margin-top: 9px; font-size: 13px; color: var(--body); }

.dp-repolist__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--body);
  text-wrap: pretty;
}

.dp-repolist .dp-tags { margin-top: 12px; }

.dp-repolist__side {
  text-align: right;
  font-size: 13px;
  color: var(--body);
  display: flex;
  flex-direction: column;
  gap: 6px;
  white-space: nowrap;
}

.dp-repolist__side .dp-repo__branch { text-align: right; }

@media (max-width: 820px) {
  .dp-repolist > li { grid-template-columns: 1fr; }
  .dp-repolist__side { text-align: left; }
  .dp-repolist__side .dp-repo__branch { text-align: left; }
}

.dp-bars {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dp-bar__head {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate);
}

.dp-bar__head span:last-child { color: var(--muted-2); }

.dp-bar__track {
  margin-top: 6px;
  height: 6px;
  border-radius: 4px;
  background: #e4eaef;
  overflow: hidden;
}

.dp-bar__fill {
  height: 100%;
  border-radius: 4px;
}

.dp-panel--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.dp-panel p {
  margin: 18px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--slate);
  text-wrap: pretty;
}

.dp-panel p + p { margin-top: 14px; }

.dp-panel .dp-btn { margin-top: 24px; }

/* --------------------------------------------------------------------------
   16. Resources / FAQ
   -------------------------------------------------------------------------- */

.dp-resource {
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s;
}

.dp-resource:hover { border-color: var(--line-4); }

.dp-resource__kind {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.6px;
  color: var(--muted-2);
}

.dp-resource__title { font-size: 20px; font-weight: 700; letter-spacing: -.4px; }

.dp-resource__body { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }

.dp-faq {
  margin-top: 28px;
  border-bottom: 1px solid var(--line-2);
}

.dp-faq__item {
  border-top: 1px solid var(--line-2);
}

.dp-faq__q {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.3px;
  cursor: pointer;
  list-style: none;
}

.dp-faq__q::-webkit-details-marker { display: none; }

.dp-faq__q::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
}

.dp-faq__item[open] > .dp-faq__q::after { content: "\2212"; }

.dp-faq__a {
  margin: 0;
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--body);
  max-width: 760px;
  text-wrap: pretty;
  animation: dpFade .3s both;
}

/* --------------------------------------------------------------------------
   17. Contact
   -------------------------------------------------------------------------- */

.dp-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(40px, 5vw, 80px);
}

.dp-contact .dp-h1 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.03em;
}

.dp-contact__lead {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}

.dp-details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dp-details__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 1.6px;
  color: var(--muted-2);
}

.dp-details__value {
  margin-top: 7px;
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 600;
  white-space: pre-line;
}

.dp-details__value a { color: inherit; }
.dp-details__value a:hover { color: var(--blue); }

.dp-formcard {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
}

.dp-formcard__title { font-size: 21px; font-weight: 800; letter-spacing: -.5px; }

.dp-fields {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dp-field--full { margin-top: 16px; }

.dp-field label { font-size: 13px; font-weight: 600; color: var(--body); }

.dp-field input,
.dp-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line-3);
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color .18s;
}

.dp-field textarea { resize: vertical; }

.dp-field input:focus,
.dp-field textarea:focus {
  border-color: var(--blue);
  outline: none;
}

.dp-field.is-invalid input,
.dp-field.is-invalid textarea { border-color: #c0392b; }

.dp-field__error {
  font-size: 12.5px;
  font-weight: 600;
  color: #c0392b;
}

.dp-field__error:empty { display: none; }

.dp-form__submit {
  width: 100%;
  margin-top: 22px;
  padding: 14px 26px;
  border-radius: 9px;
  font-size: 15.5px;
}

.dp-form .dp-btn[disabled] {
  opacity: .6;
  cursor: progress;
}

.dp-formnote {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted-2);
}

/* contactform.js toggles these two by adding/removing `show`. They must be
   hidden by default — the success text is in the markup from the start. */
.dp-formalert {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 9px;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 600;
}

.dp-formalert.show { display: block; animation: dpFade .3s both; }

.dp-formalert--ok {
  background: #eef7e6;
  border: 1px solid #cfe7b8;
  color: #3d7a1c;
}

.dp-formalert--error {
  background: #fdf0ee;
  border: 1px solid #f3ccc5;
  color: #a5321f;
}

@media (max-width: 560px) {
  .dp-fields { grid-template-columns: 1fr; }
  .dp-formcard { padding: 28px 22px; }
}

/* --------------------------------------------------------------------------
   18. Back to top
   -------------------------------------------------------------------------- */

.dp-totop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 60;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(140deg, #7BBE45, #1B75BB);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(27, 117, 187, .85);
  transition: opacity .2s;
}

.dp-totop.is-visible {
  display: flex;
  animation: dpFade .25s both;
}

.dp-totop:hover { opacity: .88; }

@media (max-width: 560px) {
  .dp-totop { bottom: 20px; right: 20px; }
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */

.dp-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.dp-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 72px var(--gutter) 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.dp-footer .dp-logo__name { color: #fff; }
.dp-footer .dp-logo__name b { color: var(--sky); }
.dp-footer .dp-logo__tag { color: var(--muted-2); }

.dp-footer__kicker {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 1.6px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.dp-footer__kicker span:nth-child(1) { color: var(--green); }
.dp-footer__kicker span:nth-child(2) { color: var(--sky); }
.dp-footer__kicker span:nth-child(3) { color: var(--on-dark-soft); }

.dp-footer__title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #fff;
  text-transform: uppercase;
}

.dp-footer__list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.dp-footer__list a {
  font-size: 14.5px;
  color: var(--on-dark-link);
  transition: color .18s;
}

.dp-footer__list a:hover { color: var(--green); }

.dp-footer__contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-dark-link);
}

.dp-footer__contact a { color: inherit; }
.dp-footer__contact a:hover { color: var(--green); }

.dp-footer__bar {
  max-width: var(--container);
  margin-inline: auto;
  padding: 24px var(--gutter) 40px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--on-dark-faint);
}

.dp-footer__bar a { color: inherit; }
.dp-footer__bar a:hover { color: var(--green); }

/* --------------------------------------------------------------------------
   20. 404
   -------------------------------------------------------------------------- */

.dp-notfound {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  text-align: center;
}

.dp-notfound__code {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2.4px;
  color: var(--green-deep);
}

.dp-notfound .dp-btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   21. Rhythm helpers
   The design sets these as one-off margins on section headings; naming them
   keeps the markup free of inline style attributes.
   -------------------------------------------------------------------------- */

.dp-mt-18 { margin-top: 18px; }
.dp-mt-56 { margin-top: 56px; }
.dp-mt-58 { margin-top: 58px; }
.dp-mt-60 { margin-top: 60px; }
.dp-mt-64 { margin-top: 64px; }
.dp-mt-78 { margin-top: 78px; }
.dp-center { margin-inline: auto; }

.dp-h2--faq {
  font-size: 32px;
  letter-spacing: -1px;
}

.dp-pagehead__lead--lg { font-size: 18px; }

.dp-btn--outline {
  background: none;
  border: 1px solid var(--line-3);
  color: var(--slate);
  box-shadow: none;
}

.dp-btn--outline:hover {
  background: var(--surface-3);
  color: var(--ink);
  opacity: 1;
}
