/* ====== Base / Reset / Theme ====== */
:root{
  --bg: #0e0f12;
  --panel: #14161b;
  --panel-2: #1a1d23;
  --text: #e6e7eb;
  --muted: #a3a7b2;
  --line: #2a2f38;

  --accent: #cbb473;
  --accent-600: #cbb473;
  --accent-700: #cbb473;

  --success: #59d189;

  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;

  --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 6px 20px rgba(0,0,0,.35);

  --container: 1150px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(242,193,78,.08), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(242,193,78,.06), transparent 60%),
    var(--bg);
  line-height: 1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }

.section__title{ font-size: clamp(22px, 3.4vw, 28px); margin:0 0 18px; font-weight:800; }
.muted{ color: var(--muted); }

.text-accent{ color: var(--accent); }

/* Utilities */
.reveal{ opacity:0; transform: translateY(10px); transition: .6s ease; }
.reveal--visible{ opacity:1; transform: translateY(0); }

section{ padding: 72px 0; }

:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }