@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 180 5% 5%;
  --card: 0 0% 100%;
  --card-foreground: 180 5% 5%;
  --popover: 0 0% 100%;
  --popover-foreground: 180 5% 5%;
  --primary: 355 72% 29%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 10% 96%;
  --secondary-foreground: 180 5% 5%;
  --muted: 210 10% 96%;
  --muted-foreground: 210 10% 40%;
  --accent: 355 72% 29%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 0 0% 0%;
  --input: 210 10% 85%;
  --ring: 355 72% 29%;
  --radius: 0rem;
  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5.3% 26.1%;
  --sidebar-primary: 240 5.9% 10%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 240 4.8% 95.9%;
  --sidebar-accent-foreground: 240 5.9% 10%;
  --sidebar-border: 220 13% 91%;
  --sidebar-ring: 217.2 91.2% 59.8%;
  --executive-ease: cubic-bezier(0.2, 0, 0, 1);
  --shadow-layered: 0 0 0 1px rgba(0, 0, 0, .03), 0 2px 4px rgba(0, 0, 0, .05), 0 12px 24px rgba(0, 0, 0, .05);
}

* {
  border-color: hsl(var(--border) / 0.08);
}

body {
  background-color: hsl(var(--background));
  font-family: 'Barlow', sans-serif;
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* Custom Utilities & Components */
.h1-display {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.corporate-surface {
  background: hsl(var(--background));
  box-shadow: var(--shadow-layered);
  transition: box-shadow 0.3s var(--executive-ease), transform 0.3s var(--executive-ease);
}

.corporate-surface:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .03), 0 4px 8px rgba(0, 0, 0, .08), 0 16px 32px rgba(0, 0, 0, .08);
}

.section-label {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  background-color: hsl(var(--primary));
  width: 30%;
}

.section-label-white {
  color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn-red-fill-hover {
  position: relative;
  overflow: hidden;
  transition: all 500ms;
}

.btn-red-fill-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary));
  transform: translateX(-100%);
  transition: transform 0.4s var(--executive-ease);
  z-index: 0;
}

.btn-red-fill-hover:hover::before {
  transform: translateX(0);
}

.btn-red-fill-hover:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground)) !important;
}

.btn-white-fill-hover {
  position: relative;
  overflow: hidden;
  transition: all 500ms;
}

.btn-white-fill-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: hsl(var(--background));
  transform: translateX(-100%);
  transition: transform 0.4s var(--executive-ease);
  z-index: 0;
}

.btn-white-fill-hover:hover::before {
  transform: translateX(0);
}

.btn-white-fill-hover:hover {
  border-color: hsl(var(--background));
  color: hsl(var(--primary)) !important;
}

.btn-red-fill-hover > *, .btn-white-fill-hover > * {
  position: relative;
  z-index: 10;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--executive-ease), transform 0.8s var(--executive-ease);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* Fallback/Utility for specific classes not always hit by CDN */
.tabular-nums { font-variant-numeric: tabular-nums; }