/* ============================================================
   FLO — AI-Native Delivery · Design tokens + fonts
   Brand: Neue Montreal + PP Editorial New · navy #14142B / cyan #08FFA3
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family:'Neue Montreal'; src:url('../assets/fonts/NeueMontreal-Light.otf')   format('opentype'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Neue Montreal'; src:url('../assets/fonts/NeueMontreal-Regular.otf') format('opentype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Neue Montreal'; src:url('../assets/fonts/NeueMontreal-Medium.otf')  format('opentype'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Neue Montreal'; src:url('../assets/fonts/NeueMontreal-Bold.otf')     format('opentype'); font-weight:700; font-style:normal; font-display:swap; }

@font-face { font-family:'PP Editorial New'; src:url('../assets/fonts/PPEditorialNew-Ultralight.otf')       format('opentype'); font-weight:200; font-style:normal; font-display:swap; }
@font-face { font-family:'PP Editorial New'; src:url('../assets/fonts/PPEditorialNew-UltralightItalic.otf') format('opentype'); font-weight:200; font-style:italic; font-display:swap; }
@font-face { font-family:'PP Editorial New'; src:url('../assets/fonts/PPEditorialNew-Regular.otf')          format('opentype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'PP Editorial New'; src:url('../assets/fonts/PPEditorialNew-Italic.otf')           format('opentype'); font-weight:400; font-style:italic; font-display:swap; }

:root {
  /* Brand palette */
  --navy:       #14142B;
  --cyan:       #08FFA3;
  --gray:       #A2A7AA;
  --mint:       #B0FCE8;
  --mint-tint:  #E6FEF8;
  --white:      #FFFFFF;

  /* Type families */
  --font-sans:      'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-editorial: 'PP Editorial New', Georgia, 'Times New Roman', serif;

  /* Fluid type scale */
  --fs-display: clamp(2.85rem, 7vw, 6.25rem);
  --fs-h2:      clamp(1.9rem, 3.6vw, 3rem);
  --fs-lead:    clamp(1.06rem, 1.55vw, 1.4rem);
  --fs-body:    1.0625rem;
  --fs-small:   0.8125rem;
  --fs-eyebrow: 0.72rem;

  /* Layout */
  --container:   1240px;
  --gutter:      clamp(1.25rem, 4vw, 3.25rem);
  --space-sec:   clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur:      .35s;
  --dur-slow: .65s;

  /* Shape */
  --r-pill: 999px;
}

/* ---------- Section theming ---------- */
[data-theme="dark"] {
  --bg:#14142B; --fg:#FFFFFF;
  --muted:rgba(255,255,255,.66); --faint:rgba(255,255,255,.52);
  --line:rgba(255,255,255,.14);
  --accent:var(--cyan);
}
[data-theme="light"] {
  --bg:#FFFFFF; --fg:#14142B;
  --muted:rgba(20,20,43,.68); --faint:rgba(20,20,43,.56);
  --line:rgba(20,20,43,.12);
  --accent:var(--navy);
}
