/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 56px;
}
@media (max-width: 768px) { body { padding-bottom: 76px; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .wrap { padding: 0 32px; } }
@media (min-width: 1140px) { .wrap { padding: 0; } }

.wrap--narrow { max-width: 620px; }
.wrap--video  { max-width: 760px; }

.section { padding: 80px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }
.section-alt  { background: var(--off); }
.section-alt2 { background: var(--off2); }
.section--center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (max-width: 480px) { .display { font-size: clamp(26px, 8vw, 62px); } }

.h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h3 { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.lead { font-size: 18px; color: var(--ink-2); line-height: 1.65; }
@media (max-width: 768px) { .lead { font-size: 16px; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-cta {
  background: var(--indigo);
  color: #fff;
  padding: 15px 28px;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(79, 70, 229, .2);
}
.btn-cta:hover {
  background: var(--indigo-dark);
  box-shadow: 0 4px 16px rgba(79, 70, 229, .35);
  transform: translateY(-1px);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta.large { padding: 18px 36px; font-size: 17px; border-radius: 10px; }
.btn-cta.full  { width: 100%; font-size: 16px; padding: 16px; }
.btn-outline {
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--border-2);
  padding: 13px 22px;
  font-size: 15px;
}
.btn-outline:hover { border-color: var(--ink-3); color: var(--ink); background: var(--off); }

/* ============================================================
   SECTION HEADERS (reusable)
   ============================================================ */
.sec-header { margin-bottom: 48px; }
.sec-header.center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.sec-header .label { margin-bottom: 12px; }
.sec-header .h2   { margin-bottom: 14px; }
.sec-header .lead { font-size: 16px; }

/* ============================================================
   UTILITIES
   ============================================================ */
hr.div { border: none; border-top: 1px solid var(--border); margin: 0; }
svg.ico { display: inline-block; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(234, 88, 12, .3); }
  50%      { box-shadow: 0 0 0 4px rgba(234, 88, 12, 0); }
}
