/* ============================================================
   NORIXPLATFORM — GLOBAL STYLES
   Dark legal-tech aesthetic. Authoritative. Precise.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&family=DM+Mono:wght@300;400;500&family=Karla:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:          #0a0a08;
  --bg-2:        #111110;
  --bg-3:        #1a1a17;
  --bg-card:     #141412;
  --border:      rgba(255,255,255,0.08);
  --border-med:  rgba(255,255,255,0.14);
  --gold:        #c9a84c;
  --gold-light:  #e8cc82;
  --gold-dim:    rgba(201,168,76,0.15);
  --red:         #c0392b;
  --text:        #e8e6df;
  --text-2:      #a09e96;
  --text-3:      #5c5a54;
  --white:       #f5f3ec;
  --max-w:       1200px;
  --nav-h:       72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.serif {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
}

.mono {
  font-family: 'DM Mono', monospace;
  font-size: 0.78em;
  letter-spacing: 0.08em;
}

h1, h2, h3, h4 { font-weight: 400; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── Horizontal Rule ── */
hr.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(10,10,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 28px;
}

.nav-logo svg {
  height: 22px;
  width: auto;
  fill: var(--white);
}

.nav-logo img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.72em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 24px;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  padding: 40px;
  gap: 28px;
  border-top: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-cta {
  align-self: flex-start;
  color: var(--bg);
}

/* ============================================================
   BUTTONS & CTAs
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.78em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 16px 40px;
  transition: all 0.25s;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.78em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  font-family: 'Karla', sans-serif;
}

/* ============================================================
   LABELS / TAGS
   ============================================================ */

.label {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.68em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 5px 14px;
  margin-bottom: 24px;
}

.label-plain {
  font-family: 'DM Mono', monospace;
  font-size: 0.68em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 80px 0 100px;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  letter-spacing: 0.01em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 40px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* Hero decorative lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ── Background texture ── */
.noise-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-grid-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

/* Vertical grid lines */
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.grid-lines span {
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
}

/* ============================================================
   WORD SECTION (Homepage)
   ============================================================ */

.word-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.word-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 16vw, 220px);
  letter-spacing: 0.01em;
  line-height: 0.9;
  color: var(--bg-3);
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.word-section-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.word-highlight {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold);
  line-height: 1.2;
  margin: 16px 0 32px;
}

/* ============================================================
   ANCHOR STATEMENT
   ============================================================ */

.anchor-statement {
  background: var(--bg-3);
  border-top: 1px solid var(--border-med);
  border-bottom: 1px solid var(--border-med);
  padding: 60px 0;
  text-align: center;
}

.anchor-statement p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.5;
}

.anchor-statement em {
  color: var(--gold);
  font-style: italic;
}

/* ============================================================
   THREE LAYERS (Cards)
   ============================================================ */

.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.layer-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.layer-card:hover { background: var(--bg-3); }

.layer-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--bg-3);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.layer-card:hover .layer-number { color: var(--bg); }

.layer-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.layer-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.layer-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.layer-card:hover .layer-accent { transform: scaleX(1); }

/* ============================================================
   POSITION SECTION
   ============================================================ */

.position-section {
  background: var(--bg-2);
}

.position-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.position-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 18vw, 240px);
  line-height: 0.85;
  color: var(--bg-3);
  user-select: none;
}

/* ============================================================
   FLOW STEPS (How It Works)
   ============================================================ */

.flow-steps {
  counter-reset: step;
}

.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.flow-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--border-med);
  line-height: 0.9;
  padding-top: 4px;
}

.step-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.step-content p { color: var(--text-2); line-height: 1.75; }

.step-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 0.68em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-top: 16px;
}

/* ============================================================
   NEVER DOES (What the system never does)
   ============================================================ */

.never-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.never-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 40px 0;
}

.never-item {
  background: var(--bg-card);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.never-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
  font-size: 0.7em;
  font-weight: 600;
}

.never-item span { color: var(--text-2); font-size: 0.95rem; }

/* ============================================================
   ARCHITECTURE PAGE — Patent
   ============================================================ */

.patent-block {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border-med);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.patent-block::before {
  content: 'PATENT';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  color: rgba(255,255,255,0.015);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.patent-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.78em;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ============================================================
   TWO A.M. SECTION (For Operators)
   ============================================================ */

.two-am {
  background: #080807;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.two-am::before {
  content: '2AM';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40vw;
  color: rgba(255,255,255,0.015);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.two-am-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.two-am h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}

.two-am p {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.8;
}

.two-am em {
  color: var(--white);
  font-style: italic;
}

/* ============================================================
   WORRY LIST
   ============================================================ */

.worry-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.worry-item {
  background: var(--bg-card);
  padding: 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.worry-item:hover {
  background: var(--bg-3);
  border-left-color: var(--gold);
}

.worry-item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.worry-item p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================================
   GUARD COMPANY — Competitive Shift
   ============================================================ */

.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin: 40px 0;
}

.shift-col {
  background: var(--bg-card);
  padding: 40px;
}

.shift-col.before h3 {
  color: var(--text-3);
  font-family: 'DM Mono', monospace;
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.shift-col.after h3 {
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.shift-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shift-col li {
  font-size: 0.95rem;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.shift-col.before li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-3);
}

.shift-col.after li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   ABOUT — Timeline / Gap
   ============================================================ */

.gap-section {
  position: relative;
  padding: 100px 0;
}

.gap-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 22vw, 300px);
  color: rgba(201,168,76,0.06);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   PRICING BLOCK
   ============================================================ */

.pricing-block {
  background: var(--bg-3);
  border: 1px solid var(--border-med);
  padding: 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-block p {
  color: var(--text-2);
  margin-bottom: 32px;
}

/* ============================================================
   ACTIVATE PAGE
   ============================================================ */

.activate-who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 60px 0;
}

.activate-who-card {
  background: var(--bg-card);
  padding: 40px;
}

.activate-who-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.activate-who-card p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Activate Form */
.activate-form {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  padding: 60px;
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.68em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 20px;
  line-height: 1.6;
}

/* ============================================================
   PRIVACY & TERMS — Document Pages
   ============================================================ */

.doc-page {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 120px;
}

.doc-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 60px;
  margin-bottom: 80px;
}

.doc-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 100px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
}

.doc-header p {
  color: var(--text-2);
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.75;
}

.doc-body {
  max-width: 780px;
}

.doc-section {
  margin-bottom: 64px;
}

.doc-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.doc-section h3 {
  font-family: 'DM Mono', monospace;
  font-size: 0.72em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 12px;
}

.doc-section p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.doc-section ul {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-section li {
  padding-left: 24px;
  position: relative;
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.75;
}

.doc-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-3);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-logo img,
.footer-logo svg {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(0.6);
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-3);
  max-width: 400px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.68em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-family: 'DM Mono', monospace;
  font-size: 0.62em;
  letter-spacing: 0.08em;
  color: var(--text-3);
  line-height: 1.7;
}

/* ============================================================
   PAGE HERO (Interior Pages)
   ============================================================ */

.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 110px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.75;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
}

.section-header h2 em {
  color: var(--gold);
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.75;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-gold { color: var(--gold); }
.text-dim { color: var(--text-2); }
.text-muted { color: var(--text-3); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .layers-grid { grid-template-columns: 1fr; }
  .position-split { grid-template-columns: 1fr; gap: 40px; }
  .never-list { grid-template-columns: 1fr; }
  .worry-list { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .activate-who { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  
  .flow-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .step-num { font-size: 48px; }

  .activate-form { padding: 36px 24px; }
  .patent-block { padding: 32px 24px; }
  
  .word-large { display: none; }
  .gap-number { display: none; }
  .two-am::before { font-size: 60vw; }

  /* Override inline grid styles for responsiveness */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  div[style*="grid-template-columns: 200px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1px !important;
  }
  div[style*="grid-template-columns: 60px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(56px, 16vw, 90px); }
  .page-hero h1 { font-size: clamp(52px, 14vw, 80px); }
  .hero-sub { font-size: 1rem; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero-content { padding: 60px 0 80px; }
  .section-sm { padding: 32px 0; }
}
