@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --hp-primary: #da291c;
  --hp-primary-active: #b01e0a;
  --hp-canvas: #181818;
  --hp-canvas-elevated: #303030;
  --hp-canvas-light: #ffffff;
  --hp-surface-soft: #f7f7f7;
  --hp-surface-strong: #ebebeb;
  --hp-ink: #ffffff;
  --hp-body: #969696;
  --hp-body-on-light: #181818;
  --hp-muted: #666666;
  --hp-hairline: #303030;
  --hp-hairline-on-light: #d2d2d2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--hp-canvas-light);
  color: var(--hp-body-on-light);
  padding-top: 72px;
}

.hp-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; }

.hp-topnav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--hp-canvas);
  z-index: 1000;
  border-bottom: 1px solid var(--hp-hairline);
}
.hp-topnav-row { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.hp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--hp-ink); font-weight: 600; font-size: 16px; }
.hp-logo-mark {
  width: 36px; height: 36px;
  background: var(--hp-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.hp-nav-links { display: flex; gap: 32px; }
.hp-nav-links a {
  text-decoration: none;
  color: var(--hp-ink);
  font-size: 13px; font-weight: 600; letter-spacing: 0.65px; text-transform: uppercase;
}
.hp-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.hp-burger span { width: 22px; height: 2px; background: #fff; display: block; }

@media (max-width: 860px) {
  .hp-nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--hp-canvas);
    flex-direction: column; gap: 0;
    display: none;
    border-bottom: 1px solid var(--hp-hairline);
  }
  .hp-nav-links.hp-open { display: flex; }
  .hp-nav-links a { padding: 16px 24px; border-top: 1px solid var(--hp-hairline); }
  .hp-burger { display: flex; }
}

.hp-hero {
  background: var(--hp-canvas);
  color: var(--hp-ink);
  padding: 80px 24px;
}
.hp-hero-inner { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.hp-hero-text { flex: 1 1 480px; }
.hp-hero-img { flex: 1 1 420px; }
.hp-hero-img img { width: 100%; height: 340px; object-fit: cover; }
.hp-display-mega { font-size: 48px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; margin: 12px 0 16px; }
.hp-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--hp-primary); margin-bottom: 8px; }
.hp-lead { color: var(--hp-body); font-size: 16px; line-height: 1.6; max-width: 560px; }

.hp-btn {
  display: inline-flex; align-items: center;
  background: var(--hp-primary);
  color: #fff;
  text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 14px 32px;
  border: none;
}
.hp-btn:hover { background: var(--hp-primary-active); }
.hp-btn-outline {
  display: inline-flex; align-items: center;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 14px 32px;
}

.hp-section { padding: 64px 24px; }
.hp-section-light { background: var(--hp-canvas-light); }
.hp-section-soft { background: var(--hp-surface-soft); }
.hp-section-dark { background: var(--hp-canvas); color: var(--hp-ink); }

.hp-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.hp-display-lg { font-size: 30px; font-weight: 500; letter-spacing: -0.3px; margin: 0; }

.hp-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hp-card-grid.hp-cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .hp-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .hp-card-grid { grid-template-columns: 1fr; } }

.hp-card {
  background: var(--hp-canvas-light);
  border: 1px solid var(--hp-hairline-on-light);
  text-decoration: none;
  color: var(--hp-body-on-light);
  display: block;
}
.hp-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.hp-card-body { padding: 20px; }
.hp-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin: 6px 0 8px; }
.hp-card-text { font-size: 13px; color: var(--hp-muted); line-height: 1.5; }

.hp-card-dark { background: var(--hp-canvas-elevated); color: var(--hp-ink); padding: 24px; text-decoration: none; display: block; }
.hp-card-dark .hp-card-title { font-size: 17px; }
.hp-card-dark .hp-card-text { color: var(--hp-body); }

.hp-badge {
  display: inline-flex;
  background: var(--hp-canvas-elevated);
  color: var(--hp-ink);
  font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase;
  border-radius: 9999px;
  padding: 4px 12px;
  margin: 4px 6px 4px 0;
  text-decoration: none;
}
.hp-badge.hp-badge-light { background: var(--hp-surface-strong); color: var(--hp-body-on-light); }
.hp-badge.hp-badge-active { background: var(--hp-primary); color: #fff; }

.hp-breadcrumb { font-size: 13px; color: var(--hp-muted); margin-bottom: 24px; }
.hp-breadcrumb a { text-decoration: none; color: var(--hp-muted); }
.hp-breadcrumb a:hover { color: var(--hp-body-on-light); }
.hp-breadcrumb-current { color: var(--hp-body-on-light); font-weight: 600; }
.hp-breadcrumb-sep { margin: 0 6px; color: var(--hp-hairline-on-light); }

.hp-toc { background: var(--hp-surface-soft); border: 1px solid var(--hp-hairline-on-light); padding: 20px 24px; margin: 24px 0 40px; }
.hp-toc-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--hp-primary); margin-bottom: 10px; }
.hp-toc ul { list-style: none; padding: 0; margin: 0; }
.hp-toc li { margin-bottom: 6px; }
.hp-toc a { text-decoration: none; font-size: 14px; color: var(--hp-body-on-light); }
.hp-toc a:hover { text-decoration: underline; }

.hp-prose h2 { font-size: 24px; font-weight: 700; margin-top: 2em; margin-bottom: 0.6em; }
.hp-prose p { color: #3a3a3a; line-height: 1.7; margin-bottom: 1.1em; font-size: 15px; }

.hp-related { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--hp-hairline-on-light); }
.hp-related-title { font-size: 22px; font-weight: 500; margin-bottom: 20px; }
.hp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .hp-related-grid { grid-template-columns: 1fr; } }
.hp-related-card { display: block; background: var(--hp-surface-soft); border: 1px solid var(--hp-hairline-on-light); padding: 18px; text-decoration: none; color: var(--hp-body-on-light); }
.hp-related-headline { display: block; font-weight: 700; font-size: 14px; margin-top: 4px; }

.hp-footer { background: var(--hp-canvas); color: var(--hp-body); }
.hp-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding: 64px 24px 32px; }
@media (max-width: 860px) { .hp-footer-grid { grid-template-columns: repeat(2, 1fr); } }
.hp-footer-lead { color: var(--hp-ink); font-weight: 600; margin: 12px 0 8px; }
.hp-footer-text { font-size: 13px; color: var(--hp-body); line-height: 1.6; }
.hp-footer-text a { color: var(--hp-body); }
.hp-footer-heading { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--hp-ink); margin-bottom: 14px; }
.hp-footer-col ul { list-style: none; padding: 0; margin: 0; }
.hp-footer-col li { margin-bottom: 8px; }
.hp-footer-col a { text-decoration: none; color: var(--hp-body); font-size: 13px; }
.hp-footer-col a:hover { color: var(--hp-ink); }
.hp-footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 24px 24px 32px;
  border-top: 1px solid var(--hp-hairline);
  font-size: 12px;
}

.hp-faq { border: 1px solid var(--hp-hairline-on-light); padding: 18px 20px; margin-bottom: 12px; }
.hp-faq summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 15px; }
.hp-faq summary::-webkit-details-marker { display: none; }
.hp-faq p { margin: 10px 0 0; color: #3a3a3a; font-size: 14px; line-height: 1.6; }

.hp-form { background: var(--hp-surface-soft); border: 1px solid var(--hp-hairline-on-light); padding: 32px; max-width: 560px; }
.hp-form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.hp-form input, .hp-form textarea {
  width: 100%;
  border: 1px solid var(--hp-hairline-on-light);
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 18px;
  border-radius: 4px;
}
.hp-form textarea { resize: vertical; }
.hp-form-message { color: #03904a; font-weight: 600; font-size: 14px; }

.hp-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--hp-canvas); color: var(--hp-ink);
  padding: 20px 24px;
  z-index: 1100;
  border-top: 1px solid var(--hp-hairline);
}
.hp-cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hp-cookie-inner p { margin: 0; font-size: 13px; color: var(--hp-body); max-width: 640px; }
.hp-cookie-inner a { color: #fff; text-decoration: underline; }
.hp-cookie-actions { display: flex; gap: 10px; }
