/* ═══════════════════════════════════════════════════════
   AYUDH — Global Stylesheet
   CxO-friendly font sizes throughout
   ═══════════════════════════════════════════════════════ */

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

:root {
  --bg:       #060608;
  --bg-1:     #0a0a0e;
  --bg-2:     #0e0e14;
  --gold:     #b8963e;
  --gold-lt:  #d4ae52;
  --gold-line:rgba(184,150,62,0.14);
  --gold-glow:rgba(184,150,62,0.06);
  --white:    #f0ece4;
  --gray:     #9a948a;
  --gray-dk:  #635d55;
  --dim:      #2a2622;
  --ff-d:     'Epilogue', sans-serif;
  --ff-s:     'Instrument Serif', Georgia, serif;
  --ff-m:     'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-d);
  font-size: 20px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* noise texture */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ─── GOLD RULE ─── */
.g-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 15%, var(--gold-line) 85%, transparent);
  position: relative; z-index: 10;
}
.g-rule[data-s] {
  padding-top: 1.5rem;
  margin-top: -1.5rem;
}
.g-rule[data-s]::before {
  content: attr(data-s);
  position: relative; display: inline-block;
  left: 5vw; top: -0.7rem;
  font-family: var(--ff-m); font-size: 0.95rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  background: var(--bg); padding-right: 14px;
}
.g-rule-alt[data-s]::before {
  background: var(--bg-1);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 80px;
  background: rgba(6,6,8,0.94);
  backdrop-filter: blur(20px);
}
nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}

.logo {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
}
.logo-mark { height: 62px; width: auto; filter: brightness(1.2); }
.logo-text {
  font-family: var(--ff-d);
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold-lt);
}

.nav-r { display: flex; align-items: center; gap: 2.5rem; }
.nl {
  font-family: var(--ff-m); font-size: 0.92rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  transition: color 0.25s;
}
.nl:hover { color: var(--white); }
.nl.active { color: var(--gold); }

.nav-cta {
  font-family: var(--ff-d); font-size: 0.92rem;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 12px 26px; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-lt); }

/* ─── BUTTONS ─── */
.btn-g {
  font-family: var(--ff-d); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 14px 30px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s;
  border: none; cursor: pointer;
}
.btn-g:hover { background: var(--gold-lt); }

.btn-g-lg {
  font-size: 0.85rem;
  padding: 16px 40px;
}

.btn-t {
  font-family: var(--ff-m); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-dk); text-decoration: none;
  transition: color 0.2s;
}
.btn-t:hover { color: var(--gray); }

.btn-outline {
  font-family: var(--ff-d); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,62,0.35);
  padding: 13px 28px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ─── SECTION TAGS & TITLES ─── */
.st-tag {
  font-family: var(--ff-m); font-size: 0.65rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); opacity: 0.5;
  margin-bottom: 1.5rem;
}

.st-h {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.st-h .gld { color: var(--gold); }

.st-p {
  font-family: var(--ff-d);
  font-size: 1.22rem; font-weight: 400;
  color: var(--gray); line-height: 1.85;
  margin-bottom: 1.3rem;
}
.st-p strong { color: var(--gold); font-weight: 400; }

/* ─── TRUST STRIP ─── */
.trust {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.trust-c {
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--gold-line);
  display: flex; align-items: center; gap: 10px;
}
.trust-c:last-child { border-right: none; }
.trust-d {
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  opacity: 0.6; flex-shrink: 0;
}
.trust-l {
  font-family: var(--ff-m); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray);
}

/* ─── STATEMENT (large num + content) ─── */
.statement {
  position: relative; z-index: 1;
  padding: 140px 5vw;
  display: flex; align-items: flex-start;
  gap: 6rem;
}
.st-num {
  font-family: var(--ff-d);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 800; color: var(--gold);
  opacity: 0.06; line-height: 0.75; flex-shrink: 0;
}
.st-body { max-width: 640px; padding-top: 0.5rem; }

/* ─── CAPS GRID ─── */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-line);
}
.cap {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  transition: background 0.3s; position: relative;
}
.cap:nth-child(3n) { border-right: none; }
.cap:nth-child(n+7) { border-bottom: none; }
.cap:hover { background: rgba(184,150,62,0.01); }
.cap::before {
  content: '';
  position: absolute; top: 2.5rem; left: 2rem;
  width: 20px; height: 1px;
  background: var(--gold); opacity: 0.25;
  transition: width 0.3s, opacity 0.3s;
}
.cap:hover::before { width: 32px; opacity: 0.5; }
.cap-idx {
  font-family: var(--ff-d);
  font-size: 2.5rem; font-weight: 800;
  color: var(--gold); opacity: 0.06;
  line-height: 1; margin-bottom: 2rem;
}
.cap-name {
  font-family: var(--ff-d);
  font-size: 1rem; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 0.7rem;
}
.cap-desc {
  font-family: var(--ff-d);
  font-size: 1.08rem; font-weight: 400; color: var(--gray); line-height: 1.78;
}

/* ─── DEPT GRID ─── */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}
.dept-card {
  background: var(--bg-1);
  padding: 2.2rem 2rem;
  transition: background 0.3s;
}
.dept-card:hover { background: var(--bg-2); }
.dept-name {
  font-family: var(--ff-d);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em; color: var(--gold);
  margin-bottom: 0.6rem;
}
.dept-desc {
  font-family: var(--ff-d);
  font-size: 1.08rem; font-weight: 400; color: var(--gray); line-height: 1.78;
}

/* ─── STACK ─── */
.stack-visual {
  border: 1px solid var(--gold-line);
  background: var(--bg-1);
}
.stack-layer {
  display: grid;
  grid-template-columns: 40px auto 1fr 24px;
  align-items: center;
  gap: 0 10px;
  border-bottom: 1px solid var(--gold-line);
  padding: 16px 18px;
  transition: background 0.3s;
}
.stack-layer:hover { background: rgba(184,150,62,0.02); }
.sl-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  color: var(--gold);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.stack-layer:hover .sl-icon { opacity: 0.9; }
.sl-num {
  font-family: var(--ff-m); font-size: 0.62rem;
  letter-spacing: 0.14em; color: var(--gray-dk); opacity: 0.6;
}
.sl-name {
  font-family: var(--ff-d); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 3px;
}
.sl-desc {
  font-family: var(--ff-d); font-size: 0.9rem; font-weight: 400;
  color: var(--gray); line-height: 1.55;
}
.sl-status {
  text-align: right; font-size: 0.55rem;
  color: var(--gold); opacity: 0.6;
}
.stack-layer-2, .stack-layer-3, .stack-layer-4, .stack-layer-5 {
  border-left: 2px solid rgba(184,150,62,0.2);
}
.stack-layer-1, .stack-layer-6 { border-left: 2px solid transparent; }
.stack-footer {
  padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.sl-note {
  font-family: var(--ff-m); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-dk);
}

/* ─── ARCHITECTURE DIAGRAM ─── */
.arch-diagram {
  border: 1px solid var(--gold-line);
  background: var(--bg-1); position: relative;
}
.arch-diagram::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(184,150,62,0.04);
  pointer-events: none;
}
.ad-head {
  padding: 12px 20px;
  border-bottom: 1px solid var(--gold-line);
  display: flex; justify-content: space-between;
  font-family: var(--ff-d); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray);
}
.ad-head .live { color: var(--gold); opacity: 0.5; }
.ad-body { padding: 1.5rem; }
.ad-row { display: flex; gap: 4px; margin-bottom: 4px; }
.ad-box {
  flex: 1;
  border: 1px solid var(--gold-line);
  padding: 14px 16px; background: var(--bg);
  transition: border-color 0.3s;
}
.ad-box:hover { border-color: rgba(184,150,62,0.35); }
.ad-box-hl { border-color: rgba(184,150,62,0.25); background: rgba(184,150,62,0.02); }
.ad-t {
  font-family: var(--ff-d); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.ad-s { font-family: var(--ff-d); font-size: 0.82rem; font-weight: 400; color: var(--gray); }
.ad-arrow {
  text-align: center; padding: 6px 0;
  color: var(--gray-dk); font-size: 0.9rem;
}
.ad-div { height: 1px; background: var(--gold-line); margin: 1rem 0; }
.ad-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.ad-badge {
  font-family: var(--ff-d); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray);
  border: 1px solid rgba(184,150,62,0.15);
  padding: 5px 12px; background: rgba(184,150,62,0.03);
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative; z-index: 1;
  padding: 140px 5vw; text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 250px;
  background: radial-gradient(ellipse, var(--gold-glow), transparent 60%);
  pointer-events: none;
}
.cta-h {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.025em; margin-bottom: 1rem;
  position: relative;
}
.cta-h .gld { color: var(--gold); }
.cta-sub {
  font-family: var(--ff-d); font-weight: 400;
  font-size: 1.25rem; font-style: italic;
  color: var(--gray); margin-bottom: 3rem;
}
.cta-contact {
  font-family: var(--ff-m); font-size: 0.72rem;
  letter-spacing: 0.1em; color: var(--gray-dk);
  margin-top: 2rem;
}
.cta-contact a {
  color: var(--gold); text-decoration: none;
  opacity: 0.7; transition: opacity 0.2s;
}
.cta-contact a:hover { opacity: 1; }

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--gold-line);
  padding: 2rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
}
.ft {
  font-family: var(--ff-m); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-dk);
}
.ft a {
  color: var(--gray-dk); text-decoration: none;
  transition: color 0.2s;
}
.ft a:hover { color: var(--gold); }

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  position: relative; z-index: 1;
  padding: 140px 5vw 80px;
}
.page-hero-title {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 800; line-height: 0.92;
  letter-spacing: -0.03em;
}
.page-hero-title .gld { color: var(--gold); }
.page-hero-sub {
  font-family: var(--ff-d);
  font-size: 1.2rem; color: var(--gray);
  line-height: 1.85; max-width: 580px;
  margin-top: 2rem;
}

/* ─── CONTENT SECTION ─── */
.content-section {
  position: relative; z-index: 1;
  padding: 100px 5vw;
}
.content-section.alt { background: var(--bg-1); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.content-narrow { max-width: 720px; }

/* ─── ARTICLE STYLES ─── */
.article-page {
  position: relative; z-index: 1;
  padding: 140px 5vw 100px;
  max-width: 820px;
  margin: 0 auto;
}
.article-meta {
  font-family: var(--ff-m); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); opacity: 0.6;
  margin-bottom: 2rem;
}
.article-title {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.article-body h2 {
  font-family: var(--ff-d);
  font-size: 1.4rem; font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--white);
}
.article-body p {
  font-family: var(--ff-d);
  font-size: 1.2rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 1.3rem;
}
.article-body p strong { color: var(--gold); font-weight: 400; }
.article-body blockquote {
  font-family: var(--ff-d);
  font-size: 1.25rem; font-style: italic;
  color: var(--gold); opacity: 0.7;
  padding-left: 1.4rem;
  border-left: 2px solid rgba(184,150,62,0.25);
  margin: 2rem 0;
  line-height: 1.7;
}
.article-body ol, .article-body ul {
  font-family: var(--ff-d);
  font-size: 1.1rem; color: var(--gray);
  line-height: 1.85; margin: 1rem 0 1.3rem 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-m); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-dk); text-decoration: none;
  margin-top: 4rem;
  transition: color 0.2s;
}
.article-back:hover { color: var(--gold); }

/* ─── INSIGHTS INDEX ─── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}
.insight-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  text-decoration: none;
  display: block;
}
.insight-card:hover { background: var(--bg-1); }
.insight-num {
  font-family: var(--ff-d);
  font-size: 2rem; font-weight: 800;
  color: var(--gold); opacity: 0.06;
  margin-bottom: 1.5rem;
}
.insight-title {
  font-family: var(--ff-d);
  font-size: 1.05rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.7rem;
  line-height: 1.3;
}
.insight-excerpt {
  font-family: var(--ff-d);
  font-size: 0.95rem; color: var(--gray);
  line-height: 1.7;
}
.insight-author {
  font-family: var(--ff-m); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-dk); margin-top: 1.2rem;
}

/* ─── FORM ─── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: var(--ff-m); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-line);
  padding: 12px 16px;
  font-family: var(--ff-d); font-size: 1.05rem;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(184,150,62,0.4);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── HOMEPAGE HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  position: relative; overflow: hidden;
}
.hero-bg-num {
  position: absolute; bottom: -8vh; right: -2vw;
  font-family: var(--ff-d); font-size: 45vw; font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,150,62,0.03);
  pointer-events: none; user-select: none; line-height: 0.8;
}
.hero-glow {
  position: absolute; top: 25%; left: 40%;
  width: 50vw; height: 40vh;
  background: radial-gradient(ellipse, var(--gold-glow), transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-m); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-dk);
  border: 1px solid var(--gold-line);
  padding: 6px 16px; margin-bottom: 3rem;
}
.hero-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero h1 {
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 7.5vw, 9rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white); margin-bottom: 0;
}
.hero h1 .gld { color: var(--gold); }
.hero-rule {
  width: 48px; height: 2px;
  background: var(--gold); opacity: 0.5;
  margin: 3rem 0 2rem;
}
.hero-bottom {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 6rem; align-items: end;
}
.hero-problem {
  font-family: var(--ff-m); font-size: 0.88rem;
  letter-spacing: 0.03em; color: var(--gray);
  line-height: 1.9; max-width: 480px;
  padding-left: 1.4rem;
  border-left: 1px solid var(--gold-line);
}
.hero-right {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1.5rem;
}
.hero-desc {
  font-family: var(--ff-d);
  font-size: 1.22rem; font-weight: 400;
  color: var(--gray); line-height: 1.85;
  max-width: 420px;
}
.hero-actions {
  display: flex; align-items: center; gap: 2rem;
}

/* ─── REVEAL ─── */
.rv {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ─── HAMBURGER ─── */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--gold-line);
  padding: 10px 12px;
  cursor: pointer;
}
.nav-ham span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gray);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(6,6,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-line);
  flex-direction: column;
  z-index: 99;
  padding: 1.5rem 5vw;
}
.nav-mobile.open { display: flex; }
.nm-link {
  font-family: var(--ff-m);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dk);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-line);
  transition: color 0.2s;
}
.nm-link:hover { color: var(--gold); }
.nm-cta {
  display: block;
  font-family: var(--ff-d);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 14px 0;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.nm-cta:hover { background: var(--gold-lt); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 3rem; }
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .caps-grid .cap:nth-child(3n) { border-right: 1px solid var(--gold-line); }
  .caps-grid .cap:nth-child(2n) { border-right: none; }
  .dept-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 3rem; }
  .statement { flex-direction: column; gap: 1rem; }
  .st-num { font-size: 6rem; }
  .trust { grid-template-columns: repeat(3, 1fr); }
  .insights-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
  .stack-layer { grid-template-columns: 36px auto 1fr 20px; gap: 0 8px; padding: 12px 14px; }
  .ad-row { flex-direction: column; }
  .page-hero { padding: 120px 5vw 60px; }
  .nav-r { display: none; }
  .nav-ham { display: flex; }
}

@media (max-width: 600px) {
  .caps-grid { grid-template-columns: 1fr; }
  .caps-grid .cap { border-right: none; }
  .dept-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust-c { border-bottom: 1px solid var(--gold-line); border-right: none; }
  .insights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 0 5vw 6vh; }
  .statement { padding: 80px 5vw; gap: 2rem; }
  .content-section { padding: 60px 5vw; }
  .stack-layer { grid-template-columns: 1fr; gap: 8px; }
  .sl-num, .sl-icon { display: none; }
  .sl-status { position: absolute; right: 14px; top: 14px; }
  .stack-layer { position: relative; }
  .cta-section { padding: 80px 5vw; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
