/* ─────────────────────────────────────────────────────────
   ALEO DESIGN TOKENS
   Shared across all static pages and modules.
───────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Aleofont Sans';
  src: url('/fonts/AleofontSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Azeret';
  src: url('/fonts/Azeret-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Azeret';
  src: url('/fonts/Azeret-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ── Neutrals ── */
  --white:       #ffffff;
  --ivory:       #f5f5f5;
  --stone:       #e3e3e3;
  --coal:        #121212;
  --black:       #000000;
  --grey:        #313131;
  --border:      #333333;
  --surface:     #1a1a1a;

  /* ── Accents ── */
  --cloudberry:  #ffe2fc;
  --tangerine:   #ffa978;
  --pomelo:      #ffe092;
  --lemon:       #eeffa8;
  --lime:        #c4ffc2;

  /* ── Typography ── */
  --font-display: 'Aleofont Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body:    'Azeret', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono:    'Azeret Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* ── Radius ── */
  --radius-block:   80px;
  --radius-card-lg: 40px;
  --radius-card-sm: 32px;
  --radius-pill:    720px;

  /* ── Layout ── */
  --max-w:   1320px;
  --page-px: 60px;
}

/* ─────────────────────────────────────────────────────────
   BASE RESET
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--coal);
  font-family: var(--font-body);
  font-size: 22px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   LAYOUT UTILITY
───────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
}

/* ─────────────────────────────────────────────────────────
   BUTTONS
   Shared button styles used across modules.
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.82; transform: translateY(-1px); }

.btn-primary {
  background: var(--coal);
  color: var(--ivory);
  height: 56px;
  padding: 0 28px;
  box-shadow: 2px 4px 5px rgba(201,201,201,0.22);
}
.btn-secondary {
  background: transparent;
  color: var(--coal);
  height: 56px;
  padding: 0 28px;
  border: 1px solid var(--coal);
}
.btn-nav {
  background: var(--coal);
  color: var(--ivory);
  height: 36px;
  padding: 0 20px;
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────
   REDUCED MOTION
   Collapse animations/transitions to ~instant instead of removing
   them, so entrance effects still complete their end-state (many
   elements start at opacity:0 and only reach opacity:1 via the
   animation's fill-mode / animationend handler). Killing animations
   outright would leave that content hidden.
───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
