* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  interpolate-size: allow-keywords;
  scroll-padding-top: 85px;
  /* Account for sticky header + breathing room */
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  /* Use the new ambient light variable + solid background color */
  background: var(--ambient-light), var(--bg);
  background-attachment: fixed;
  /* Keeps the gradient steady while scrolling */
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Global Icon Sizing & Styling (Lucide) */
.lucide {
  color: var(--primary);
  /* Default to brand blue */
  stroke-width: 2px;
  width: 24px;
  height: 24px;
  transition: transform .2s var(--ease);
}

/* Hero Stats - Slightly larger, different colors */
.statIcon .lucide {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.stat:nth-child(2) .statIcon .lucide {
  color: #f59f00;
  /* Amber for Star */
}

.stat:nth-child(3) .statIcon .lucide {
  color: #37b24d;
  /* Green for Check */
}

/* Feature Cards */
.feature .icon .lucide {
  width: 26px;
  height: 26px;
  stroke-width: 1.5px;
}

/* Lists & Checks */
.check .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 3px;
  color: var(--primary);
}

.list li i .lucide {
  width: 12px;
  height: 12px;
  color: #37b24d;
  stroke-width: 2.5px;
  /* Green checks, smaller to fit */
}

/* Addon Icons - Larger & accented */
.addon .ico .lucide {
  width: 26px;
  height: 26px;
  color: var(--secondary);
  stroke-width: 1.75px;
}

/* Contact Meta */
.metaItem .ico .lucide {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

/* --- Utilities --- */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}

.section {
  padding: 86px 0;
  position: relative;
}

.section-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
  text-wrap: pretty;
}

.kicker {
  color: rgba(6, 8, 10, .7);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: .08s;
}

.reveal.delay-2 {
  transition-delay: .16s;
}

.reveal.delay-3 {
  transition-delay: .24s;
}

/* --- Responsive Text & Motion --- */
@media (max-width: 860px) {
  .section-title {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}