/* Reset minimal + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  /* TEX-3 Points */
  background-image: radial-gradient(color-mix(in srgb, var(--text) 9%, transparent) 1px, transparent 1px);
  background-size: 24px 24px;
}
img, video, iframe { max-width: 100%; display: block; }
figure { margin: 0; }
[hidden] { display: none !important; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--accent); text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--ff-display); font-weight: 500; line-height: 1.1; color: var(--text); letter-spacing: -0.005em; }
p { margin: 0 0 1em; max-width: 62ch; }

::selection { background: var(--accent); color: #fff; }
::-moz-selection { background: var(--accent); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) var(--surface); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::placeholder { color: var(--text-mute); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 48px 0; }
section .container { padding: 0 20px; }
@media (min-width: 768px) {
  section { padding: 80px 0; }
  section .container { padding: 0 40px; }
}
@media (min-width: 1280px) {
  section .container { padding: 0 24px; }
}
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-intro {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-2);
  max-width: 56ch;
  margin-bottom: 36px;
}
.section-head { margin-bottom: 36px; }
@media (min-width: 768px) {
  .section-head { margin-bottom: 56px; }
}
