/* parcelarc.css — Parcelarc site CSS */
/* Inlines: base + nav + hero + stats + features + process + team + testimonials + cta + contact + footer + cookie */

/* ============================================================ */
/* :root + Base */
/* ============================================================ */
:root {
  --accent: #06b6d4;
  --accent-rgb: 6,182,212;
  --bg-dark: #0b0f19;
  --bg-alt: #111827;
  --bg-surface: #1a2332;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --font-sans: 'Geist', system-ui, sans-serif;
  --font-display: 'Geist', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.page-sub { padding-top: 64px; }

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.9; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

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

.section-dark { background: var(--bg-dark); }
.section-alt { background: var(--bg-alt); }
.section-surface { background: var(--bg-surface); }

html { scroll-behavior: smooth; }

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

/* ============================================================ */
/* Nav Component */
/* ============================================================ */
.c-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.c-nav__logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 800;
  text-decoration: none;
  color: inherit;
}
.c-nav__logo-img { height: 28px; width: auto; display: none; }

.c-nav__links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.c-nav__links a {
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}
.c-nav__cta {
  background: #06b6d4;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600;
}
.c-nav__cta:hover { opacity: 0.9; color: #fff !important; }

.c-nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.c-nav__toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; transition: 0.3s; }

.c-nav[data-nav-theme="light"] {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.c-nav[data-nav-theme="light"] .c-nav__logo { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--light { display: inline; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--dark  { display: none; }
.c-nav[data-nav-theme="light"] .c-nav__links a { color: #334155; }
.c-nav[data-nav-theme="light"] .c-nav__links a:hover,
.c-nav[data-nav-theme="light"] .c-nav__links a.active { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__toggle span { background: #0f172a; }

.c-nav[data-nav-theme="dark"] { background: transparent; }
.c-nav[data-nav-theme="dark"].scrolled,
.c-nav[data-nav-theme="dark"].c-nav--solid {
  background: rgba(11,15,25,0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.c-nav[data-nav-theme="dark"] .c-nav__logo { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--light { display: none; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--dark  { display: inline; }
.c-nav[data-nav-theme="dark"] .c-nav__links a { color: #94a3b8; }
.c-nav[data-nav-theme="dark"] .c-nav__links a:hover,
.c-nav[data-nav-theme="dark"] .c-nav__links a.active { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__toggle span { background: #f1f5f9; }

.c-nav__logo-img ~ .c-nav__logo-fallback,
.c-nav__logo:has(.c-nav__logo-img) .c-nav__logo-fallback { display: none !important; }

@media (max-width: 768px) {
  .c-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #0b0f19;
    padding: 16px;
    border-top: 1px solid #1e293b;
    gap: 4px;
  }
  .c-nav[data-nav-theme="light"] .c-nav__links {
    background: #ffffff;
    border-top-color: rgba(15,23,42,0.08);
  }
  .c-nav[data-nav-theme="light"] .c-nav__links a { color: #0f172a; }
  .c-nav__links.open { display: flex; }
  .c-nav__toggle { display: block; }
}

/* ============================================================ */
/* Buttons */
/* ============================================================ */
.c-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.c-btn--primary {
  background: #06b6d4;
  color: #ffffff;
}
.c-btn--primary:hover { opacity: 0.9; color: #ffffff; }

.c-btn--ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226,232,240,0.3);
}
.c-btn--ghost:hover { border-color: #e2e8f0; color: #ffffff; }

.c-btn--outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226,232,240,0.3);
}
.c-btn--outline:hover { border-color: #e2e8f0; color: #ffffff; }

.c-btn--sm { padding: 8px 16px; font-size: 14px; }

/* ============================================================ */
/* Hero Variant F: Dark Centered Typographic */
/* ============================================================ */
.c-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f19;
  color: #f1f5f9;
}

.c-hero--dark-typographic {
  min-height: 88vh;
  background: #0b0f19;
  color: #e5e7eb;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  display: block;
}

.c-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(6,182,212,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(6,182,212,0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.c-hero--dark-typographic .container {
  position: relative;
  z-index: 2;
}

.c-hero__content {
  max-width: 880px;
  margin: 0 auto;
}

.c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 24px;
  opacity: 0.9;
}

.c-hero--dark-typographic .c-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 100%;
  margin: 0 auto 28px;
  color: #ffffff;
  font-weight: 800;
}

.c-hero--dark-typographic .c-hero__subtitle {
  font-size: 20px;
  line-height: 1.55;
  color: #9ca3af;
  max-width: 640px;
  margin: 0 auto 40px;
}

.c-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Page hero for sub-pages */
.c-page-hero {
  background: #111827;
  padding: 80px 0 56px;
  text-align: center;
}
.c-page-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 16px;
}
.c-page-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.c-page-hero__lede {
  font-size: 17px;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .c-hero--dark-typographic { padding: 90px 0 60px; min-height: auto; }
  .c-hero--dark-typographic .c-hero__title { font-size: 36px; }
  .c-hero--dark-typographic .c-hero__subtitle { font-size: 16px; }
  .c-page-hero { padding: 64px 0 40px; }
  .c-page-hero__title { font-size: 28px; }
}

/* ============================================================ */
/* Section Header */
/* ============================================================ */
.c-section-header { text-align: center; margin-bottom: 56px; }
.c-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 12px;
}
.c-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.c-section-desc {
  font-size: 17px;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================ */
/* Stats Variant B: Cards */
/* ============================================================ */
.c-stats { padding: 48px 0; }
.c-stats--cards { background: #0b0f19; padding: 64px 0; }

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

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

.c-stats__grid--4 { grid-template-columns: repeat(4, 1fr); }

.c-stats__card {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.c-stats__number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1.2;
  font-family: var(--font-mono);
}

.c-stats__label {
  display: block;
  font-size: 14px;
  color: #f1f5f9;
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.c-stats__desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-stats__grid,
  .c-stats__grid--4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .c-stats__number { font-size: 28px; }
}

/* ============================================================ */
/* Features Variant C: Alternating */
/* ============================================================ */
.c-features { padding: 80px 0; background: #111827; }

.c-features__row { padding: 48px 0; }
.c-features__row + .c-features__row { border-top: 1px solid #1e293b; }

.c-features__row .c-features__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.c-features__row--reverse .c-features__cols {
  direction: rtl;
}
.c-features__row--reverse .c-features__cols > * {
  direction: ltr;
}

.c-features__name {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.c-features__text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 0;
}
.c-features__text + .c-features__text { margin-top: 12px; }

.c-features__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  aspect-ratio: 16/9;
  object-fit: cover;
}

@media (max-width: 768px) {
  .c-features__row .c-features__cols { grid-template-columns: 1fr; gap: 32px; }
  .c-features__row--reverse .c-features__cols { direction: ltr; }
  .c-features__name { font-size: 20px; }
}

/* ============================================================ */
/* Process Variant A: Numbered */
/* ============================================================ */
.c-process { padding: 80px 0; background: #0b0f19; }

.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.c-process__step {
  position: relative;
  padding: 32px 24px;
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.c-process__num {
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  color: #06b6d4;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.c-process__name {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.c-process__text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .c-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .c-process__steps { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* Team Variant A: Grid */
/* ============================================================ */
.c-team { padding: 80px 0; background: #111827; }
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.c-team__card { text-align: center; }
.c-team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 16px;
  border: 3px solid #1e293b;
}
.c-team__name { font-size: 17px; font-weight: 700; color: #f1f5f9; margin-bottom: 4px; }
.c-team__role { font-size: 14px; color: #64748b; }

/* ============================================================ */
/* Testimonials Variant B: Stats */
/* ============================================================ */
.c-testimonials { padding: 80px 0; background: #0b0f19; }
.c-testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.c-testimonials__card { background: #111827; border: 1px solid #1e293b; border-radius: 12px; padding: 36px 28px; }
.c-testimonials__stat { display: block; font-size: 42px; font-weight: 800; color: #06b6d4; margin-bottom: 12px; font-family: var(--font-mono); }
.c-testimonials__source { font-size: 15px; font-weight: 700; color: #f1f5f9; margin-bottom: 12px; }
.c-testimonials__text { font-size: 14px; color: #94a3b8; line-height: 1.7; }
@media(max-width:768px){ .c-testimonials__grid{grid-template-columns:1fr;} }

/* ============================================================ */
/* CTA Variant A: Banner */
/* ============================================================ */
.c-cta { background: #06b6d4; padding: 64px 0; text-align: center; }
.c-cta__title { font-size: 32px; font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.c-cta__desc { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.c-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.c-cta .c-btn--primary { background: #ffffff; color: #06b6d4; }
.c-cta .c-btn--primary:hover { opacity: 0.9; }
.c-cta .c-btn--outline { border-color: rgba(255,255,255,0.4); color: #ffffff; }
.c-cta .c-btn--outline:hover { border-color: #ffffff; }

/* ============================================================ */
/* Contact Variant A: Split */
/* ============================================================ */
.c-contact { padding: 80px 0; background: #0b0f19; }
.c-contact__wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.c-contact__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) {
  .c-contact__grid { grid-template-columns: 7fr 4fr; gap: 72px; }
}
.c-contact__form-col { min-width: 0; }
.c-contact__info-col { min-width: 0; }
.c-contact__row-2 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) {
  .c-contact__row-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.c-contact__title { font-size: 28px; font-weight: 800; color: #f1f5f9; margin-bottom: 32px; }
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  width: 100%;
  background: #111827;
  border: 1px solid #334155;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  font-family: var(--font-sans);
}
.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus { border-color: #06b6d4; outline: none; }
.c-contact__form select option { background: #111827; }
.c-contact__form button { cursor: pointer; }
.c-contact__info-title { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 24px; }
.c-contact__info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; font-size: 15px; color: #94a3b8; }
.c-contact__info-item i { color: #06b6d4; font-size: 16px; margin-top: 3px; min-width: 20px; }
.c-contact__info-item a { color: #94a3b8; text-decoration: none; }
.c-contact__info-item a:hover { color: #06b6d4; }

/* ============================================================ */
/* Footer Variant A: 4-col */
/* ============================================================ */
.c-footer { background: #0b0f19; padding: 64px 0 0; border-top: 1px solid #1e293b; color: #94a3b8; }
.c-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.c-footer__logo { font-size: 20px; font-weight: 800; color: #f1f5f9; text-decoration: none; display: inline-block; margin-bottom: 12px; }
.c-footer__logo span { color: #06b6d4; }
.c-footer__tagline { font-size: 14px; color: #64748b; line-height: 1.6; }
.c-footer__col h4 { font-size: 14px; font-weight: 700; color: #e2e8f0; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.c-footer__col ul { list-style: none; padding: 0; margin: 0; }
.c-footer__col ul li { margin-bottom: 10px; color: #94a3b8; font-size: 14px; }
.c-footer__col ul li a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.c-footer__col ul li a:hover { color: #06b6d4; }
.c-footer__contact p { font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.c-footer__contact i { color: #06b6d4; width: 18px; font-size: 13px; margin-right: 8px; }
.c-footer__bottom { border-top: 1px solid #1e293b; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #475569; }
.c-footer__legal { display: flex; gap: 20px; }
.c-footer__legal a { color: #64748b; text-decoration: none; font-size: 13px; }
.c-footer__legal a:hover { color: #94a3b8; }
@media(max-width:768px){
  .c-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .c-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================ */
/* Cookie Banner Variant A: Generic */
/* ============================================================ */
.c-cookie {
  position: fixed;
  inset: auto 16px 16px 16px;
  max-width: 720px;
  margin-left: auto;
  z-index: 1080;
  background: #1e293b;
  color: #e2e8f0;
  border: 1px solid #334155;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-radius: 12px;
  padding: 14px 18px;
}
.c-cookie[hidden] { display: none !important; }
.c-cookie__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.c-cookie__text {
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #94a3b8;
}
.c-cookie__text a { color: #06b6d4; }
.c-cookie__actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
@media (max-width: 576px) {
  .c-cookie { inset: auto 8px 8px 8px; }
  .c-cookie__actions { width: 100%; justify-content: flex-end; }
}

/* ============================================================ */
/* About page */
/* ============================================================ */
.c-about { padding: 80px 0; background: #0b0f19; }
.c-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.c-about__title { font-size: 32px; font-weight: 800; color: #f1f5f9; margin-bottom: 24px; }
.c-about__body { font-size: 16px; color: #94a3b8; line-height: 1.8; }
.c-about__body p + p { margin-top: 16px; }
.c-about__values { padding: 64px 0; background: #111827; }
.c-about__values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.c-about__value-card {
  background: #0b0f19;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 28px 24px;
}
.c-about__value-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #06b6d4;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-about__value-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}
.c-about__mission { padding: 64px 0; background: #0b0f19; text-align: center; }
.c-about__mission-text {
  font-size: 22px;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .c-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .c-about__values-grid { grid-template-columns: 1fr; }
  .c-about__mission-text { font-size: 18px; }
}

/* ============================================================ */
/* Product page — integrations grid */
/* ============================================================ */
.c-integrations { padding: 80px 0; background: #111827; }
.c-integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.c-integrations__badge {
  background: #0b0f19;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color 0.2s;
}
.c-integrations__badge:hover { border-color: #06b6d4; }
.c-integrations__badge img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
}
.c-integrations__name {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .c-integrations__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================ */
/* Blog Grid Variant D: Minimal List */
/* ============================================================ */
.c-blog-grid--minimal { padding: 80px 0; background: #0b0f19; }
.c-blog-grid--minimal .c-section-header--left { text-align: left; margin-bottom: 48px; }

.c-blog-grid__list--minimal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-blog-min {
  border-bottom: 1px solid #1e293b;
}
.c-blog-min:first-child { border-top: 1px solid #1e293b; }
.c-blog-min__link {
  display: block;
  padding: 28px 0;
  text-decoration: none;
  transition: background 0.15s;
}
.c-blog-min__link:hover .c-blog-min__title { color: #06b6d4; }
.c-blog-min__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}
.c-blog-min__meta time {
  font-size: 13px;
  color: #475569;
  font-family: var(--font-mono);
}
.c-blog-min__category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #06b6d4;
  background: rgba(6,182,212,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}
.c-blog-min__title {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.2s;
}
.c-blog-min__excerpt {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}
@media (max-width: 768px) {
  .c-blog-min__title { font-size: 16px; }
  .c-blog-min__link { padding: 20px 0; }
}

/* ============================================================ */
/* Blog Detail Variant A: Standard */
/* ============================================================ */
.c-post { padding-top: 0; }
.c-post__header { padding: 48px 0 32px; background: #0b0f19; }
.c-post__breadcrumb {
  font-size: 13px;
  color: #475569;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-post__breadcrumb a { color: #06b6d4; text-decoration: none; }
.c-post__breadcrumb a:hover { opacity: 0.8; }
.c-post__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #06b6d4;
  background: rgba(6,182,212,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.c-post__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.c-post__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
}
.c-post__meta time { font-family: var(--font-mono); }
.c-post__cover {
  margin: 0;
  background: #111827;
}
.c-post__cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.c-post__body {
  padding: 48px 0;
  background: #0b0f19;
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.8;
}
.c-post__lead {
  font-size: 19px;
  color: #e2e8f0;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 32px;
}
.c-post__footer {
  padding: 32px 0 48px;
  border-top: 1px solid #1e293b;
  margin-top: 48px;
}
.c-post__share {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #64748b;
}
.c-post__share a {
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 6px;
  font-size: 13px;
  transition: border-color 0.2s;
}
.c-post__share a:hover { border-color: #06b6d4; }

/* ==== BLOG ARTICLE READING WIDTH (MANDATORY) ==== */
.c-article,
.c-article__container,
.c-post__body,
.c-post,
.c-blog-post,
.blog-article,
.blog-article-body,
.blog-article-content,
.blog-post,
.blog-post-body,
.article-body,
.article-content,
.post-content,
.post-body,
.container-narrow,
.reading-column {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Article body images: never exceed reading column */
.c-article img,
.c-article__container img,
.c-post__body img,
.blog-article-body img,
.blog-post img,
.article-body img,
.article-content img,
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 24px auto 32px;
}

/* Heading rhythm in article body */
.c-article h2,
.c-post__body h2,
.blog-article-body h2,
.blog-post h2,
.article-body h2,
.post-content h2 { margin-top: 48px; margin-bottom: 20px; }

.c-article h3,
.c-post__body h3,
.blog-article-body h3,
.blog-post h3,
.article-body h3,
.post-content h3 { margin-top: 36px; margin-bottom: 16px; }

/* Legal pages */
.c-legal { padding: 64px 0 80px; background: #0b0f19; }
.c-legal h1 { font-size: 36px; font-weight: 800; color: #f1f5f9; margin-bottom: 8px; }
.c-legal .c-legal__effective { font-size: 14px; color: #475569; margin-bottom: 40px; font-family: var(--font-mono); }
.c-legal h2 { font-size: 20px; font-weight: 700; color: #e2e8f0; margin-top: 40px; margin-bottom: 12px; }
.c-legal p, .c-legal li { font-size: 15px; color: #94a3b8; line-height: 1.8; margin-bottom: 12px; }
.c-legal ul { padding-left: 24px; }
.c-legal a { color: #06b6d4; }

/* ============================================================ */
/* 404 page */
/* ============================================================ */
.c-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: #0b0f19;
}
.c-404__code {
  font-size: 120px;
  font-weight: 900;
  color: #06b6d4;
  opacity: 0.15;
  line-height: 1;
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 0;
}
.c-404__title { font-size: 28px; font-weight: 700; color: #f1f5f9; margin-bottom: 16px; }
.c-404__text { font-size: 16px; color: #94a3b8; margin-bottom: 32px; max-width: 420px; }

/* ============================================================ */
/* Blog Related Articles (c-post__related-*) */
/* ============================================================ */
.c-post__related { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.c-post__related h3 { font-size: 18px; font-weight: 700; color: #e2e8f0; margin-bottom: 24px; }
.c-post__related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.c-post__related-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-post__related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.c-post__related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.c-post__related-card-body { padding: 12px 14px 14px; }
.c-post__related-info { padding: 12px 14px 14px; }
.c-post__related-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #06b6d4;
  margin-bottom: 6px;
}
.c-post__related-title { font-size: 14px; font-weight: 600; color: #e2e8f0; line-height: 1.4; margin: 0; }
.c-post__related-info h4 { font-size: 14px; font-weight: 600; color: #e2e8f0; line-height: 1.4; margin: 0; }
@media (max-width: 768px) {
  .c-post__related-grid { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* Blog article body typography extras (c-post__*) */
/* ============================================================ */
.c-post__intro {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.c-post__list {
  margin: 0 0 24px 0;
  padding-left: 20px;
}
.c-post__list li {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 8px;
}
.c-post__quote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid #06b6d4;
  background: rgba(6,182,212,0.06);
  border-radius: 0 8px 8px 0;
  font-size: 17px;
  color: #e2e8f0;
  font-style: italic;
  line-height: 1.7;
}
.c-post__code {
  display: block;
  margin: 24px 0;
  padding: 20px 24px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: #a5f3fc;
  overflow-x: auto;
  line-height: 1.65;
}
.c-post__cta {
  display: block;
  margin: 40px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(8,145,178,0.08));
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 12px;
  text-align: center;
}
.c-post__cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.c-post__cta p {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 20px;
}
.c-post__table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}
.c-post__table th {
  background: #0f172a;
  color: #e2e8f0;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(6,182,212,0.3);
}
.c-post__table td {
  padding: 10px 14px;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.c-post__table tr:hover td { background: rgba(255,255,255,0.02); }

/* Layout helper classes */
.c-blog-grid { padding: 40px 0; }
.c-blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .c-blog-grid__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .c-blog-grid__list { grid-template-columns: 1fr; }
}

/* Feature alternating layout */
.c-features--alternating .c-feature {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
}
.c-features--alternating .c-feature:nth-child(even) { flex-direction: row-reverse; }

/* Footer brand column */
.c-footer__brand { max-width: 260px; }

/* Integrations icon */
.c-integrations__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Team bio */
.c-team__bio {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
  margin-top: 8px;
}
