@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,700;1,700&family=Outfit:wght@400;500;600&family=JetBrains+Mono:wght@400&display=swap');

:root {
  --void: #0F1A0F;
  --surface: #162016;
  --paper: #F5F3EE;
  --fog: #ECEAE3;
  --pure: #FFFFFF;
  --ink: #141914;
  --ink-muted: #485C42;
  --frost: #EFF1EB;
  --frost-muted: #8FAD87;
  --grove: #2B6B2B;
  --grove-light: #4CAF4C;
  --amber-fill: #C4793A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --nav-h: 68px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(15,26,15,0.10);
  --shadow-md: 0 4px 16px rgba(15,26,15,0.14);
  --shadow-lg: 0 12px 40px rgba(15,26,15,0.18);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--frost-muted);
  display: block;
  margin-bottom: 12px;
}

.section-label--dark {
  color: var(--ink-muted);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; font-style: italic; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 300; }

p { font-size: 1.0625rem; line-height: 1.7; }

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--frost-muted);
}

.lead--dark {
  color: var(--ink-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grove);
  color: var(--frost);
  border-color: var(--grove);
}
.btn--primary:hover {
  background: var(--grove-light);
  border-color: var(--grove-light);
  box-shadow: 0 4px 14px rgba(43,107,43,0.35);
}

.btn--ghost-light {
  background: transparent;
  color: var(--frost);
  border-color: rgba(239,241,235,0.45);
}
.btn--ghost-light:hover {
  background: rgba(239,241,235,0.1);
  border-color: var(--frost);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20,25,20,0.35);
}
.btn--ghost-dark:hover {
  background: rgba(20,25,20,0.07);
  border-color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--grove);
  border-color: var(--grove);
}
.btn--outline:hover {
  background: var(--grove);
  color: var(--frost);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.dlm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.page--dark-top .dlm-nav {
  background: transparent;
}

.page--light-top .dlm-nav {
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(20,25,20,0.09);
}

.dlm-nav--scrolled {
  background: var(--void) !important;
  box-shadow: 0 2px 16px rgba(15,26,15,0.4) !important;
}

.dlm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.dlm-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.dlm-nav__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.dlm-nav__logo .logo-dark { display: none; }
.dlm-nav__logo .logo-light { display: block; }

.page--light-top .dlm-nav .logo-dark { display: block; }
.page--light-top .dlm-nav .logo-light { display: none; }

.page--light-top .dlm-nav--scrolled .logo-dark { display: none !important; }
.page--light-top .dlm-nav--scrolled .logo-light { display: block !important; }

.page--dark-top .dlm-nav--scrolled .logo-dark { display: none !important; }
.page--dark-top .dlm-nav--scrolled .logo-light { display: block !important; }

.dlm-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dlm-nav__link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.page--dark-top .dlm-nav .dlm-nav__link {
  color: var(--frost);
}
.page--dark-top .dlm-nav .dlm-nav__link:hover {
  color: var(--pure);
  background: rgba(239,241,235,0.1);
}

.page--light-top .dlm-nav .dlm-nav__link {
  color: var(--ink);
}
.page--light-top .dlm-nav .dlm-nav__link:hover {
  color: var(--grove);
  background: rgba(43,107,43,0.07);
}

.dlm-nav--scrolled .dlm-nav__link {
  color: var(--frost) !important;
}
.dlm-nav--scrolled .dlm-nav__link:hover {
  color: var(--pure) !important;
  background: rgba(239,241,235,0.1) !important;
}

.dlm-nav__ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page--light-top .dlm-nav .btn--ghost-light {
  color: var(--ink);
  border-color: rgba(20,25,20,0.35);
}
.page--light-top .dlm-nav .btn--ghost-light:hover {
  background: rgba(20,25,20,0.07);
  border-color: var(--ink);
}

.dlm-nav--scrolled .btn--ghost-light {
  color: var(--frost) !important;
  border-color: rgba(239,241,235,0.45) !important;
}
.dlm-nav--scrolled .btn--ghost-light:hover {
  background: rgba(239,241,235,0.1) !important;
  border-color: var(--frost) !important;
}

.dlm-nav--scrolled .btn--ghost-dark {
  color: var(--frost) !important;
  border-color: rgba(239,241,235,0.45) !important;
}
.dlm-nav--scrolled .btn--ghost-dark:hover {
  background: rgba(239,241,235,0.1) !important;
  border-color: var(--frost) !important;
}

.dlm-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.dlm-nav__hamburger:hover {
  background: rgba(239,241,235,0.12);
}

.dlm-nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  transition: background var(--transition), transform 0.22s ease, opacity 0.22s ease;
}

.page--dark-top .dlm-nav .dlm-nav__hamburger span,
.dlm-nav--scrolled .dlm-nav__hamburger span {
  background: var(--frost);
}

.page--light-top .dlm-nav .dlm-nav__hamburger span {
  background: var(--ink);
}

.dlm-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.dlm-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.dlm-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dlm-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--void);
  padding: 16px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(15,26,15,0.4);
}

.dlm-nav__mobile.is-open {
  display: flex;
}

.dlm-nav__mobile .dlm-nav__link {
  color: var(--frost);
  padding: 11px 14px;
  display: block;
  border-radius: var(--radius-sm);
}
.dlm-nav__mobile .dlm-nav__link:hover {
  background: rgba(239,241,235,0.08);
}

.dlm-nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(239,241,235,0.1);
}

.dlm-nav__mobile-ctas .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .dlm-nav__links,
  .dlm-nav__ctas {
    display: none;
  }
  .dlm-nav__hamburger {
    display: flex;
  }
}

.dlm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--void);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.dlm-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(43,107,43,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(196,121,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.dlm-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.dlm-hero__text {
  position: relative;
}

.dlm-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--frost-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dlm-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber-fill);
}

.dlm-hero h1 {
  color: var(--frost);
  margin-bottom: 24px;
}

.dlm-hero h1 em {
  color: var(--grove-light);
  font-style: italic;
}

.dlm-hero__sub {
  font-size: 1.2rem;
  color: var(--frost-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 500px;
}

.dlm-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.dlm-hero__proof {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--frost-muted);
}

.dlm-hero__proof-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--frost-muted);
  flex-shrink: 0;
}

.dlm-hero__visual {
  position: relative;
}

.dlm-hero-mock {
  background: var(--surface);
  border: 1px solid rgba(239,241,235,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dlm-hero-mock__bar {
  background: rgba(239,241,235,0.05);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(239,241,235,0.07);
}

.dlm-hero-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(239,241,235,0.15);
}
.dlm-hero-mock__dot:nth-child(1) { background: rgba(255,80,70,0.6); }
.dlm-hero-mock__dot:nth-child(2) { background: rgba(255,185,50,0.6); }
.dlm-hero-mock__dot:nth-child(3) { background: rgba(50,200,100,0.6); }

.dlm-hero-mock__title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(239,241,235,0.35);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.dlm-hero-mock__cards {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dlm-mock-card {
  background: rgba(239,241,235,0.05);
  border: 1px solid rgba(239,241,235,0.09);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.dlm-mock-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dlm-mock-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--frost-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dlm-mock-card__status {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.dlm-mock-card__status--ok {
  background: rgba(76,175,76,0.2);
  color: #7ad87a;
}
.dlm-mock-card__status--gen {
  background: rgba(196,121,58,0.2);
  color: #E8A060;
  animation: pulse-gentle 1.5s infinite;
}
.dlm-mock-card__status--done {
  background: rgba(143,173,135,0.2);
  color: #b0c8a8;
}

@keyframes pulse-gentle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.dlm-mock-chip-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dlm-mock-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(43,107,43,0.25);
  color: #7ad87a;
  letter-spacing: 0.03em;
}

.dlm-mock-chip--neutral {
  background: rgba(239,241,235,0.08);
  color: var(--frost-muted);
}

.dlm-mock-progress {
  height: 3px;
  background: rgba(239,241,235,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 8px 0;
}

.dlm-mock-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--grove), var(--grove-light));
  border-radius: 2px;
  animation: progress-run 2.4s ease-in-out infinite;
}

@keyframes progress-run {
  0% { width: 15%; }
  60% { width: 78%; }
  100% { width: 15%; }
}

.dlm-mock-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dlm-mock-line {
  height: 8px;
  border-radius: 2px;
  background: rgba(239,241,235,0.1);
}

.dlm-mock-line--short { width: 45%; }
.dlm-mock-line--med { width: 72%; }
.dlm-mock-line--long { width: 92%; }
.dlm-mock-line--full { width: 100%; }

.dlm-mock-copytext {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--frost-muted);
  line-height: 1.6;
}

.dlm-mock-copytext span {
  color: rgba(239,241,235,0.75);
}

@media (max-width: 960px) {
  .dlm-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 24px 60px;
  }
  .dlm-hero__visual {
    max-width: 500px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dlm-hero {
    min-height: 0;
  }
  .dlm-hero__inner {
    padding: 60px 20px 48px;
  }
  .dlm-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

.dlm-logos {
  background: var(--surface);
  border-top: 1px solid rgba(239,241,235,0.07);
  border-bottom: 1px solid rgba(239,241,235,0.07);
  padding: 28px 0;
}

.dlm-logos__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dlm-logos__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,241,235,0.3);
  white-space: nowrap;
}

.dlm-logos__items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.dlm-logos__item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(239,241,235,0.25);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--transition);
}
.dlm-logos__item:hover {
  color: rgba(239,241,235,0.45);
}

.dlm-section {
  padding: 96px 0;
}

.dlm-section--tight {
  padding: 64px 0;
}

.dlm-section--dark {
  background: var(--void);
}

.dlm-section--surface {
  background: var(--surface);
}

.dlm-section--fog {
  background: var(--fog);
}

.dlm-section--frost {
  background: var(--frost);
}

.dlm-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.dlm-section__head h2 {
  color: var(--frost);
  margin-bottom: 16px;
}

.dlm-section__head--light h2 {
  color: var(--ink);
}

.dlm-section__head p {
  color: var(--frost-muted);
  font-size: 1.1rem;
}

.dlm-section__head--light p {
  color: var(--ink-muted);
}

.dlm-how-it-works {
  background: var(--surface);
}

.dlm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.dlm-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--grove), transparent 50%, var(--grove));
  opacity: 0.3;
}

.dlm-step {
  text-align: center;
}

.dlm-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(43,107,43,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--grove-light);
  position: relative;
  background: rgba(43,107,43,0.1);
}

.dlm-step__num--active {
  background: var(--grove);
  border-color: var(--grove);
  color: var(--frost);
}

.dlm-step h3 {
  color: var(--frost);
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 1.15rem;
}

.dlm-step p {
  color: var(--frost-muted);
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .dlm-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dlm-steps::before { display: none; }
  .dlm-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .dlm-step__num { flex-shrink: 0; margin: 0; }
}

.dlm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 960px) {
  .dlm-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .dlm-features-grid { grid-template-columns: 1fr; }
}

.dlm-feature-card {
  background: rgba(239,241,235,0.04);
  border: 1px solid rgba(239,241,235,0.09);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color var(--transition), background var(--transition);
}

.dlm-feature-card:hover {
  border-color: rgba(43,107,43,0.35);
  background: rgba(43,107,43,0.06);
}

.dlm-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(43,107,43,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: var(--grove-light);
}

.dlm-feature-card h3 {
  color: var(--frost);
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 1.1rem;
}

.dlm-feature-card p {
  color: var(--frost-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.dlm-feature-card--light {
  background: var(--pure);
  border-color: var(--fog);
}
.dlm-feature-card--light:hover {
  border-color: rgba(43,107,43,0.3);
  background: rgba(43,107,43,0.04);
}
.dlm-feature-card--light .dlm-feature-card__icon {
  background: rgba(43,107,43,0.12);
}
.dlm-feature-card--light h3 {
  color: var(--ink);
}
.dlm-feature-card--light p {
  color: var(--ink-muted);
}

.dlm-brand-voice-demo {
  background: var(--surface);
  border: 1px solid rgba(239,241,235,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 64px;
}

.dlm-brand-voice-demo__head {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(239,241,235,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dlm-brand-voice-demo__head-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(43,107,43,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--grove-light);
}

.dlm-brand-voice-demo__head-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--frost-muted);
  letter-spacing: 0.04em;
}

.dlm-brand-voice-demo__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .dlm-brand-voice-demo__body { grid-template-columns: 1fr; }
}

.dlm-brand-voice-demo__pane {
  padding: 24px 28px;
}

.dlm-brand-voice-demo__pane:first-child {
  border-right: 1px solid rgba(239,241,235,0.07);
}

.dlm-brand-voice-demo__pane-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,241,235,0.3);
  margin-bottom: 14px;
}

.dlm-brand-voice-demo__file {
  background: rgba(239,241,235,0.04);
  border: 1px solid rgba(239,241,235,0.07);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.dlm-brand-voice-demo__file-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--frost-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dlm-brand-voice-demo__file-name i {
  color: var(--amber-fill);
}

.dlm-brand-voice-demo__attrs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dlm-brand-voice-demo__attr {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dlm-brand-voice-demo__attr-key {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(239,241,235,0.35);
  width: 80px;
  flex-shrink: 0;
}

.dlm-brand-voice-demo__attr-val {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grove-light);
  background: rgba(43,107,43,0.15);
  padding: 2px 8px;
  border-radius: 100px;
}

.dlm-brand-voice-demo__output {
  background: rgba(239,241,235,0.04);
  border: 1px solid rgba(43,107,43,0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.9375rem;
  color: var(--frost-muted);
  line-height: 1.65;
}

.dlm-brand-voice-demo__output strong {
  color: var(--frost);
  font-weight: 500;
}

.dlm-social-proof {
  background: var(--void);
}

.dlm-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .dlm-testimonials { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .dlm-testimonials { grid-template-columns: 1fr; }
}

.dlm-testimonial {
  background: var(--surface);
  border: 1px solid rgba(239,241,235,0.08);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}

.dlm-testimonial__stars {
  color: var(--amber-fill);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.dlm-testimonial__body {
  font-size: 0.9375rem;
  color: var(--frost-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.dlm-testimonial__body strong {
  color: var(--frost);
  font-weight: 500;
}

.dlm-testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dlm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grove);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--frost);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.dlm-avatar[hidden] { display: none; }

.dlm-avatar--lg {
  width: 56px;
  height: 56px;
  font-size: 1rem;
}

.dlm-avatar--ink-muted { background: var(--ink-muted); }
.dlm-avatar--grove { background: var(--grove); }
.dlm-avatar--amber { background: var(--amber-fill); color: var(--ink); }

.dlm-testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--frost);
  line-height: 1.2;
}

.dlm-testimonial__role {
  font-size: 0.8125rem;
  color: var(--frost-muted);
  margin-top: 2px;
}

.dlm-cta-band {
  background: var(--grove);
  padding: 72px 0;
  text-align: center;
}

.dlm-cta-band h2 {
  color: var(--frost);
  margin-bottom: 16px;
}

.dlm-cta-band p {
  color: rgba(239,241,235,0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.dlm-cta-band .btn--primary {
  background: var(--frost);
  color: var(--grove);
  border-color: var(--frost);
}
.dlm-cta-band .btn--primary:hover {
  background: var(--pure);
  border-color: var(--pure);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.dlm-cta-band__sub {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(239,241,235,0.55);
}

.dlm-footer {
  background: var(--void);
  border-top: 1px solid rgba(239,241,235,0.07);
  padding: 64px 0 36px;
}

.dlm-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.dlm-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(239,241,235,0.07);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .dlm-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.dlm-footer__brand img {
  height: 26px;
  width: auto;
  margin-bottom: 14px;
}

.dlm-footer__tagline {
  font-size: 0.9rem;
  color: var(--frost-muted);
  line-height: 1.55;
  max-width: 240px;
  margin-bottom: 20px;
}

.dlm-footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239,241,235,0.3);
  margin-bottom: 14px;
}

.dlm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.dlm-footer__link {
  font-size: 0.9rem;
  color: var(--frost-muted);
  transition: color var(--transition);
}

.dlm-footer__link:hover {
  color: var(--frost);
}

.dlm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.dlm-footer__copy {
  font-size: 0.8125rem;
  color: rgba(239,241,235,0.3);
}

.dlm-footer__legal-links {
  display: flex;
  gap: 20px;
}

.dlm-footer__legal-links a {
  font-size: 0.8125rem;
  color: rgba(239,241,235,0.3);
  transition: color var(--transition);
}
.dlm-footer__legal-links a:hover {
  color: var(--frost-muted);
}

.dlm-subhero {
  background: var(--void);
  padding-top: var(--nav-h);
  padding-bottom: 0;
}

.dlm-subhero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dlm-subhero__text .section-label {
  color: var(--frost-muted);
}

.dlm-subhero__text h1 {
  color: var(--frost);
  margin-bottom: 18px;
}

.dlm-subhero__text .lead {
  color: var(--frost-muted);
}

.dlm-subhero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .dlm-subhero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px 48px;
  }
}

.dlm-subhero--light {
  background: var(--fog);
  padding-top: var(--nav-h);
}

.dlm-subhero--light .dlm-subhero__inner {
  padding: 64px 24px 56px;
}

.dlm-subhero--light .dlm-subhero__text h1 {
  color: var(--ink);
}

.dlm-subhero--light .dlm-subhero__text .lead {
  color: var(--ink-muted);
}

.dlm-subhero--light .dlm-subhero__text .section-label {
  color: var(--ink-muted);
}

.dlm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .dlm-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.dlm-pricing-card {
  background: var(--pure);
  border: 1.5px solid var(--fog);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: box-shadow var(--transition);
}

.dlm-pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.dlm-pricing-card--highlight {
  border-color: var(--grove);
  background: var(--ink);
  position: relative;
}

.dlm-pricing-card--highlight::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grove);
  color: var(--frost);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.dlm-pricing-card__tier {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grove);
  margin-bottom: 8px;
}

.dlm-pricing-card--highlight .dlm-pricing-card__tier {
  color: var(--grove-light);
}

.dlm-pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}

.dlm-pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.dlm-pricing-card--highlight .dlm-pricing-card__amount {
  color: var(--frost);
}

.dlm-pricing-card__period {
  font-size: 0.9rem;
  color: var(--ink-muted);
  padding-bottom: 6px;
}

.dlm-pricing-card--highlight .dlm-pricing-card__period {
  color: var(--frost-muted);
}

.dlm-pricing-card__desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.dlm-pricing-card--highlight .dlm-pricing-card__desc {
  color: var(--frost-muted);
}

.dlm-pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
}

.dlm-pricing-card__feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dlm-pricing-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.dlm-pricing-card--highlight .dlm-pricing-card__feat {
  color: var(--frost-muted);
}

.dlm-pricing-card__feat i {
  color: var(--grove);
  font-size: 0.875rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.dlm-pricing-card--highlight .dlm-pricing-card__feat i {
  color: var(--grove-light);
}

.dlm-pricing-faq {
  margin-top: 72px;
}

.dlm-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.dlm-faq-item {
  border-bottom: 1px solid var(--fog);
}

.dlm-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.dlm-faq-btn:hover {
  color: var(--grove);
}

.dlm-faq-btn__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
  color: var(--ink-muted);
}

.dlm-faq-btn[aria-expanded="true"] .dlm-faq-btn__icon {
  transform: rotate(45deg);
  border-color: var(--grove);
  background: var(--grove);
  color: var(--frost);
}

.dlm-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dlm-faq-panel--open {
  max-height: 400px;
}

.dlm-faq-panel__inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.dlm-features-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  margin-bottom: 96px;
}

.dlm-features-page-grid:last-child {
  margin-bottom: 0;
}

.dlm-features-page-grid--reverse {
  direction: rtl;
}

.dlm-features-page-grid--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .dlm-features-page-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .dlm-features-page-grid--reverse > * {
    direction: ltr;
  }
}

.dlm-features-page-text h2 {
  color: var(--ink);
  margin-bottom: 14px;
}

.dlm-features-page-text p {
  color: var(--ink-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.dlm-features-page-text .dlm-feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.dlm-feat-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.dlm-feat-list-item i {
  color: var(--grove);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.dlm-features-visual {
  background: var(--fog);
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dlm-features-page-workflow-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.dlm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

@media (max-width: 768px) {
  .dlm-about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.dlm-about-story-img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.dlm-about-text h2 {
  color: var(--ink);
  margin-bottom: 16px;
}

.dlm-about-text p {
  color: var(--ink-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.dlm-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .dlm-team-grid { grid-template-columns: 1fr 1fr; }
}

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

.dlm-team-card {
  text-align: center;
}

.dlm-team-card__avatar-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
}

.dlm-team-card .dlm-avatar {
  width: 90px;
  height: 90px;
  font-size: 1.5rem;
  border-radius: var(--radius-lg);
}

.dlm-team-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.dlm-team-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grove);
  margin-bottom: 10px;
}

.dlm-team-card__bio {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.dlm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .dlm-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.dlm-contact-info h2 {
  color: var(--ink);
  margin-bottom: 14px;
}

.dlm-contact-info p {
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.dlm-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dlm-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dlm-contact-detail__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(43,107,43,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--grove);
  flex-shrink: 0;
}

.dlm-contact-detail__text {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.dlm-contact-detail__text strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
}

.dlm-form {
  background: var(--pure);
  border: 1.5px solid var(--fog);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.dlm-form__group {
  margin-bottom: 20px;
}

.dlm-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 7px;
}

.dlm-form input,
.dlm-form select,
.dlm-form textarea,
.dlm-auth-form input,
.dlm-auth-form select,
.dlm-auth-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--fog);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--pure);
  transition: border-color var(--transition);
  outline: none;
}

.dlm-form input:focus,
.dlm-form select:focus,
.dlm-form textarea:focus,
.dlm-auth-form input:focus,
.dlm-auth-form select:focus,
.dlm-auth-form textarea:focus {
  border-color: var(--grove);
}

.dlm-form textarea {
  min-height: 120px;
  resize: vertical;
}

.dlm-form .btn {
  width: 100%;
  justify-content: center;
}

.dlm-blog-hero {
  background: var(--fog);
  padding-top: var(--nav-h);
}

.dlm-blog-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 48px;
}

.dlm-blog-hero__inner h1 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.dlm-blog-hero__inner p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.dlm-blog-featured {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.dlm-blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--pure);
  border: 1.5px solid var(--fog);
  transition: box-shadow var(--transition);
}
.dlm-blog-featured-card:hover {
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .dlm-blog-featured-card { grid-template-columns: 1fr; }
}

.dlm-blog-featured-card__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.dlm-blog-featured-card__content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dlm-blog-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.dlm-blog-featured-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-muted);
  flex-shrink: 0;
}

.dlm-blog-featured-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.dlm-blog-featured-card:hover .dlm-blog-featured-card__title {
  color: var(--grove);
}

.dlm-blog-featured-card__excerpt {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.dlm-blog-featured-card__read-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grove);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.dlm-blog-featured-card:hover .dlm-blog-featured-card__read-more {
  gap: 10px;
}

.dlm-blog-grid-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.dlm-blog-grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dlm-blog-grid-head h2 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
}

.dlm-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .dlm-blog-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .dlm-blog-cards { grid-template-columns: 1fr; }
}

.dlm-blog-card {
  background: var(--pure);
  border: 1.5px solid var(--fog);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.dlm-blog-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(43,107,43,0.2);
}

.dlm-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.dlm-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dlm-blog-card:hover .dlm-blog-card__img {
  transform: scale(1.03);
}

.dlm-blog-card__content {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dlm-blog-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dlm-blog-card__author {
  color: var(--grove);
}

.dlm-blog-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--transition);
  flex: 1;
}

.dlm-blog-card:hover .dlm-blog-card__title {
  color: var(--grove);
}

.dlm-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 14px;
}

.dlm-blog-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(43,107,43,0.1);
  color: var(--grove);
  align-self: flex-start;
}

.dlm-article-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.dlm-article-hero {
  background: var(--void);
  padding-top: var(--nav-h);
}

.dlm-article-hero__band {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

.dlm-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--frost-muted);
  margin-bottom: 28px;
  transition: color var(--transition);
}

.dlm-article-back:hover {
  color: var(--frost);
}

.dlm-article-hero__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--frost-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dlm-article-hero h1 {
  color: var(--frost);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  max-width: 760px;
}

.dlm-article-hero__excerpt {
  font-size: 1.1rem;
  color: var(--frost-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.dlm-article-hero__cover-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  margin-top: 0;
}

.dlm-article-cover {
  display: block;
  width: calc(100% - 48px);
  max-width: 760px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin: 0 auto;
}

.dlm-article-body {
  background: var(--paper);
  padding: 48px 0 80px;
}

.dlm-article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.dlm-article-content h2 {
  font-size: 1.7rem;
  color: var(--ink);
  margin: 40px 0 14px;
}

.dlm-article-content h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin: 28px 0 10px;
}

.dlm-article-content p {
  color: var(--ink);
  margin-bottom: 18px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.dlm-article-content ul, .dlm-article-content ol {
  margin: 0 0 18px 20px;
  list-style: disc;
}

.dlm-article-content ol {
  list-style: decimal;
}

.dlm-article-content li {
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.dlm-article-content blockquote {
  border-left: 3px solid var(--grove);
  padding: 14px 20px;
  margin: 24px 0;
  background: rgba(43,107,43,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.dlm-article-content blockquote p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  font-style: italic;
  margin: 0;
}

.dlm-article-content pre {
  background: var(--void);
  border-radius: var(--radius-md);
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
  max-width: 100%;
}

.dlm-article-content code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--frost);
}

.dlm-article-content p code {
  background: var(--fog);
  color: var(--grove);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.875em;
}

.dlm-article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--fog);
  border-bottom: 1px solid var(--fog);
  margin-bottom: 24px;
}

.dlm-article-author__info {}

.dlm-article-author__name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9375rem;
}

.dlm-article-author__title {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.dlm-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .dlm-use-cases-grid { grid-template-columns: 1fr; }
}

.dlm-use-case-card {
  background: var(--pure);
  border: 1.5px solid var(--fog);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.dlm-use-case-card:hover {
  box-shadow: var(--shadow-md);
}

.dlm-use-case-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(43,107,43,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--grove);
  margin-bottom: 20px;
}

.dlm-use-case-card h3 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.dlm-use-case-card p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.dlm-use-case-results {
  display: flex;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--fog);
}

.dlm-use-case-result {
  text-align: center;
}

.dlm-use-case-result__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grove);
  line-height: 1;
  margin-bottom: 4px;
}

.dlm-use-case-result__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.dlm-use-case-detail {
  background: var(--paper);
  padding-top: var(--nav-h);
}

.dlm-use-case-detail-hero {
  background: var(--void);
  padding: calc(var(--nav-h) + 48px) 0 56px;
}

.dlm-use-case-detail-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .dlm-use-case-detail-hero__inner { grid-template-columns: 1fr; gap: 36px; }
}

.dlm-use-case-detail-hero h1 {
  color: var(--frost);
  margin-bottom: 16px;
}

.dlm-use-case-detail-hero .lead {
  color: var(--frost-muted);
  margin-bottom: 28px;
}

.dlm-use-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(239,241,235,0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.dlm-use-case-stat {
  border-right: 1px solid rgba(239,241,235,0.08);
}

.dlm-use-case-stat:last-child {
  border-right: none;
}

.dlm-use-case-stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--grove-light);
  line-height: 1;
  margin-bottom: 6px;
}

.dlm-use-case-stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--frost-muted);
}

.dlm-stats-band {
  background: var(--fog);
  padding: 56px 0;
}

.dlm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .dlm-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.dlm-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--grove);
  line-height: 1;
  margin-bottom: 6px;
}

.dlm-stat-label {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.dlm-404-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  text-align: center;
  padding-top: var(--nav-h);
}

.dlm-404-section__inner,
.dlm-404-inner {
  max-width: 520px;
  padding: 40px 24px;
}

.dlm-404-section__code,
.dlm-404-code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--fog);
  line-height: 1;
  margin-bottom: 8px;
}

.dlm-404-section h1,
.dlm-404-text h1 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}

.dlm-404-section p,
.dlm-404-text p {
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.dlm-404-visual {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.dlm-404-text {
  text-align: center;
}

.dlm-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.dlm-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  position: relative;
  padding: 40px 20px;
}

.dlm-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(43,107,43,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(196,121,58,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.dlm-auth-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
  .dlm-auth-card { padding: 32px 24px; }
}

.dlm-auth-card__logo {
  margin: 0 auto 28px;
  display: block;
  width: fit-content;
}

.dlm-auth-card__logo img {
  height: 26px;
  width: auto;
}

.dlm-auth-card h1 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  text-align: center;
}

.dlm-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 28px;
}

.dlm-auth-divider {
  border: none;
  border-top: 1px solid var(--fog);
  margin: 24px 0;
}

.dlm-auth-link-row {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 16px;
}

.dlm-auth-link-row a {
  color: var(--grove);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dlm-auth-legal {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--fog);
  line-height: 1.5;
}

.dlm-auth-legal a {
  color: var(--grove);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dlm-auth-form .dlm-form__group {
  margin-bottom: 16px;
}

.dlm-auth-back {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.875rem;
  color: rgba(239,241,235,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  z-index: 2;
}

.dlm-auth-back:hover {
  color: var(--frost);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--void);
  border-top: 1px solid rgba(239,241,235,0.1);
  z-index: 999;
  padding: 16px 0;
}

.cookie-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--frost-muted);
  max-width: 640px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--grove-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1;
}

.cookie-banner__btn--primary {
  background: var(--grove);
  color: var(--frost);
  border-color: var(--grove);
}

.cookie-banner__btn--primary:hover {
  background: var(--grove-light);
  border-color: var(--grove-light);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--frost-muted);
  border-color: rgba(239,241,235,0.25);
}

.cookie-banner__btn--secondary:hover {
  color: var(--frost);
  border-color: rgba(239,241,235,0.5);
}

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

.dlm-hiw-steps-page {
  counter-reset: step-count;
}

.dlm-hiw-step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--fog);
}

.dlm-hiw-step-row:last-child { border-bottom: none; }

.dlm-hiw-step-row--reverse {
  direction: rtl;
}

.dlm-hiw-step-row--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .dlm-hiw-step-row { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  .dlm-hiw-step-row--reverse > * { direction: ltr; }
}

.dlm-hiw-step-text {
  position: relative;
}

.dlm-hiw-step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1;
  margin-bottom: -12px;
  display: block;
}

.dlm-hiw-step-text h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.dlm-hiw-step-text p {
  color: var(--ink-muted);
  line-height: 1.7;
}

.dlm-hiw-visual {
  background: var(--fog);
  border-radius: var(--radius-xl);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.dlm-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(43,107,43,0.1);
  border: 1px solid rgba(43,107,43,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #1e4d1e;
  letter-spacing: 0.06em;
}

.dlm-integration-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .dlm-integration-logos { grid-template-columns: repeat(2, 1fr); }
}

.dlm-integration-logo-card {
  background: var(--pure);
  border: 1.5px solid var(--fog);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  transition: border-color var(--transition);
}

.dlm-integration-logo-card:hover {
  border-color: rgba(43,107,43,0.3);
}

.dlm-integration-logo-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.dlm-integration-logo-card__type {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

.dlm-comparison-section {
  overflow-x: auto;
}

.dlm-comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dlm-comparison-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dlm-comparison-table th {
  text-align: left;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 2px solid var(--fog);
  background: var(--fog);
}

.dlm-comparison-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.dlm-comparison-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.dlm-comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--fog);
  color: var(--ink-muted);
  vertical-align: middle;
  background: var(--paper);
}

.dlm-comparison-table td:first-child {
  font-weight: 500;
  color: var(--ink);
}

.dlm-comparison-table tr:last-child td {
  border-bottom: none;
}

.dlm-comparison-table td i.fa-check {
  color: var(--grove);
}

.dlm-comparison-table td i.fa-xmark {
  color: rgba(72,92,66,0.4);
}

.dlm-comparison-highlight td {
  color: #1e4d1e !important;
  background: rgba(43,107,43,0.06) !important;
  font-weight: 500;
}

.dlm-hiw-ornament {
  width: 100%;
  max-width: 360px;
}

.dlm-subhero-ornament-svg {
  width: 100%;
  max-width: 340px;
}

@media (max-width: 768px) {
  .dlm-subhero__ornament { display: none; }
  .dlm-use-case-stats { grid-template-columns: 1fr; }
  .dlm-use-case-stat { border-right: none; border-bottom: 1px solid rgba(239,241,235,0.08); }
  .dlm-use-case-stat:last-child { border-bottom: none; }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--frost-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--frost-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--frost);
}

.breadcrumb__sep {
  color: var(--frost-muted);
  font-size: 0.75rem;
  opacity: 0.5;
}

.dlm-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .dlm-values-grid { grid-template-columns: 1fr 1fr; }
}

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

.dlm-value-card {
  padding: 28px 24px;
  background: rgba(239,241,235,0.04);
  border: 1px solid rgba(239,241,235,0.08);
  border-radius: var(--radius-lg);
}

.dlm-value-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(239,241,235,0.12);
  line-height: 1;
  margin-bottom: 14px;
}

.dlm-value-card h3 {
  color: var(--frost);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.dlm-value-card p {
  color: var(--frost-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dlm-auth-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: var(--void);
}

.dlm-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Legal pages ─────────────────────────────────────────── */
.dlm-legal-hero {
  background: var(--void);
  padding-top: var(--nav-h);
}

.dlm-legal-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

.dlm-legal-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--frost);
  margin-bottom: 8px;
}

.dlm-legal-hero__meta {
  color: var(--frost-muted);
  font-size: 0.9rem;
}

.dlm-legal-body {
  background: var(--parchment);
  padding: 56px 24px 80px;
}

.legal-article {
  max-width: 800px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.legal-article h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 12px;
  color: var(--ink-deep);
}

.legal-article h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--ink-deep);
}

.legal-article p {
  margin-bottom: 14px;
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 14px;
}

.legal-article li {
  margin-bottom: 6px;
}

.legal-article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.legal-article th,
.legal-article td {
  text-align: left;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,0.12);
}

.legal-article th {
  background: rgba(0,0,0,0.04);
  font-weight: 600;
}

.legal-article a {
  color: var(--grove);
  text-decoration: underline;
}
