/* pickrook.css — Pickrook Robotics */
/* Brand prefix: pr | Accent: #0284c7 | Secondary: #64748b */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
}

p {
  margin-bottom: 16px;
}

a {
  color: #0284c7;
  text-decoration: none;
}

a:hover {
  color: #0369a1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== LAYOUT ===== */
.pr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pr-section {
  padding: 80px 0;
}

.pr-section--alt {
  background-color: #f8fafc;
}

/* ===== NAV — A-simple, light theme ===== */
.pr-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  height: 64px;
  display: flex;
  align-items: center;
}

.pr-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pr-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.pr-nav__logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.pr-nav__logo-text {
  font-family: 'Geist', 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pr-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.pr-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.pr-nav__link:hover {
  color: #0284c7;
}

.pr-nav__link--active {
  color: #0284c7;
  font-weight: 600;
}

.pr-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: #0284c7;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.pr-nav__cta:hover {
  background-color: #0369a1;
  color: #ffffff;
}

.pr-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.pr-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1e293b;
  transition: all 0.3s;
}

.pr-nav__mobile {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 24px;
  gap: 4px;
}

.pr-nav__mobile.pr-nav__mobile--open {
  display: flex;
}

.pr-nav__mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: #475569;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
}

.pr-nav__mobile-link:hover,
.pr-nav__mobile-link--active {
  color: #0284c7;
}

@media (max-width: 768px) {
  .pr-nav__links {
    display: none;
  }
  .pr-nav__hamburger {
    display: flex;
  }
}

/* ===== HERO — background-image ===== */
.pr-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(15,23,42,0.72), rgba(15,23,42,0.55)), url('../images/hero-home.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pr-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.pr-hero__content {
  max-width: 680px;
}

.pr-hero__eyebrow {
  display: inline-block;
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #bae6fd;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  background-color: rgba(2, 132, 199, 0.35);
  padding: 4px 10px;
  border-radius: 4px;
}

.pr-hero__headline {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.pr-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 36px;
}

.pr-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.pr-btn--primary {
  background-color: #0284c7;
  color: #ffffff;
}

.pr-btn--primary:hover {
  background-color: #0369a1;
  color: #ffffff;
}

.pr-btn--outline {
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
}

.pr-btn--outline:hover {
  background-color: rgba(255,255,255,0.25);
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 900px) {
  .pr-hero {
    min-height: 640px;
  }
  .pr-hero__inner {
    padding: 60px 24px;
  }
  .pr-hero__content {
    max-width: 100%;
  }
  .pr-hero__headline {
    font-size: 38px;
  }
}

/* ===== PAGE HERO (sub-pages) ===== */
.pr-page-hero {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 48px 0;
}

.pr-page-hero__eyebrow {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.pr-page-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pr-page-hero__lede {
  font-size: 17px;
  color: #475569;
  max-width: 600px;
  margin: 0;
}

/* ===== STATS — A-bar ===== */
.pr-stats {
  background-color: #0f172a;
  padding: 48px 0;
}

.pr-stats__grid {
  display: flex;
  gap: 0;
}

.pr-stats__item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid #1e293b;
}

.pr-stats__item:last-child {
  border-right: none;
}

.pr-stats__number {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 40px;
  font-weight: 700;
  color: #0284c7;
  line-height: 1;
  margin-bottom: 6px;
}

.pr-stats__label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .pr-stats__grid {
    flex-wrap: wrap;
  }
  .pr-stats__item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid #1e293b;
  }
}

/* ===== FEATURES — C-alternating ===== */
.pr-features {
  padding: 80px 0;
}

.pr-feature {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 60px 0;
  border-bottom: 1px solid #f1f5f9;
}

.pr-feature:last-child {
  border-bottom: none;
}

.pr-feature--reverse {
  flex-direction: row-reverse;
}

.pr-feature__img-wrap {
  flex: 0 0 48%;
  max-width: 48%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pr-feature__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.pr-feature__img-placeholder {
  width: 100%;
  height: 300px;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 13px;
  font-family: 'Geist Mono', monospace;
}

.pr-feature__body {
  flex: 1;
}

.pr-feature__num {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pr-feature__title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pr-feature__sub {
  font-size: 16px;
  color: #0284c7;
  font-weight: 600;
  margin-bottom: 16px;
}

.pr-feature__text {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .pr-feature,
  .pr-feature--reverse {
    flex-direction: column;
    gap: 32px;
  }
  .pr-feature__img-wrap {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
}

/* ===== SECTION HEADING ===== */
.pr-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.pr-section-head__eyebrow {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pr-section-head__title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pr-section-head__sub {
  font-size: 17px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TEAM — A-grid ===== */
.pr-team__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.pr-team-card {
  flex: 1 1 calc(20% - 32px);
  max-width: calc(20% - 26px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pr-team-card__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid #e0f2fe;
  flex-shrink: 0;
}

.pr-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pr-team-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.pr-team-card__title {
  font-size: 13px;
  color: #64748b;
  font-family: 'Geist Mono', monospace;
}

@media (max-width: 900px) {
  .pr-team-card {
    flex: 1 1 calc(33% - 32px);
    max-width: calc(33% - 22px);
  }
}

@media (max-width: 600px) {
  .pr-team-card {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

/* ===== CTA — A-banner ===== */
.pr-cta {
  background-color: #0284c7;
  padding: 72px 0;
  text-align: center;
}

.pr-cta__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pr-cta__sub {
  font-size: 18px;
  color: #bae6fd;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pr-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pr-btn--white {
  background-color: #ffffff;
  color: #0284c7;
}

.pr-btn--white:hover {
  background-color: #f0f9ff;
  color: #0369a1;
}

.pr-btn--outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.pr-btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* ===== FOOTER — A-4col ===== */
.pr-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 64px 0 0;
}

.pr-footer__grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e293b;
}

.pr-footer__col {
  flex: 1 1 200px;
}

.pr-footer__col--brand {
  flex: 1 1 260px;
  max-width: 300px;
}

.pr-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.pr-footer__logo-mark {
  width: 28px;
  height: 28px;
}

.pr-footer__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
}

.pr-footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.pr-footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pr-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-footer__link {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.pr-footer__link:hover {
  color: #0284c7;
}

.pr-footer__contact-item {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pr-footer__contact-item i {
  color: #0284c7;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

.pr-footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pr-footer__copy {
  font-size: 13px;
  color: #475569;
  margin: 0;
}

.pr-footer__social {
  display: flex;
  gap: 16px;
}

.pr-footer__social-link {
  font-size: 16px;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.pr-footer__social-link:hover {
  color: #0284c7;
}

@media (max-width: 768px) {
  .pr-footer__grid {
    flex-direction: column;
    gap: 32px;
  }
  .pr-footer__col--brand {
    max-width: 100%;
  }
}

/* ===== COOKIE BANNER — A-generic ===== */
.pr-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #0f172a;
  border-top: 2px solid #0284c7;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pr-cookie--hidden {
  display: none;
}

.pr-cookie__text {
  font-size: 14px;
  color: #cbd5e1;
  flex: 1;
  margin: 0;
}

.pr-cookie__text a {
  color: #38bdf8;
  text-decoration: underline;
}

.pr-cookie__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pr-cookie__accept {
  padding: 8px 20px;
  background-color: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s;
}

.pr-cookie__accept:hover {
  background-color: #0369a1;
}

.pr-cookie__dismiss {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  font-family: inherit;
}

.pr-cookie__dismiss:hover {
  color: #94a3b8;
}

/* ===== CONTACT — A-split ===== */
.pr-contact {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.pr-contact__info {
  flex: 1;
}

.pr-contact__info-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.pr-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.pr-contact__detail-icon {
  width: 40px;
  height: 40px;
  background-color: #e0f2fe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-contact__detail-icon i {
  font-size: 16px;
  color: #0284c7;
}

.pr-contact__detail-body .label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.pr-contact__detail-body .value {
  font-size: 15px;
  color: #1e293b;
  margin: 0;
}

.pr-contact__form {
  flex: 1;
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.pr-form-group {
  margin-bottom: 20px;
}

.pr-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.pr-form-group input,
.pr-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #1e293b;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pr-form-group input:focus,
.pr-form-group textarea:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.pr-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 900px) {
  .pr-contact {
    flex-direction: column;
    gap: 40px;
  }
  .pr-contact__form {
    width: 100%;
    padding: 28px;
  }
}

/* ===== ABOUT PAGE ===== */
.pr-about-story {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.pr-about-story__text {
  flex: 1;
}

.pr-about-story__aside {
  flex: 0 0 320px;
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid #0284c7;
}

.pr-about-story__aside-title {
  font-size: 14px;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pr-values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pr-values-list li {
  font-size: 14px;
  color: #374151;
  padding: 8px 12px 8px 16px;
  border-left: 3px solid #0284c7;
  background-color: #ffffff;
  border-radius: 0 6px 6px 0;
  font-family: 'Geist Mono', monospace;
}

@media (max-width: 900px) {
  .pr-about-story {
    flex-direction: column;
    gap: 40px;
  }
  .pr-about-story__aside {
    flex: unset;
    width: 100%;
  }
}

/* ===== INTEGRATIONS LIST ===== */
.pr-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pr-integration-tag {
  padding: 8px 16px;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Geist Mono', monospace;
  color: #374151;
}

/* ===== BLOG — B-editorial-list ===== */
.pr-blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pr-blog-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid #e2e8f0;
}

.pr-blog-item:first-child {
  padding-top: 0;
}

.pr-blog-item__thumb {
  flex: 0 0 240px;
  max-width: 240px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.pr-blog-item__thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.pr-blog-item__thumb-placeholder {
  width: 100%;
  height: 160px;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #94a3b8;
  font-family: 'Geist Mono', monospace;
}

.pr-blog-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pr-blog-item__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}

.pr-blog-item__cat {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: #e0f2fe;
  padding: 2px 8px;
  border-radius: 3px;
  font-family: 'Geist Mono', monospace;
}

.pr-blog-item__date {
  font-size: 13px;
  color: #94a3b8;
  font-family: 'Geist Mono', monospace;
}

.pr-blog-item__title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pr-blog-item__title a {
  color: inherit;
  text-decoration: none;
}

.pr-blog-item__title a:hover {
  color: #0284c7;
}

.pr-blog-item__excerpt {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.pr-blog-item__read-more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0284c7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pr-blog-item__read-more:hover {
  color: #0369a1;
}

@media (max-width: 640px) {
  .pr-blog-item {
    flex-direction: column;
    gap: 16px;
  }
  .pr-blog-item__thumb {
    max-width: 100%;
    width: 100%;
  }
  .pr-blog-item__thumb img,
  .pr-blog-item__thumb-placeholder {
    height: 200px;
  }
}

/* ===== BLOG ARTICLE — A-standard (reading-width block) ===== */
.pr-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.pr-article__header {
  padding: 48px 0 40px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 40px;
}

.pr-article__cat {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Geist Mono', monospace;
  margin-bottom: 12px;
}

.pr-article__title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pr-article__meta {
  font-size: 14px;
  color: #64748b;
  font-family: 'Geist Mono', monospace;
}

.pr-article__cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
}

.pr-article__cover-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e2e8f0;
  border-radius: 8px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #94a3b8;
  font-family: 'Geist Mono', monospace;
}

.c-post__body {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  max-width: 780px;
}

.c-post__body h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.c-post__body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin: 32px 0 12px;
}

.c-post__body p {
  margin-bottom: 20px;
}

.c-post__body ul,
.c-post__body ol {
  margin-left: 24px;
  margin-bottom: 20px;
  list-style: disc;
}

.c-post__body li {
  margin-bottom: 8px;
}

.c-post__body blockquote {
  border-left: 4px solid #0284c7;
  padding: 16px 24px;
  margin: 32px 0;
  background-color: #f8fafc;
  font-style: italic;
  color: #475569;
}

.c-post__body code {
  font-family: 'Geist Mono', monospace;
  background-color: #f1f5f9;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 15px;
  color: #0284c7;
}

.pr-blog-img-full {
  max-width: 100%;
}

/* ===== PROCESS — A-numbered ===== */
.pr-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.pr-process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #f1f5f9;
}

.pr-process-step:last-child {
  border-bottom: none;
}

.pr-process-step__num {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 32px;
  font-weight: 700;
  color: #0284c7;
  opacity: 0.4;
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
  padding-top: 4px;
}

.pr-process-step__body {}

.pr-process-step__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.pr-process-step__text {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ===== 404 PAGE ===== */
.pr-404 {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  text-align: center;
  padding: 80px 24px;
}

.pr-404__code {
  font-family: 'Geist Mono', monospace;
  font-size: 120px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 8px;
}

.pr-404__accent {
  color: #0284c7;
}

.pr-404__title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.pr-404__text {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== LEGAL PAGES ===== */
.pr-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.pr-legal h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.pr-legal .updated {
  font-size: 13px;
  color: #94a3b8;
  font-family: 'Geist Mono', monospace;
  margin-bottom: 40px;
}

.pr-legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 12px;
}

.pr-legal p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pr-legal ul {
  margin-left: 24px;
  list-style: disc;
  margin-bottom: 16px;
}

.pr-legal ul li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 6px;
}

/* ===== MISC UTILITIES ===== */
.pr-text-center {
  text-align: center;
}

.pr-mt-8 {
  margin-top: 8px;
}

.pr-mt-16 {
  margin-top: 16px;
}

.pr-mt-24 {
  margin-top: 24px;
}

/* ===== ARTICLE BODY (blog reading width) ===== */
.article-body {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.article-body h2 {
  margin-top: 2em;
  margin-bottom: 0.75em;
}
.article-body p {
  margin-bottom: 1.25em;
}
