@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --black: #0a0f1e;
  --navy: #1c2b56;
  --navy-deep: #111d3a;
  --slate: #3a4a79;
  --mahogany: #522d23;
  --mahogany-bright: #8a4a38;
  --mahogany-glow: #7a4433;
  --blood: #a83b2a;
  --parchment: #bdb2a2;
  --cream: #f4f1eb;
  --deep-cream: #e8e2d8;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-bright: #dfc48a;
  --text-body: #2a2a2a;
  --text-muted: #555;
  --text: var(--text-body);
  --muted: var(--text-muted);
  --font-body: 'Palatino Linotype', 'Palatino', 'Book Antiqua', serif;
  --font-display: 'Cormorant Garamond', serif;
  --fs-060: 0.6rem;
  --fs-070: 0.7rem;
  --fs-078: 0.78rem;
  --fs-080: 0.8rem;
  --fs-082: 0.82rem;
  --fs-084: 0.84rem;
  --fs-086: 0.86rem;
  --fs-088: 0.88rem;
  --fs-090: 0.9rem;
  --fs-092: 0.92rem;
  --fs-094: 0.94rem;
  --fs-095: 0.95rem;
  --fs-100: 1rem;
  --fs-102: 1.02rem;
  --fs-105: 1.05rem;
  --fs-108: 1.08rem;
  --fs-110: 1.1rem;
  --fs-115: 1.15rem;
  --fs-120: 1.2rem;
  --fs-125: 1.25rem;
  --fs-130: 1.3rem;
  --fs-135: 1.35rem;
  --fs-140: 1.4rem;
  --fs-155: 1.55rem;
  --fs-165: 1.65rem;
  --fs-170: 1.7rem;
  --fs-190: 1.9rem;
  --fs-200: 2rem;
  --fs-240: 2.4rem;
  --fs-250: 2.5rem;
  --fs-260: 2.6rem;
  --fs-300: 3rem;
  --fs-320: 3.2rem;
  --fs-350: 3.5rem;
  --fs-700: 7rem;
  --fs-800: 8rem;
  --fs-13px: 13px;
  --fs-fluid-quote-sm: clamp(1.3rem, 2.4vw, 1.8rem);
  --fs-fluid-quote-md: clamp(1.3rem, 2.5vw, 1.9rem);
  --fs-fluid-section: clamp(2rem, 3.5vw, 2.8rem);
  --fs-fluid-cta: clamp(2.2rem, 4vw, 3.2rem);
  --fs-fluid-hero-analyst: clamp(2.8rem, 5.5vw, 4.8rem);
  --fs-fluid-hero-home: clamp(3rem, 5.5vw, 5rem);
  --fs-fluid-loader: clamp(2.4rem, 6vw, 4.8rem);
  --fs-fluid-hero-nemesis: clamp(3.5rem, 7vw, 6.5rem);
  --fs-fluid-mobile-display: clamp(2rem, 12vw, 3rem);
  --fs-fluid-mobile-display-lg: clamp(2.45rem, 12vw, 3.5rem);
  --fs-fluid-mobile-hero: clamp(2.8rem, 9vw, 4.5rem);
  --fs-fluid-mission: clamp(2.5rem, 5vw, 4rem);
  --fs-fluid-mission-lg: clamp(3rem, 5vw, 5rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
}

html.has-custom-pointer,
html.has-custom-pointer * {
  cursor: none !important;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--mahogany);
  border-radius: 50%;
  mix-blend-mode: difference;
  box-shadow:
    0 0 0 2px rgba(244, 241, 235, 0.45),
    0 0 18px rgba(201, 169, 110, 0.28);
}

.cursor-ring {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(82, 45, 35, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(201, 169, 110, 0.14);
  transition:
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s,
    opacity 0.2s ease;
}

.cursor-ring.hover {
  width: 70px;
  height: 70px;
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(201, 169, 110, 0.22);
}

@media (hover: none), (pointer: coarse) {
  html.has-custom-pointer,
  html.has-custom-pointer * {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* Shared helpers across standalone ASSAI pages. */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-svg-defs {
  display: none;
}

.text-gold {
  color: var(--gold);
}

.inline-flex {
  display: inline-flex;
}

.header-logo-image {
  display: block;
  width: auto;
  height: 50px;
  max-width: min(54vw, 266px);
}

@media (max-width: 768px) {
  .header-logo-image {
    height: 42px;
    max-width: min(60vw, 224px);
  }
}
