/* derapi.css — Derapi brand CSS (drp- prefix) */
/* Generated: web0514 */

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --drp-bg: #ffffff;
  --drp-bg-alt: #f8fafc;
  --drp-bg-tint: #f0f9ff;
  --drp-bg-dark: #0c1a2e;
  --drp-bg-dark-card: #162033;
  --drp-text-body: #1e293b;
  --drp-text-muted: #475569;
  --drp-text-heading: #0f172a;
  --drp-accent: #0ea5e9;
  --drp-accent-dark: #0369a1;
  --drp-accent-on-dark: #38bdf8;
  --drp-accent-orange: #f97316;
  --drp-accent-orange-on-dark: #fb923c;
  --drp-accent-tint: #e0f2fe;
  --drp-border: #e2e8f0;
  --drp-border-dark: #1e3a5f;
  --drp-radius-sm: 6px;
  --drp-radius-md: 10px;
  --drp-radius-lg: 16px;
  --drp-radius-xl: 24px;
  --drp-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --drp-shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --drp-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --drp-btn-bg-accessible: #0369a1;
  --drp-nav-text: #0f172a;
  --drp-badge-text: #0369a1;
  --drp-badge-bg: #e0f2fe;
}

/* =========================================================
   GLOBAL RESET & BASE
   ========================================================= */
html, body {
  overflow-x: hidden;
}

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

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

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #1e293b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: #0369a1;
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: #0ea5e9; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }

code, pre {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.drp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.drp-btn--primary {
  background: #0369a1;
  color: #ffffff;
  border-color: #0369a1;
}
.drp-btn--primary:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(3,105,161,0.35);
}

.drp-btn--ghost {
  background: transparent;
  color: #0369a1;
  border-color: #0369a1;
}
.drp-btn--ghost:hover {
  background: #e0f2fe;
  color: #0369a1;
}

.drp-btn--light {
  background: #ffffff;
  color: #0369a1;
  border-color: #ffffff;
}
.drp-btn--light:hover {
  background: #e0f2fe;
  border-color: #e0f2fe;
  color: #0c1a2e;
}

.drp-section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
  margin-bottom: 12px;
}

/* =========================================================
   NAV — drp-nav (sticky, light, flat)
   ========================================================= */
.drp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.2s ease;
}

.drp-nav.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.drp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

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

.drp-nav__logo img {
  height: 32px;
  width: auto;
}

.drp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.drp-nav__item a {
  display: inline-block;
  padding: 8px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0f172a;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.drp-nav__item a:hover,
.drp-nav__item a.active {
  color: #0369a1;
  background: #f0f9ff;
}

.drp-nav__cta {
  flex-shrink: 0;
}

.drp-nav__cta .drp-btn--primary {
  padding: 9px 20px;
  font-size: 0.9rem;
}

.drp-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0f172a;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .drp-nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 2px;
  }

  .drp-nav__links.is-open {
    display: flex;
  }

  .drp-nav__item a {
    padding: 10px 14px;
    display: block;
  }

  .drp-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .drp-nav__cta {
    display: none;
  }
}

/* =========================================================
   HERO — drp-hero (C-split / split-col)
   ========================================================= */
.drp-hero {
  padding: 80px 0 64px;
  background: #f8fafc;
  position: relative;
}

.drp-hero--split-col .drp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
  background: #e0f2fe;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.drp-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 20px;
}

.drp-hero__subtitle {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}

.drp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.drp-hero__visual {
  position: relative;
}

.drp-hero__visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  object-fit: cover;
  object-position: center;
}

.drp-hero__code {
  background: #0c1a2e;
  border-radius: 12px;
  padding: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #e2e8f0;
  box-shadow: 0 16px 48px rgba(12,26,46,0.3);
  overflow: hidden;
}

.drp-hero__code .code-comment { color: #64748b; }
.drp-hero__code .code-keyword { color: #38bdf8; }
.drp-hero__code .code-string { color: #fb923c; }
.drp-hero__code .code-value { color: #a3e635; }
.drp-hero__code .code-key { color: #e2e8f0; }

@media (max-width: 900px) {
  .drp-hero--split-col .drp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .drp-hero__subtitle {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .drp-hero {
    padding: 48px 0 40px;
  }
}

/* =========================================================
   STATS — drp-stats (B-cards)
   ========================================================= */
.drp-stats {
  padding: 72px 0;
  background: #ffffff;
}

.drp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-stats__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.drp-stats__card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.drp-stats__icon {
  width: 48px;
  height: 48px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 1.125rem;
}

.drp-stats__value {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.04em;
}

.drp-stats__label {
  font-size: 0.9375rem;
  color: #475569;
  font-weight: 500;
}

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

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

/* =========================================================
   FEATURES — drp-features (C-alternating)
   ========================================================= */
.drp-features {
  padding: 96px 0;
  background: #ffffff;
}

.drp-features__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
  padding: 0 24px;
}

.drp-features__header h2 {
  margin-bottom: 16px;
}

.drp-features__header p {
  font-size: 1.0625rem;
  color: #475569;
}

.drp-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.drp-features__row:last-child {
  margin-bottom: 0;
}

.drp-features__row--reverse {
  direction: rtl;
}

.drp-features__row--reverse > * {
  direction: ltr;
}

.drp-features__media {
  border-radius: 12px;
  overflow: hidden;
}

.drp-features__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

.drp-features__icon {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 1.375rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.drp-features__body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.drp-features__body .drp-features__one-liner {
  font-size: 1rem;
  font-weight: 600;
  color: #0369a1;
  margin-bottom: 14px;
}

.drp-features__body p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .drp-features__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .drp-features__row--reverse {
    direction: ltr;
  }

  .drp-features__media img {
    height: 240px;
  }
}

/* =========================================================
   PROCESS — drp-process (A-numbered)
   ========================================================= */
.drp-process {
  padding: 96px 0;
  background: #f8fafc;
}

.drp-process__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.drp-process__header h2 {
  margin-bottom: 14px;
}

.drp-process__header p {
  color: #475569;
  font-size: 1.0625rem;
}

.drp-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-process__step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}

.drp-process__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #e0f2fe;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.drp-process__icon {
  width: 52px;
  height: 52px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.drp-process__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.drp-process__body {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .drp-process__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* =========================================================
   CTA — drp-cta (A-banner)
   ========================================================= */
.drp-cta {
  background: #0c1a2e;
  padding: 80px 0;
}

.drp-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.drp-cta__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.drp-cta__sub {
  font-size: 1.0625rem;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.65;
}

.drp-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   TEAM — drp-team (A-grid)
   ========================================================= */
.drp-team {
  padding: 96px 0;
  background: #ffffff;
}

.drp-team__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.drp-team__header h2 {
  margin-bottom: 14px;
}

.drp-team__header p {
  color: #475569;
  font-size: 1.0625rem;
}

.drp-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-team__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.drp-team__card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.drp-team__portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.drp-team__info {
  padding: 20px;
  flex: 1;
}

.drp-team__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.drp-team__title {
  font-size: 0.875rem;
  color: #0369a1;
  font-weight: 600;
  margin-bottom: 10px;
}

.drp-team__bio {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .drp-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .drp-team__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* =========================================================
   CONTACT — drp-contact (A-split)
   ========================================================= */
.drp-contact {
  padding: 96px 0;
  background: #f8fafc;
}

.drp-contact__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-contact__form-wrap h2 {
  margin-bottom: 8px;
}

.drp-contact__form-wrap .drp-section-label {
  margin-bottom: 10px;
}

.drp-contact__form-wrap > p {
  color: #475569;
  margin-bottom: 32px;
}

.drp-contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drp-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drp-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.drp-form-group input,
.drp-form-group select,
.drp-form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: #1e293b;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  width: 100%;
}

.drp-form-group input:focus,
.drp-form-group select:focus,
.drp-form-group textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

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

.drp-form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 16px 20px;
  color: #166534;
  font-weight: 600;
  font-size: 0.9375rem;
}

.drp-contact__info {
  padding-top: 60px;
}

.drp-contact__info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.drp-contact__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.drp-contact__info-icon {
  width: 40px;
  height: 40px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 1rem;
  flex-shrink: 0;
}

.drp-contact__info-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.drp-contact__info-text span {
  font-size: 0.875rem;
  color: #475569;
}

@media (max-width: 860px) {
  .drp-contact__grid {
    grid-template-columns: 1fr;
  }

  .drp-contact__info {
    padding-top: 0;
  }
}

/* =========================================================
   BLOG GRID — drp-blog (A-cards)
   ========================================================= */
.drp-blog {
  padding: 96px 0;
  background: #ffffff;
}

.drp-blog__header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.drp-blog__header h2 {
  margin-bottom: 10px;
}

.drp-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-blog__card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.drp-blog__card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.drp-blog__thumb {
  display: block;
}

.drp-blog__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.drp-blog__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drp-blog__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.drp-blog__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0369a1;
  background: #e0f2fe;
  padding: 3px 9px;
  border-radius: 12px;
}

.drp-blog__date {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.drp-blog__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 10px;
}

.drp-blog__title a {
  color: #0f172a;
  transition: color 0.15s ease;
}

.drp-blog__title a:hover {
  color: #0369a1;
}

.drp-blog__excerpt {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.drp-blog__read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0369a1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.15s ease;
}

.drp-blog__read-more:hover {
  gap: 10px;
  color: #0284c7;
}

@media (max-width: 900px) {
  .drp-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .drp-blog__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BLOG ARTICLE — drp-article (reading width)
   ========================================================= */
.drp-article {
  padding: 80px 24px;
  max-width: 740px;
  margin: 0 auto;
}

.drp-article__header {
  margin-bottom: 40px;
}

.drp-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.drp-article__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.drp-article__cover {
  width: 100%;
  max-width: 740px;
  height: auto;
  border-radius: 12px;
  margin: 32px auto;
  display: block;
}

.drp-article__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1e293b;
}

.drp-article__body h2 {
  font-size: 1.625rem;
  margin: 2.25rem 0 1rem;
}

.drp-article__body h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
}

.drp-article__body p {
  margin-bottom: 1.4rem;
}

.drp-article__body ul,
.drp-article__body ol {
  list-style: disc;
  padding-left: 1.6rem;
  margin-bottom: 1.4rem;
}

.drp-article__body ol {
  list-style: decimal;
}

.drp-article__body li {
  margin-bottom: 0.5rem;
}

.drp-article__body code {
  background: #f0f9ff;
  color: #0369a1;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.875em;
}

.drp-article__body pre {
  background: #0c1a2e;
  color: #e2e8f0;
  padding: 20px 24px;
  border-radius: 10px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.drp-article__body pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.drp-article__body blockquote {
  border-left: 4px solid #0ea5e9;
  padding: 12px 20px;
  margin: 1.5rem 0;
  background: #f0f9ff;
  border-radius: 0 8px 8px 0;
  color: #334155;
  font-style: italic;
}

.blog-img-full {
  width: 100vw;
  max-width: 740px;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
}

/* Related posts */
.drp-related {
  padding: 48px 0 80px;
  max-width: 740px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.drp-related h2 {
  font-size: 1.375rem;
  margin-bottom: 28px;
  color: #0f172a;
}

.drp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.drp-related__card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.drp-related__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.drp-related__body {
  padding: 14px;
  flex: 1;
}

.drp-related__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.drp-related__title a {
  color: #0f172a;
}

.drp-related__title a:hover {
  color: #0369a1;
}

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

/* =========================================================
   PAGE HERO — drp-page-hero (sub-pages small banner)
   ========================================================= */
.drp-page-hero {
  background: #f0f9ff;
  padding: 56px 0 48px;
  border-bottom: 1px solid #e2e8f0;
}

.drp-page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-page-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
  margin-bottom: 12px;
}

.drp-page-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.drp-page-hero__lede {
  font-size: 1.125rem;
  color: #475569;
  max-width: 600px;
}

/* =========================================================
   FOOTER — drp-footer (A-4col)
   ========================================================= */
.drp-footer {
  background: #0c1a2e;
  padding: 64px 0 0;
  color: #94a3b8;
}

.drp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.drp-footer__brand {}

.drp-footer__logo {
  display: block;
  margin-bottom: 16px;
}

.drp-footer__logo img {
  height: 32px;
  width: auto;
}

.drp-footer__tagline {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}

.drp-footer__social {
  display: flex;
  gap: 10px;
}

.drp-footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.9375rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.drp-footer__social a:hover {
  background: #0369a1;
  color: #ffffff;
}

.drp-footer__col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.drp-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.drp-footer__links a {
  font-size: 0.875rem;
  color: #64748b;
  transition: color 0.15s ease;
}

.drp-footer__links a:hover {
  color: #38bdf8;
}

.drp-footer__bottom {
  border-top: 1px solid #1e3a5f;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.drp-footer__copy {
  font-size: 0.8125rem;
  color: #475569;
}

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

.drp-footer__legal a {
  font-size: 0.8125rem;
  color: #475569;
  transition: color 0.15s ease;
}

.drp-footer__legal a:hover {
  color: #38bdf8;
}

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

  .drp-footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .drp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   COOKIE BANNER — drp-cookie (A-generic, corner-toast-bl)
   ========================================================= */
.drp-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: #ffffff;
  border: 1.5px solid #0ea5e9;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 20px 22px;
  max-width: 340px;
  width: calc(100vw - 48px);
}

.drp-cookie[hidden] {
  display: none;
}

.drp-cookie__text {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
}

.drp-cookie__text a {
  color: #0369a1;
  font-weight: 600;
}

.drp-cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.drp-cookie__accept {
  background: #0369a1;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  padding: 9px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.drp-cookie__accept:hover {
  background: #0284c7;
}

.drp-cookie__decline {
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
  border-radius: 7px;
  padding: 9px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.drp-cookie__decline:hover {
  border-color: #94a3b8;
  color: #334155;
}

@media (max-width: 480px) {
  .drp-cookie {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    width: auto;
  }
}

/* =========================================================
   LOGIN — drp-login
   ========================================================= */
.drp-login {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 0px);
}

.drp-login__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: #f0f9ff;
}

.drp-login__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.drp-login__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.drp-login__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.drp-login__sub {
  font-size: 0.9375rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 32px;
}

.drp-login__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drp-login__back {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: #64748b;
}

.drp-login__back a {
  color: #0369a1;
  font-weight: 600;
}

/* =========================================================
   ABOUT PAGE SECTIONS
   ========================================================= */
.drp-story {
  padding: 80px 0;
  background: #ffffff;
}

.drp-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-story__body h2 {
  margin-bottom: 20px;
}

.drp-story__body p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
}

.drp-story__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

.drp-mission {
  padding: 80px 0;
  background: #f8fafc;
}

.drp-mission__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.drp-mission__inner h2 {
  margin-bottom: 20px;
}

.drp-mission__statement {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.55;
  font-style: italic;
}

.drp-values {
  padding: 80px 0;
  background: #ffffff;
}

.drp-values__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-values__inner h2 {
  margin-bottom: 40px;
  text-align: center;
}

.drp-values__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}

.drp-values__item {
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: 12px;
  padding: 24px;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  padding-left: 52px;
}

.drp-values__item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0369a1;
}

.drp-investors {
  padding: 72px 0;
  background: #f8fafc;
}

.drp-investors__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-investors__inner h2 {
  margin-bottom: 32px;
}

.drp-investors__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

@media (max-width: 860px) {
  .drp-story__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .drp-values__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .drp-values__list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.drp-product-overview {
  padding: 80px 0;
  background: #f8fafc;
}

.drp-product-overview__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-product-problem {
  padding: 80px 0;
  background: #ffffff;
}

.drp-product-problem__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-product-problem__inner h2 {
  margin-bottom: 24px;
}

.drp-product-problem__inner p {
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.75;
}

.drp-product-hiw {
  padding: 80px 0;
  background: #f0f9ff;
}

.drp-product-hiw__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-product-hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.drp-hiw-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
}

.drp-hiw-step__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0369a1;
  margin-bottom: 10px;
}

.drp-hiw-step h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.drp-hiw-step p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
}

.drp-integrations {
  padding: 64px 0;
  background: #ffffff;
}

.drp-integrations__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-integrations__inner h2 {
  margin-bottom: 32px;
  text-align: center;
}

.drp-integrations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.drp-integrations__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0369a1;
}

@media (max-width: 768px) {
  .drp-product-hiw__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* =========================================================
   DOCS PAGE
   ========================================================= */
.drp-docs {
  padding: 80px 0;
  background: #ffffff;
}

.drp-docs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-docs__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.2s ease;
  text-decoration: none;
}

.drp-docs__card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.drp-docs__card-icon {
  width: 56px;
  height: 56px;
  background: #e0f2fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 1.375rem;
  flex-shrink: 0;
}

.drp-docs__card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.drp-docs__card-body p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .drp-docs__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.drp-legal {
  padding: 80px 24px;
  max-width: 740px;
  margin: 0 auto;
}

.drp-legal h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.drp-legal__date {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 40px;
  display: block;
}

.drp-legal h2 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
}

.drp-legal p, .drp-legal li {
  font-size: 1rem;
  color: #334155;
  line-height: 1.75;
}

.drp-legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* =========================================================
   404 PAGE
   ========================================================= */
.drp-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: #f0f9ff;
}

.drp-404__inner {
  text-align: center;
  max-width: 480px;
}

.drp-404__code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 6rem;
  font-weight: 700;
  color: #e0f2fe;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.drp-404__inner h1 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 14px;
}

.drp-404__inner p {
  font-size: 1.0625rem;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* =========================================================
   INTEGRATION HIGHLIGHT (index page)
   ========================================================= */
.drp-integrations-bar {
  padding: 56px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.drp-integrations-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.drp-integrations-bar__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 28px;
}

.drp-integrations-bar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.drp-text-center { text-align: center; }
.drp-mt-auto { margin-top: auto; }

.drp-section--alt {
  background: #f8fafc;
}

@media (max-width: 768px) {
  .drp-hide-mobile {
    display: none;
  }
}

/* ===== c-hero / c-hero--split-col: semantic aliases for .drp-hero / .drp-hero--split-col ===== */
.c-hero { display: block; }
.c-hero--split-col { display: block; }
/* c-nav / c-nav--sticky: semantic aliases for .drp-nav navigation */
.c-nav { display: block; }
.c-nav--sticky { position: sticky; top: 0; z-index: 100; }
/* drp-hero__content: alias used in hero section */
.drp-hero__content { flex: 1; }

/* Grid orphan fallback: single-child hero falls back to single-column */
.drp-hero--split-col:has(> *:only-child) {
  grid-template-columns: 1fr;
}

/* ===== Article reading width (blog article body) ===== */
.article-body {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ===== Target Customer section (product.html) ===== */
.drp-target-customer {
  padding: 64px 0;
  background: #fff;
}
.drp-target-customer__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
