/* ============ NETWORX INTL INC — BASE TOKENS ============ */

:root {
  /* Color */
  --c-bg: #0a0a0c;
  --c-surface-1: #111114;
  --c-surface-2: #1a1a1f;
  --c-surface-3: #22222a;
  --c-border: #2a2a32;
  --c-border-strong: #3a3a44;
  --c-text: #f0ede6;
  --c-text-muted: #9a9690;
  --c-text-dim: #6b6862;
  --c-gold: #c9a227;
  --c-gold-bright: #e0b93a;
  --c-gold-dark: #8a6f1a;
  --c-gold-glow: rgba(201, 162, 39, 0.35);

  /* Type */
  --font-display: 'Clash Display', 'Inter', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;
  --text-hero: clamp(3rem, 8vw, 6.5rem);
  --text-display: clamp(2.5rem, 6vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --max-w: 1400px;
  --max-w-text: 72ch;
  --page-x: clamp(1.25rem, 5vw, 4rem);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 200ms;
  --dur-2: 400ms;
  --dur-3: 700ms;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--c-gold);
  color: var(--c-bg);
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--page-x);
}

/* Utility */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.rule-gold {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-gold) 20%,
    var(--c-gold) 80%,
    transparent
  );
  border: 0;
  margin: var(--space-6) 0;
}

.rule-gold-short {
  width: 64px;
  height: 2px;
  background: var(--c-gold);
  border: 0;
  margin: 0 0 var(--space-5);
}
