:root {
  --ink: #0b1620;
  --mist: #eef3f1;
  --accent: #0f766e;
  --accent-deep: #115e59;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(16px);
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--mist);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(11, 22, 32, 0.05);
  border-radius: 1.25rem;
}

.nav-glass {
  background: rgba(238, 243, 241, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11, 22, 32, 0.08);
}

/* Hero Section */
.hero-stage {
  background: #eef3f1;
  background-image: 
    radial-gradient(at 0% 0%, rgba(15, 118, 110, 0.1) 0px, transparent 50%), 
    radial-gradient(at 100% 0%, rgba(15, 118, 110, 0.05) 0px, transparent 50%), 
    radial-gradient(at 100% 100%, rgba(204, 251, 241, 0.3) 0px, transparent 50%), 
    linear-gradient(rgba(11, 22, 32, 0.03) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(11, 22, 32, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
}

.hero-accent-bar {
  width: 3.5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 999px;
  animation: grow-bar 0.8s ease forwards 0.2s;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes grow-bar {
  to { transform: scaleX(1); }
}

.hero-watermark {
  position: absolute;
  right: -5%;
  bottom: 0%;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(10rem, 30vw, 25rem);
  line-height: 0.8;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.08) 0%, rgba(15, 118, 110, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  animation: fade-in 1.2s ease forwards 0.3s;
  opacity: 0;
}

@keyframes fade-in {
  to { opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.rise-1 { animation: rise 0.75s ease forwards 0.05s; opacity: 0; }
.rise-2 { animation: rise 0.75s ease forwards 0.2s; opacity: 0; }
.rise-3 { animation: rise 0.75s ease forwards 0.35s; opacity: 0; }
.rise-4 { animation: rise 0.75s ease forwards 0.5s; opacity: 0; }

@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.scroll-cue {
  animation: bounce-y 1.8s ease-in-out infinite;
}

/* Service / Product Cards */
.service-row {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}
.service-row:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(11, 22, 32, 0.08);
  background-color: #ffffff;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
}
.btn-primary:hover::after {
  left: 150%;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1.5px solid rgba(11, 22, 32, 0.12);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 22, 32, 0.06);
}

/* Form Fields */
.field {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(11, 22, 32, 0.12);
  background: rgba(255, 255, 255, 0.7);
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(11, 22, 32, 0.02);
}
.field:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

/* Prose overrides for policies */
.prose {
  --tw-prose-body: #4a5560;
  --tw-prose-headings: var(--ink);
  --tw-prose-links: var(--accent);
  --tw-prose-bold: var(--ink);
  --tw-prose-bullets: var(--accent);
}
.prose h1, .prose h2, .prose h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}
