/* Base reset, variables, utilities */

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

  :root {
    --black: #080B0A;
    --off-white: #EAF3EE;
    --mid-dark: #0D1210;
    --panel: #111817;
    --border: rgba(116, 158, 130, 0.14);
    --border-bright: rgba(132, 196, 149, 0.24);
    --muted: #8B9C92;
    --orange: #D4500A;
    --orange-glow: rgba(212,80,10,0.16);
    --orange-light: #F08A45;
    --teal: #3FE28F;
    --teal-dim: rgba(63,226,143,0.12);
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Instrument Sans', system-ui, sans-serif;
    --mono: 'DM Mono', monospace;
}

  html { scroll-behavior: smooth; }

  body {
    background: radial-gradient(circle at top right, rgba(49,87,45,0.22) 0%, rgba(8,11,10,0) 28%), linear-gradient(180deg, #070A09 0%, #090D0B 100%);
    color: var(--off-white);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }


/* Anti-copy deterrence */
html.noselect,
html.noselect body,
html.noselect p,
html.noselect h1,
html.noselect h2,
html.noselect h3,
html.noselect h4,
html.noselect h5,
html.noselect h6,
html.noselect li,
html.noselect span,
html.noselect div,
html.noselect a,
html.noselect img,
html.noselect video {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.protected-media {
  position: relative;
  display: block;
}
.protected-media img,
.protected-media video {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.protected-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 4;
}
