:root {
  --brand: #0462fd;
  --brand-dark: #0350d4;
  --brand-light: #eef3ff;
  --brand-mid: #f4f7ff;
  --slate: #1a1f2e;
  --slate-deep: #111520;
  --surface: #FAFAFA;
  --white: #ffffff;
  --text: #1a1f2e;
  --text-muted: #4e5568;
  --text-faint: #626d84;
  --border: #dde0e8;
  --border-light: #e8eaf0;
  --radius: 12px;
  --radius-sm: 9px;
  /* aliases used in older templates */
  --green: #0462fd;
  --green-dark: #0350d4;
  --green-light: #eef3ff;
  --green-mid: #f4f7ff;
  --forest: #1a1f2e;
  --forest-deep: #111520;
  --amber: #0462fd;
  --amber-dark: #0350d4;
}

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

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 2px; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--brand); color: #fff; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
}

.section { padding-block: clamp(64px, 8vw, 96px); }

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* H2 vertical accent bar */
h2 {
  border-left: 4px solid var(--brand);
  padding-left: 14px;
}

/* Never show the accent bar on hero/CTA headings */
header h1, header h2,
.hero h1, .hero h2,
.guide-hero h1, .guide-hero h2,
.profile-hero h1, .profile-hero h2,
.page-hero h1, .page-hero h2,
.cta-h2 {
  border-left: none;
  padding-left: 0;
}

/* Eyebrow label */
.eyebrow {
  font: 600 13px/1 'Hanken Grotesk', sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: 700 16px 'Hanken Grotesk', sans-serif;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-dark); }
.btn--green { background: var(--brand); color: #fff; }
.btn--green:hover { background: var(--brand-dark); }
.btn--ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); padding: 14px 26px; }
.btn--ghost-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* Profile contact row */
.profile-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.profile-row:last-child { border-bottom: none; }
.profile-row svg { flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.3); }
