:root {
  --bg: #07070b;
  --bg-2: #0a0a11;
  --surface: #0e0e16;
  --surface-2: #12121d;
  --surface-hover: #16161f;
  --line: #1c1c2e;
  --line-soft: #15151f;
  --text: #edeef4;
  --text-2: #b6b8cc;
  --text-3: #797b96;
  --accent: #00ff88;
  --accent-2: #00d9ff;
  --accent-dim: #00c46a;
  --glow: rgba(0,255,136,0.35);
  --glow-soft: rgba(0,255,136,0.08);
  --grid: rgba(255,255,255,0.025);
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --maxw: 1180px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ ATMOSPHERE ============ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(0,217,255,0.07), transparent 60%),
    radial-gradient(1000px 700px at 10% 5%, rgba(0,255,136,0.06), transparent 55%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 30%, transparent 90%);
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.orb.a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(0,255,136,0.18), transparent 70%); top: -160px; left: -120px; animation: drift1 22s ease-in-out infinite; }
.orb.b { width: 440px; height: 440px; background: radial-gradient(circle, rgba(0,217,255,0.14), transparent 70%); top: 30%; right: -160px; animation: drift2 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(80px,60px); } }
@keyframes drift2 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-70px,40px); } }

/* film grain */
body::after {
  content:'';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 3px);
}

/* ============ SCROLL PROGRESS ============ */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 200; box-shadow: 0 0 10px var(--glow);
}

/* ============ LAYOUT ============ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; padding: 130px 0; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:''; width: 26px; height: 1px; background: var(--accent); display: inline-block; box-shadow: 0 0 8px var(--glow); }
.h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.08;
  letter-spacing: -0.5px; color: var(--text); margin-bottom: 20px;
}
.lead { font-size: 18px; color: var(--text-2); max-width: 620px; font-weight: 400; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent; padding: 22px 0;
}
nav.scrolled {
  background: rgba(7,7,11,0.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border: 1.5px solid var(--accent); border-radius: 7px;
  display: grid; place-items: center; font-family: var(--font-mono); font-weight: 700;
  font-size: 16px; color: var(--accent); box-shadow: 0 0 16px var(--glow-soft); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 1px; color: var(--text); }
.brand-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 2.5px; color: var(--text-3); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-3); text-decoration: none; padding: 8px 14px; transition: color .2s; border-radius: 5px;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent) !important; border: 1px solid var(--line); border-radius: 6px;
  background: var(--glow-soft); transition: all .2s; margin-left: 8px;
}
.nav-cta:hover { border-color: var(--accent); box-shadow: 0 0 18px var(--glow-soft); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* ============ HERO ============ */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 90px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px; margin-bottom: 28px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.35; } }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 26px;
}
.hero h1 .grad { background: linear-gradient(110deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { font-size: 19px; color: var(--text-2); max-width: 540px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 28px; border-radius: 7px; text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all .25s; display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary { background: var(--accent); color: #04130c; font-weight: 700; }
.btn-primary:hover { box-shadow: 0 0 32px var(--glow); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* hero side terminal panel */
.term {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.term-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.term-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.term-bar i:nth-child(1){ background:#ff5f57; } .term-bar i:nth-child(2){ background:#febc2e; } .term-bar i:nth-child(3){ background:#28c840; }
.term-title { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }
.term-body { padding: 20px; font-family: var(--font-mono); font-size: 13px; line-height: 1.9; }
.term-body .l { color: var(--text-3); }
.term-body .k { color: var(--accent-2); }
.term-body .v { color: var(--accent); }
.term-body .c { color: var(--text-2); }
.cursor-blink { display: inline-block; width: 8px; height: 15px; background: var(--accent); vertical-align: middle; animation: blink 1.1s step-end infinite; }
@keyframes blink { 50%{ opacity: 0; } }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); padding: 22px 0; overflow: hidden; position: relative;
}
.marquee::before, .marquee::after {
  content:''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: 1px;
  color: var(--text-2); padding: 0 30px; display: flex; align-items: center; gap: 30px; white-space: nowrap;
  text-decoration: none; transition: color .25s;
}
.marquee-item:hover { color: var(--accent); }
a.marquee-item { cursor: pointer; }
.marquee-item::after { content:'◆'; color: var(--accent); font-size: 9px; }
@keyframes scroll-x { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1{ transition-delay:.08s } .reveal.d2{ transition-delay:.16s } .reveal.d3{ transition-delay:.24s } .reveal.d4{ transition-delay:.32s }

/* ============ SERVICES ============ */
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 60px; flex-wrap: wrap; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 34px 30px;
  position: relative; overflow: hidden; transition: transform .35s, border-color .35s, background .35s;
}
.svc::before { content:''; position: absolute; inset: 0; background: radial-gradient(400px 200px at 50% 0%, var(--glow-soft), transparent 70%); opacity: 0; transition: opacity .35s; }
.svc:hover { transform: translateY(-6px); border-color: #26264a; background: var(--surface-2); }
.svc:hover::before { opacity: 1; }
.svc-num { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); letter-spacing: 2px; }
.svc-ico { width: 52px; height: 52px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; margin: 18px 0 20px; background: var(--bg-2); position: relative; }
.svc-ico svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.svc h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.2px; margin-bottom: 6px; }
.svc .tagline { color: var(--accent); font-size: 14px; font-family: var(--font-mono); margin-bottom: 14px; }
.svc p { color: var(--text-2); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .5px; padding: 4px 10px; border: 1px solid var(--line-soft); border-radius: 5px; color: var(--text-3); }

/* ============ APPROACH ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.step { position: relative; padding-top: 28px; border-top: 1px solid var(--line); }
.step-bar { position: absolute; top: -1px; left: 0; width: 40px; height: 2px; background: var(--accent); box-shadow: 0 0 10px var(--glow); }
.step-n { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.step h4 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: 15px; line-height: 1.65; }

/* ============ STATS ============ */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 56px 30px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4vw, 50px); color: var(--text); line-height: 1; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-top: 12px; }

/* ============ WORK ============ */
.work-list { display: flex; flex-direction: column; gap: 20px; margin-top: 56px; }
.work {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 28px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 34px;
  transition: border-color .3s, background .3s, transform .3s;
}
.work:hover { border-color: #26264a; background: var(--surface-2); transform: translateX(4px); }
.work-idx { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 1px; padding-top: 4px; }
.work-main h3 { font-family: var(--font-display); font-weight: 700; font-size: 23px; letter-spacing: -0.3px; margin-bottom: 4px; }
.work-sector { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.work-row { display: flex; gap: 14px; margin-bottom: 11px; }
.work-row .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-dim); min-width: 78px; padding-top: 2px; flex-shrink: 0; }
.work-row .txt { color: var(--text-2); font-size: 15.5px; line-height: 1.6; }
.work-chips { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; }
.work-chips .chip { white-space: nowrap; }

/* ============ ENGAGEMENT ============ */
.eng-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.eng { background: var(--surface); border: 1px solid var(--line); border-radius: 13px; padding: 30px 26px; transition: all .3s; display: flex; flex-direction: column; }
.eng:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.eng-ico { font-family: var(--font-mono); color: var(--accent); font-size: 14px; letter-spacing: 1px; margin-bottom: 16px; }
.eng h4 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 12px; }
.eng p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; flex-grow: 1; margin-bottom: 18px; }
.eng .price { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); padding-top: 16px; border-top: 1px solid var(--line); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-text p { color: var(--text-2); font-size: 16.5px; line-height: 1.8; margin-bottom: 20px; }
.about-text p strong { color: var(--text); font-weight: 600; }
.about-points { list-style: none; margin-top: 30px; }
.about-points li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 15.5px; color: var(--text-2); }
.about-points li::before { content:'›'; color: var(--accent); font-family: var(--font-mono); font-weight: 700; }
.about-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 40px; position: relative; overflow: hidden; }
.about-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.about-card .ac-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 22px; }
.about-card .ac-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.about-card .ac-row:last-child { border-bottom: none; }
.about-card .ac-k { font-family: var(--font-mono); font-size: 13px; color: var(--text-3); letter-spacing: .5px; }
.about-card .ac-v { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); text-align: right; }

/* ============ FAQ ============ */
.faq-list { margin-top: 50px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text); transition: color .2s; }
.faq-q:hover { color: var(--accent); }
.faq-toggle { font-family: var(--font-mono); font-size: 22px; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 26px; }
.faq-a p { color: var(--text-2); font-size: 16px; line-height: 1.7; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.contact-info p { color: var(--text-2); font-size: 17px; line-height: 1.75; margin-bottom: 30px; }
.ci-block { margin-bottom: 26px; }
.ci-block .ci-l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.ci-block a, .ci-block .ci-v { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text); text-decoration: none; transition: color .2s; }
.ci-block a:hover { color: var(--accent); }
.status-pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 38px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 13px 15px; color: var(--text); font-family: var(--font-body); font-size: 15.5px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .btn-primary { width: 100%; justify-content: center; border: none; font-size: 14px; }

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--line); padding: 50px 0 40px; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.foot-brand { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .5px; }
.foot-brand span { color: var(--accent); }
.foot-tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); }
.foot-nav { display: flex; gap: 22px; }
.foot-nav a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-3); text-decoration: none; transition: color .2s; }
.foot-nav a:hover { color: var(--accent); }
.copy { margin-top: 28px; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: .5px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  section { padding: 90px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .term { max-width: 480px; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd){ border-right: 1px solid var(--line); }
  .work { grid-template-columns: 1fr; gap: 16px; }
  .work-chips { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .eng-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: rgba(7,7,11,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 16px 28px; gap: 4px; }
  .nav-links.open a { padding: 12px 8px; }
  .burger { display: flex; }
}
@media (max-width: 540px) {
  .wrap, .nav-inner { padding: 0 20px; }
  .steps { grid-template-columns: 1fr; }
  .eng-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero p.sub { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
/* ---- Utility classes (converted from former inline styles) ---- */
.stats { padding: 0; }
.wrap-narrow { max-width: 840px; }
.text-accent { color: var(--accent); }
.foot-tag.mt { margin-top: 8px; }

/* ---- Proof strip ---- */
.proof { padding: 0; }
.proof-inner {
  border-left: 2px solid var(--accent);
  padding: 30px 0 30px 32px;
  margin: 0 auto;
  max-width: 900px;
  box-shadow: -1px 0 24px var(--glow-soft);
}
.proof-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.proof-text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 2.4vw, 26px); line-height: 1.5; color: var(--text-2);
}
.proof-text strong { color: var(--text); font-weight: 600; }
@media (max-width: 540px) {
  .proof-inner { padding-left: 22px; }
}
