/* =========================================================
   Teloro — Base: Reset, Design Tokens, Layout Utilities
   ========================================================= */

:root {
  /* Brand */
  --brand: #0007ac;
  --brand-dark: #00055c;
  --brand-darker: #030224;
  --brand-light: #eef0fc;
  --brand-tint: #f5f6fe;
  --accent: #3d4bff;

  /* Neutrals */
  --ink: #0b0d1a;
  --body: #4a4f66;
  --muted: #767c96;
  --faint: #9fa4ba;
  --line: #e6e8f2;
  --line-strong: #d3d6e8;
  --surface: #f6f7fb;
  --white: #ffffff;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(3, 2, 36, 0.04), 0 2px 8px rgba(3, 2, 36, 0.04);
  --shadow: 0 4px 16px rgba(3, 2, 36, 0.06), 0 2px 6px rgba(3, 2, 36, 0.04);
  --shadow-lg: 0 20px 48px rgba(3, 2, 36, 0.12), 0 4px 12px rgba(3, 2, 36, 0.06);

  /* Layout */
  --content-max: 1180px;
  --edge-pad: clamp(20px, 4vw, 44px);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: calc(var(--content-max) + (var(--edge-pad) * 2));
  margin-inline: auto;
  padding-inline: var(--edge-pad);
}

.section {
  padding-block: 104px;
  padding-inline: 0;
}

.section--tight {
  padding-block: 80px;
}

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

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2.h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 16px;
}

.h2 .accent {
  color: var(--brand);
}

.lede {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--r-full);
  padding: 0.8rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 7, 172, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--body);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-tint);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.95rem 2.1rem;
  font-size: 1rem;
}

/* ---------- Shared bits ---------- */

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px 6px 6px;
  border-radius: var(--r-full);
}

.badge-pill .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-pill .dot svg {
  width: 10px;
  height: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .section {
    padding-block: 72px;
  }
}
