:root {
  --tl-primary: #123b5d;
  --tl-primary-dark: #0b2942;
  --tl-primary-soft: #eef5f8;
  --tl-secondary: #218c74;
  --tl-secondary-dark: #176753;
  --tl-secondary-soft: #eaf7f3;
  --tl-accent: #f2b544;
  --tl-accent-dark: #d7951e;
  --tl-ink: #14202b;
  --tl-text: #52606d;
  --tl-muted: #71808d;
  --tl-border: #dce6e4;
  --tl-surface: #fff;
  --tl-surface-soft: #f4f8f7;
  --tl-font-heading: "Manrope", sans-serif;
  --tl-font-body: "Inter", sans-serif;
  --tl-container: 76rem;
  --tl-container-wide: 82rem;
  --tl-radius-sm: .625rem;
  --tl-radius-md: 1rem;
  --tl-radius-lg: 1.5rem;
  --tl-radius-pill: 999px;
  --tl-shadow-sm: 0 8px 24px rgba(18,59,93,.08);
  --tl-shadow-card: 0 18px 50px rgba(18,59,93,.11);
  --tl-transition: 220ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--tl-text);
  background: var(--tl-surface);
  font: 400 1rem/1.75 var(--tl-font-body);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--tl-text); }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--tl-ink);
  font-family: var(--tl-font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
:focus-visible { outline: 3px solid rgba(242,181,68,.75); outline-offset: 3px; }
::selection { color: var(--tl-ink); background: var(--tl-accent); }

.site-container, .tl-container {
  width: min(100% - 2rem, var(--tl-container));
  margin-inline: auto;
}
.tl-container-wide { width: min(100% - 2rem, var(--tl-container-wide)); margin-inline: auto; }
.section-padding, .tl-section { padding-block: clamp(4rem, 7vw, 7rem); }
.tl-surface-soft { background: var(--tl-surface-soft); }
.tl-surface-blue { background: var(--tl-primary-soft); }
.section-label, .tl-section-label {
  display: inline-block;
  margin-bottom: .75rem;
  color: var(--tl-secondary-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-heading, .tl-section-heading { color: var(--tl-ink); }
.section-subtitle, .tl-section-subtitle { max-width: 44rem; margin: 1rem auto 0; color: var(--tl-muted); }
.section-divider { width: 3.5rem; height: 3px; margin: 1.25rem auto; border-radius: 99px; background: var(--tl-accent); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.active { opacity: 1; transform: none; }
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

