/* ─────────────────────────────────────────
   CORDA Studio — style.css
   ───────────────────────────────────────── */

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

:root {
  --bg:         #060606;
  --s1:         rgba(255,255,255,0.055);
  --s2:         rgba(255,255,255,0.10);
  --border:     rgba(255,255,255,0.13);
  --border2:    rgba(255,255,255,0.24);
  --text:       #FAF7F2;
  --muted:      #8C8680;
  --soft:       #C4BDB5;
  --gold:       #F5C842;
  --gold2:      #FFD966;
  --gold3:      #FFF0A0;
  --gold-bg:    rgba(245,200,66,0.13);
  --gold-glow:  rgba(245,200,66,0.40);
  --gold-glow2: rgba(245,200,66,0.15);
  --display:    'Bricolage Grotesque', sans-serif;
  --body:       'Outfit', sans-serif;
  --mono:       'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 52px;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
}

.logomark {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  user-select: none;
}

.logo-cor {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.logo-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 3px 2px;
  opacity: 0.5;
}

.logo-da {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.38);
}

.nav-pills { display: flex; gap: 6px; }

.nav-pill {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-pill:hover { background: var(--s2); color: var(--text); }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #080808;
  background: var(--gold);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 7px;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 66px 52px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}

.m1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,66,0.24) 0%, transparent 65%);
  top: -80px; right: -120px;
}

.m2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,200,66,0.12) 0%, transparent 65%);
  bottom: 80px; left: -60px;
}

.hero-body-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  padding: 72px 0 56px;
}

.hero-name-display {
  font-family: var(--display);
  font-size: clamp(80px, 13vw, 180px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  display: block;
}

.hero-name-display .line { display: block; overflow: hidden; }

.hero-name-display .word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) forwards 0.05s;
}

@keyframes rise { to { transform: translateY(0); } }

.hnd-cor { color: var(--gold); }
.hnd-da  { color: rgba(255,255,255,0.18); }

.hero-tagline {
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--soft);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fup 0.8s ease 0.45s forwards;
}

.hero-tagline em { font-style: italic; color: var(--gold2); }

.hero-sub {
  font-size: 15px;
  color: var(--soft);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 44px;
  opacity: 0;
  animation: fup 0.8s ease 0.6s forwards;
}

@keyframes fup {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fup 0.8s ease 0.72s forwards;
}

.btn-main {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: #080808;
  background: var(--gold);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-main:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--gold-glow);
}

.btn-ghost {
  font-family: var(--body);
  font-size: 14px;
  color: var(--soft);
  text-decoration: none;
  padding: 13px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--border2); color: var(--text); }

/* ── HERO CARD ── */
.hero-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  opacity: 0;
  animation: fup 0.9s ease 0.5s forwards;
}

.hc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(201,162,74,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.hc-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2.5s ease infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hc-items { display: flex; flex-direction: column; gap: 10px; }

.hc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.22s, background 0.22s;
}

.hc-item:hover { border-color: rgba(201,162,74,0.2); background: var(--gold-bg); }

.hc-ico {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,162,74,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--gold);
}

.hc-t { font-family: var(--display); font-size: 13px; font-weight: 700; }
.hc-d { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ── HERO STRIP ── */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fup 0.9s ease 0.85s forwards;
}

.hs-cell {
  padding: 28px 40px 28px 0;
  border-right: 1px solid var(--border);
}

.hs-cell:not(:first-child) { padding-left: 40px; }
.hs-cell:last-child { border-right: none; }

.hs-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.hs-val {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

/* ── BENTO ── */
.bento { padding: 0 52px 80px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.bc {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.bc:hover { border-color: var(--border2); background: var(--s2); }
.bc.wide { grid-column: span 2; }

.bc-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.bc-val {
  font-family: var(--display);
  font-size: clamp(36px,4vw,54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold2);
  margin-bottom: 6px;
}

.bc-sub { font-size: 13px; color: var(--soft); line-height: 1.55; }

.bc-glow {
  position: absolute;
  bottom: -48px; right: -48px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; margin-top: 8px; }

.tl-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}

.tl-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px; top: 26px;
  width: 1px;
  height: calc(100% - 6px);
  background: var(--border);
}

.tl-dot {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.tl-dot.filled { background: var(--gold); }

.tl-title { font-family: var(--display); font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.tl-sub   { font-size: 11px; color: var(--muted); }

/* Bars */
.bar-rows { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.bar-row  { display: grid; grid-template-columns: 100px 1fr 32px; align-items: center; gap: 10px; }
.bar-lbl  { font-size: 12px; color: var(--soft); }

.bar-track {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 100px;
  width: 0;
  transition: width 1.3s cubic-bezier(0.16,1,0.3,1);
}

.bar-fill.inverse {
  background: linear-gradient(90deg, #6b3a1a, #8a5020);
}

.bar-pct { font-family: var(--mono); font-size: 10px; color: var(--gold); text-align: right; }

/* ── SECTIONS ── */
.section { padding: 96px 52px; border-top: 1px solid var(--border); }
.section.alt { background: rgba(255,255,255,0.012); }

.s-pre {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}

.s-pre::before { content:''; width:20px; height:1px; background:var(--gold); }

.s-head {
  font-family: var(--display);
  font-size: clamp(30px,4vw,54px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.gi { color: var(--gold); font-style: italic; }

/* ── SERVICES ── */
.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.svc-note { font-size: 14px; color: var(--soft); line-height: 1.85; }

.svc-list { display: flex; flex-direction: column; }

.svc {
  display: grid;
  grid-template-columns: 44px 1fr 190px;
  gap: 40px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  position: relative;
  cursor: default;
}

.svc::before {
  content: '';
  position: absolute;
  left: -52px; right: -52px; top: 0; bottom: 0;
  background: var(--s1);
  opacity: 0;
  transition: opacity 0.25s;
}

.svc:hover::before { opacity: 1; }
.svc > * { position: relative; z-index: 1; }
.svc:last-child { border-bottom: 1px solid var(--border); }

.svc-n {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 300;
  color: var(--gold);
  padding-top: 4px;
}

.svc-name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}

.svc-body { font-size: 13px; color: var(--soft); line-height: 1.8; max-width: 500px; }

.svc-tags { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; padding-top: 4px; }

.s-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.svc:hover .s-tag { color: var(--gold); border-color: rgba(201,162,74,0.25); }

/* ── APPROACH ── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.app-left .s-head { margin-bottom: 18px; }

.app-left > p {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 32px;
}

.app-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.app-card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.app-points { display: flex; flex-direction: column; }

.apoint {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.apoint:first-child { border-top: 1px solid var(--border); }

.ap-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
  margin-top: 8px;
  flex-shrink: 0;
}

.ap-title { font-family: var(--display); font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.ap-body  { font-size: 13px; color: var(--soft); line-height: 1.8; }

/* ── PROCESS ── */
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 52px;
}

.pcard {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.pcard:hover { border-color: rgba(201,162,74,0.18); transform: translateY(-4px); }

.pcard-n {
  font-family: var(--display);
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: var(--border);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  transition: color 0.3s;
}

.pcard:hover .pcard-n { color: rgba(201,162,74,0.12); }

.pcard-title { font-family: var(--display); font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.pcard-body  { font-size: 13px; color: var(--soft); line-height: 1.8; }

.pcard-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.pcard:hover .pcard-bar { transform: scaleX(1); }

/* ── WHOM ── */
.whom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 52px;
}

.wcard {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
  transition: border-color 0.3s, background 0.3s;
}

.wcard:hover { border-color: rgba(201,162,74,0.18); background: var(--gold-bg); }

.wcard-n     { font-family: var(--mono); font-size: 10px; letter-spacing: 0.13em; color: var(--gold); margin-bottom: 18px; }
.wcard-title { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 11px; line-height: 1.2; }
.wcard-body  { font-size: 13px; color: var(--soft); line-height: 1.85; }

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ct-left .s-head { margin-bottom: 18px; }

.ct-left > p {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 380px;
}

.ct-meta { display: flex; flex-direction: column; gap: 13px; }

.cm-row { display: flex; align-items: center; gap: 16px; }

.cm-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 70px;
}

.cm-val { font-size: 14px; color: var(--soft); text-decoration: none; transition: color 0.2s; }
.cm-val:hover { color: var(--gold); }

.form-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
}

.form { display: flex; flex-direction: column; gap: 16px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.f-group { display: flex; flex-direction: column; gap: 7px; }

.f-group label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.f-group input,
.f-group textarea,
.f-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  border-radius: 9px;
  transition: border-color 0.22s, background 0.22s;
  -webkit-appearance: none;
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: rgba(201,162,74,0.38);
  background: var(--gold-bg);
}

.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--muted); font-size: 13px; }
.f-group textarea { min-height: 108px; resize: vertical; }
.f-group select { color: var(--muted); cursor: pointer; }
.f-group select option { background: #111; color: var(--text); }

.btn-send {
  background: var(--gold);
  color: #080808;
  border: none;
  padding: 14px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  border-radius: 9px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-send:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }
.btn-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form-status {
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 10px;
  border-radius: 8px;
  display: none;
}

.form-status.success { display: block; color: var(--gold); background: var(--gold-bg); border: 1px solid rgba(201,162,74,0.2); }
.form-status.error   { display: block; color: #e07070; background: rgba(224,112,112,0.07); border: 1px solid rgba(224,112,112,0.2); }

.form-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  padding: 32px 52px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-brand { display: flex; flex-direction: column; gap: 4px; }

.f-logo { display: flex; align-items: baseline; }

.f-cor {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.f-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 2px 2px;
  opacity: 0.4;
}

.f-da {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
}

.f-tagline { font-size: 12px; color: var(--muted); font-style: italic; }

.f-copy { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.on { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-pills { display: none; }
  .hero { padding: 66px 24px 0; }
  .hero-body-wrap { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-strip { grid-template-columns: 1fr; }
  .hs-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
  .bento { padding: 0 24px 60px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bc.wide { grid-column: span 2; }
  .section { padding: 72px 24px; }
  .svc-header { grid-template-columns: 1fr; gap: 20px; }
  .svc { grid-template-columns: 40px 1fr; gap: 14px; }
  .svc-tags { display: none; }
  .approach-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-cards { grid-template-columns: 1fr 1fr; }
  .whom-cards { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .f-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 14px; padding: 28px 24px; text-align: center; }
}

/* ═══════════════════════════════════════════
   ADDITIONAL PAGES — shared components
   ═══════════════════════════════════════════ */

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 140px 52px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero .mesh { pointer-events: none; }

.ph-pre {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ph-pre::before { content:''; width:20px; height:1px; background:var(--gold); }

.ph-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}

.ph-sub {
  font-size: 16px;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.85;
}

.ph-meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.ph-stat { display: flex; flex-direction: column; gap: 4px; }
.ph-stat-val {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold2);
}
.ph-stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 18px 52px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--soft); }

/* ── SERVICES DETAIL ── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}

.svc-detail:hover { border-color: rgba(201,162,74,0.2); }

.sd-left {
  padding: 52px;
  border-right: 1px solid var(--border);
}

.sd-right {
  padding: 52px;
  background: var(--s1);
}

.sd-n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sd-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.sd-body {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: 28px;
}

.sd-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sd-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(201,162,74,0.25);
  background: var(--gold-bg);
  padding: 5px 12px;
  border-radius: 100px;
}

.sd-includes-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.sd-includes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.sd-item:first-child { border-top: 1px solid var(--border); }

.sd-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

.sd-item-text { font-size: 13px; color: var(--soft); line-height: 1.7; }
.sd-item-text strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; }

.sd-price {
  margin-top: 32px;
  padding: 20px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,162,74,0.18);
  border-radius: 12px;
}

.sdp-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.sdp-val {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold2);
}

/* ── INDUSTRIES ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 52px;
}

.ind-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.ind-card:hover {
  border-color: rgba(201,162,74,0.2);
  transform: translateY(-3px);
}

.ind-ico {
  font-size: 22px;
  margin-bottom: 20px;
  display: block;
}

.ind-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.ind-body {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: 24px;
}

.ind-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ind-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}

.ind-card:hover .ind-pill { color: var(--gold); border-color: rgba(201,162,74,0.2); }

.ind-glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.ind-card:hover .ind-glow { opacity: 1; }

/* ── CASES ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 52px;
}

.case-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.case-card:hover {
  border-color: rgba(201,162,74,0.2);
  transform: translateY(-4px);
}

.case-card-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201,162,74,0.06) 0%, rgba(8,8,8,0) 60%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}

.cc-label {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(201,162,74,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.cc-num {
  font-family: var(--display);
  font-size: 90px;
  font-weight: 800;
  color: rgba(201,162,74,0.07);
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.case-card:hover .cc-num { color: rgba(201,162,74,0.12); }

.case-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.cc-industry {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.cc-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cc-desc {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

.cc-metrics {
  display: flex;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.cc-metric { display: flex; flex-direction: column; gap: 3px; }

.cc-metric-val {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold2);
}

.cc-metric-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cc-arrow {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.case-card:hover .cc-arrow { gap: 14px; }

/* ── CASE STUDY PAGE ── */
.case-hero {
  padding: 140px 52px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.ch-meta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.ch-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.ch-tag.gold {
  color: var(--gold);
  border-color: rgba(201,162,74,0.25);
  background: var(--gold-bg);
}

.ch-title {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 800px;
}

.ch-sub {
  font-size: 16px;
  color: var(--soft);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 52px;
}

.ch-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
}

.ch-stat {
  background: var(--bg);
  padding: 24px 28px;
}

.ch-stat-val {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 6px;
}

.ch-stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-body {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 80px;
  padding: 80px 52px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.case-main h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  margin-top: 44px;
}

.case-main h2:first-child { margin-top: 0; }

.case-main p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: 16px;
}

.case-main p:last-child { margin-bottom: 0; }

.case-pullquote {
  border-left: 2px solid var(--gold);
  padding: 18px 24px;
  margin: 32px 0;
  background: var(--gold-bg);
  border-radius: 0 10px 10px 0;
}

.cpq-text {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold2);
  line-height: 1.55;
  margin-bottom: 10px;
}

.cpq-attr {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-sidebar { position: sticky; top: 86px; }

.cs-block {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 12px;
}

.csb-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.csb-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.csb-row:last-child { border-bottom: none; }
.csb-key { color: var(--muted); }
.csb-val { color: var(--text); font-weight: 500; }
.csb-val.gold { color: var(--gold2); }

.case-next {
  padding: 80px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cn-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.cn-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.cn-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}

.cn-link:hover { gap: 16px; }

/* ── CTA BAND ── */
.cta-band {
  padding: 96px 52px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.ctab-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ctab-pre {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ctab-title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.ctab-sub {
  font-size: 15px;
  color: var(--soft);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.ctab-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* ── RESPONSIVE additions ── */
@media (max-width: 1024px) {
  .page-hero, .case-hero { padding: 120px 24px 60px; }
  .breadcrumb { padding: 14px 24px; }
  .svc-detail { grid-template-columns: 1fr; }
  .sd-left { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .sd-right { padding: 32px 24px; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .ch-stats { grid-template-columns: 1fr 1fr; }
  .case-body { grid-template-columns: 1fr; gap: 40px; padding: 52px 24px; }
  .case-sidebar { position: static; }
  .case-next { flex-direction: column; gap: 32px; align-items: flex-start; padding: 52px 24px; }
  .cta-band { padding: 72px 24px; }
}

/* approach-grid reuse on industries page */
.app-left { }
.app-points { display: flex; flex-direction: column; gap: 0; }
.apoint { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.apoint:first-child { border-top: 1px solid var(--border); }
.ap-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.ap-title { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.ap-body { font-size: 13px; color: var(--soft); line-height: 1.8; }

/* ═══════════════════════════════════════════
   BLOG — listing + article pages
   ═══════════════════════════════════════════ */

/* ── BLOG LISTING ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 52px;
}

.blog-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.25s;
}

.blog-card:hover {
  border-color: rgba(232,184,75,0.28);
  transform: translateY(-3px);
}

.blog-card-top {
  padding: 28px 28px 0;
}

.blog-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(232,184,75,0.25);
  background: var(--gold-bg);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.blog-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.8;
}

.blog-card-footer {
  padding: 18px 28px 22px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-read {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-read-time {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Featured (large) blog card */
.blog-card.featured {
  grid-column: span 2;
  flex-direction: row;
}

.blog-card.featured .blog-card-top {
  flex: 1;
  padding: 36px 36px 24px;
}

.blog-card.featured .blog-title {
  font-size: 24px;
}

.blog-card.featured .blog-excerpt {
  font-size: 14px;
}

.blog-card.featured .blog-card-footer {
  border-top: none;
  border-left: 1px solid var(--border);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 36px 28px;
  min-width: 180px;
}

/* ── BLOG FILTER BAR ── */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.bf-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: transparent;
  padding: 7px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.bf-btn:hover, .bf-btn.active {
  color: var(--gold);
  border-color: rgba(232,184,75,0.3);
  background: var(--gold-bg);
}

/* ── ARTICLE PAGE ── */
.article-hero {
  padding: 140px 52px 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  max-width: 900px;
}

.art-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.art-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.art-sep { color: var(--border2); }

.art-read-time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.art-title {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 22px;
}

.art-sub {
  font-size: 16px;
  color: var(--soft);
  line-height: 1.85;
  max-width: 640px;
}

.article-body {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 80px;
  padding: 72px 52px 100px;
  align-items: start;
}

.article-content h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
  line-height: 1.2;
}

.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 28px 0 10px;
  color: var(--gold2);
}

.article-content p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.95;
  margin-bottom: 18px;
}

.article-content p:last-child { margin-bottom: 0; }

.article-content ul, .article-content ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.article-content li {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: 8px;
}

.article-content li::marker { color: var(--gold); }

.art-pullquote {
  border-left: 2px solid var(--gold);
  padding: 18px 24px;
  margin: 32px 0;
  background: var(--gold-bg);
  border-radius: 0 10px 10px 0;
}

.art-pullquote p {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold2);
  line-height: 1.5;
  margin: 0;
}

.article-sidebar { position: sticky; top: 86px; }

.art-toc {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 12px;
}

.art-toc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.art-toc a {
  display: block;
  font-size: 13px;
  color: var(--soft);
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  line-height: 1.45;
}

.art-toc a:last-child { border-bottom: none; }
.art-toc a:hover { color: var(--gold); }

.art-related {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.art-related-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.art-rel-link {
  display: block;
  font-size: 13px;
  color: var(--soft);
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  line-height: 1.45;
}

.art-rel-link:last-child { border-bottom: none; }
.art-rel-link:hover { color: var(--gold); }

.art-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 18px 52px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  width: 100%;
}

.art-back:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { flex-direction: column; grid-column: span 1; }
  .blog-card.featured .blog-card-footer { border-left: none; border-top: 1px solid var(--border); flex-direction: row; justify-content: space-between; min-width: auto; }
  .article-hero { padding: 120px 24px 52px; }
  .article-body { grid-template-columns: 1fr; gap: 40px; padding: 52px 24px; }
  .article-sidebar { position: static; }
  .art-back { padding: 14px 24px; }
}

/* ═══════════════════════════════════════
   INTERACTIVE ANIMATIONS
   ═══════════════════════════════════════ */

/* Cursor glow */
#cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(245,200,66,0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  top: 0; left: 0;
}

/* Word reveal animation */
.word-reveal { overflow: hidden; display: inline-block; }
.word-reveal .wr-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.word-reveal.on .wr-inner { transform: translateY(0); }

/* Hero line reveal stagger */
.hero-line-1 { transition-delay: 0s; }
.hero-line-2 { transition-delay: 0.12s; }
.hero-line-3 { transition-delay: 0.24s; }

/* Magnetic btn */
.btn-magnetic {
  transition: transform 0.2s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.2s, background 0.2s;
}

/* Card 3D tilt */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Horizontal ticker */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  background: var(--s1);
  position: relative;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Number highlight */
.num-bright {
  color: var(--gold2);
  font-weight: 700;
}

/* ── PULSE RING (nav CTA) ── */
.nav-cta {
  position: relative;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.25s, transform 0.25s;
}
.nav-cta:hover::before {
  opacity: 0.5;
  transform: scale(1);
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 300;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ── GLOWING BORDER HOVER ── */
.glow-border {
  position: relative;
  overflow: hidden;
}
.glow-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(245,200,66,0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.glow-border:hover::after { opacity: 1; }

/* ═══════════════════════════════════════
   TECHNOLOGY PAGE
   ═══════════════════════════════════════ */

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 52px;
}

.ts-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.25s;
}

.ts-card:hover {
  border-color: rgba(245,200,66,0.3);
  transform: translateY(-3px);
}

.ts-card.full { grid-column: span 2; }

.ts-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ts-num::before { content:''; width:16px; height:1px; background:var(--gold); }

.ts-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ts-body {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: 28px;
}

.ts-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 0;
}

.ts-tool {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text);
  background: var(--s2);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.ts-card:hover .ts-tool {
  border-color: rgba(245,200,66,0.2);
  color: var(--gold2);
}

.ts-glow {
  position: absolute;
  bottom: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow2) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.ts-card:hover .ts-glow { opacity: 1; }

/* Decision table */
.decision-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.decision-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 16px 22px;
  background: var(--s1);
  border-bottom: 1px solid var(--border);
}

.decision-table td {
  padding: 16px 22px;
  font-size: 13px;
  color: var(--soft);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}

.decision-table tr:last-child td { border-bottom: none; }

.decision-table td:first-child {
  font-weight: 500;
  color: var(--text);
  width: 28%;
}

.decision-table td.yes {
  color: var(--gold2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.decision-table td.no {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* AI infra visual */
.ai-pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0;
  overflow-x: auto;
  padding-bottom: 4px;
}

.aip-node {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 120px;
  text-align: center;
  flex-shrink: 0;
}

.aip-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.aip-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.aip-arrow {
  font-size: 18px;
  color: var(--gold);
  padding: 0 8px;
  flex-shrink: 0;
}

.aip-node.highlight {
  border-color: rgba(245,200,66,0.35);
  background: var(--gold-bg);
}

.aip-node.highlight .aip-val { color: var(--gold2); }

@media (max-width:1024px) {
  .tech-stack-grid { grid-template-columns:1fr; }
  .ts-card.full { grid-column: span 1; }
  .ai-pipeline { flex-direction: column; align-items: flex-start; }
  .aip-arrow { transform: rotate(90deg); }
}

/* ── PAGE HERO CTA ROW ── */
.ph-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
