:root {
  --color-navy: #102363;
  --color-navy-light: #0b2b6d;
  --color-slate: #152C7B;
  --color-white: #ffffff;
  --color-muted: #93a0c3;
  --color-accent: #FF7C44;
  --color-accent-soft: #ffe3da;

  --color-bg: #f4f6fb;
  --color-text:#575757;
  --color-text-light:#646464;
  --color-line: #d8e1f0;
  --font-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-md: 14px;
  --radius-full: 999px;
  --shadow-soft: 0 20px 45px rgba(8, 26, 74, 0.18);

:root {
  /* Fixed Tailwind Scale (working) */
  --font-xs: 0.75rem;    /* 12px */
  --font-sm: 0.875rem;   /* 14px */
  --font-base: 1rem;     /* 16px */
  --font-lg: 1.125rem;   /* 18px */
  --font-xl: 1.25rem;    /* 20px */
  --font-2xl: 1.5rem;    /* 24px */
  --font-3xl: 1.875rem;  /* 30px */
  --font-4xl: 2.25rem;   /* 36px */
  --font-5xl: 3rem;      /* 48px */
  --font-6xl: 3.75rem;   /* 60px */
  --font-7xl: 4.5rem;    /* 72px */
  --font-8xl: 6rem;      /* 96px */
  --font-9xl: 8rem;      /* 128px */

  /* Responsive headings (Tailwind style) */
  --font-h1: clamp(2.25rem, 5vw, 3.75rem); /* 4xl → 6xl */
  --font-h2: clamp(1.875rem, 4vw, 3rem);   /* 3xl → 5xl */
  --font-h3: clamp(1.5rem, 3vw, 2.25rem);  /* 2xl → 4xl */
  --font-h4: clamp(1.25rem, 2vw, 1.875rem);/* xl → 3xl */
}

  


}


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

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--color-white);
  color: var(--color-navy);
  line-height: 1.6;
}



a {
  text-decoration: none;
  color: inherit;
}

.component-error {
  padding: 1rem;
  text-align: center;
  background: #ffecea;
  color: var(--color-accent);
  font-weight: 600;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent), #ff9f6e);
  display: inline-block;
}

.logo-text {
  font-size: 1.1rem;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Fade Up */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Right */
.scroll-fade-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Left */
.scroll-fade-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scale */
.scroll-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-scale.active {
  opacity: 1;
  transform: scale(1);
}
/* Zoom Out Animation */
.scroll-zoom-out {
  opacity: 0;
  transform: scale(1.15); /* slightly zoomed-in */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-zoom-out.active {
  opacity: 1;
  transform: scale(1); /* normal size */
}
