/* ===== NEONSPEC DESIGN SYSTEM ===== */
/* Used by all custom SmarterNerd pages */

:root {
  --bg: #08080C;
  --bg2: #0A0B11;
  --panel: #0E0F16;
  --panel2: #12131d;
  --cyan: #00E5FF;
  --mag: #FF2D9B;
  --elec: #4D6EFF;
  --violet: #7B5CFF;
  --lime: #3DDC84;
  --text: #F5F7FA;
  --t2: rgba(245, 247, 250, 0.64);
  --t3: rgba(245, 247, 250, 0.40);
  --line: rgba(245, 247, 250, 0.09);
  --lineC: rgba(0, 229, 255, 0.18);
  --disp: 'Space Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --wrap: 1240px;
  --pad-h: 40px;
  --trans: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--disp); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-h); }
.neon { background: linear-gradient(100deg, var(--cyan), var(--elec) 55%, var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grain { position: absolute; inset: 0; opacity: 0.045; mix-blend-mode: overlay; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@keyframes drift1 { to { transform: translate(-50px, 40px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(40px, -50px) scale(1.08); } }
@keyframes drift3 { to { transform: translate(-30px, -30px) scale(1.12); } }
@keyframes pulse { 50% { opacity: 0.4; } }
@keyframes float { 50% { transform: translateY(-14px); } }

/* ===== CUSTOM HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

nav {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
}

.brand sup {
  font-size: 0.65em;
}

.glyph {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--mag) 100%);
  border-radius: 50%;
  display: inline-block;
}

.nlinks {
  display: flex;
  gap: 32px;
}

.nlinks a {
  color: var(--t2);
  font-size: 14px;
  transition: color var(--trans);
}

.nlinks a:hover {
  color: var(--cyan);
}

.ncta {
  background: var(--cyan);
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all var(--trans);
}

.ncta:hover {
  background: var(--mag);
  color: #fff;
}

/* Adjust body/content to account for fixed header */
body {
  padding-top: 60px;
}

/* Hide Kadence's default header and page title bar */
.site-header,
.page-title-bar,
.entry-header,
.wp-block-post-title {
  display: none !important;
}

/* ===== PROGRESS BAR ===== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 8%;
  background: linear-gradient(90deg, var(--cyan), var(--mag));
  z-index: 250;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
  transition: width 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 120px var(--pad-h) 80px;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.plasma { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.o1 { width: 620px; height: 620px; background: var(--cyan); opacity: 0.22; top: -10%; right: 4%; animation: drift1 22s ease-in-out infinite alternate; }
.o2 { width: 500px; height: 500px; background: var(--mag); opacity: 0.18; top: 26%; right: 26%; animation: drift2 26s ease-in-out infinite alternate; }
.o3 { width: 560px; height: 560px; background: var(--elec); opacity: 0.16; top: 14%; right: -8%; animation: drift3 20s ease-in-out infinite alternate; }

.hframe { position: absolute; inset: 96px 22px 22px; border: 1px solid var(--line); border-radius: 16px; z-index: 1; pointer-events: none; }
.hero .wrap { position: relative; z-index: 5; }
.hero-content { max-width: 680px; margin: 0 auto; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 26px; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }

.hero h1 { font-size: clamp(3rem, 6.2vw, 5.6rem); line-height: 0.96; letter-spacing: -0.035em; font-weight: 600; margin-bottom: 28px; }
.hero-sub { font-size: 1.18rem; color: var(--t2); max-width: 580px; margin: 28px auto 34px; line-height: 1.55; }
.hero-sub b { color: var(--text); font-weight: 500; }

/* ===== SERVICES SECTION ===== */
.services-section {
  position: relative;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  background: var(--bg2);
}

.shead { max-width: 680px; margin-bottom: 52px; }
.shead h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 14px 0; }
.shead p { color: var(--t2); font-size: 1.1rem; }

.kick { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); display: inline-block; margin-bottom: 12px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  background: var(--panel2);
}

.service-card .icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
.service-card p { color: var(--t2); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
.service-card .arrow { display: inline-block; color: var(--cyan); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid var(--cyan); padding-bottom: 2px; transition: all var(--trans); }
.service-card:hover .arrow { transform: translateX(4px); }

/* ===== HOW SECTION ===== */
.how-section { position: relative; padding: 96px 0; border-top: 1px solid var(--line); }
.how-intro { max-width: 680px; margin-bottom: 52px; }
.how-intro h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 14px 0; }
.how-intro p { color: var(--t2); font-size: 1.1rem; line-height: 1.6; }

.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 32px; text-align: center; }
.how-card .num { font-size: 2.4rem; font-weight: 700; color: var(--cyan); margin-bottom: 12px; }
.how-card h4 { margin-bottom: 12px; }
.how-card p { color: var(--t2); font-size: 0.95rem; line-height: 1.6; }

/* ===== TESTIMONIAL ===== */
.testimonial-section { position: relative; padding: 96px 0; border-top: 1px solid var(--line); background: var(--bg2); }
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--lineC);
  border-radius: 20px;
  padding: 50px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card .glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%); top: -100px; right: -100px; z-index: 0; }
.testimonial-card .wrap { position: relative; z-index: 2; }
.testimonial-card .stars { color: #FFC83D; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 16px; display: block; }
.testimonial-card .quote { font-size: 1.18rem; font-style: italic; color: var(--text); margin-bottom: 16px; line-height: 1.6; }
.testimonial-card .who { color: var(--t3); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta-section .glow {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2), rgba(255, 45, 155, 0.12) 45%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
}

.cta-section .wrap { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin-bottom: 22px; }
.cta-section p { color: var(--t2); font-size: 1.15rem; max-width: 520px; margin: 22px auto 34px; }

.ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.98rem; padding: 15px 26px; border-radius: 100px; transition: all var(--trans); border: none; cursor: pointer; text-decoration: none; }
.btn-primary { background: var(--cyan); color: var(--bg); box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.5), 0 12px 40px rgba(0, 229, 255, 0.28); }
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.7), 0 14px 50px rgba(0, 229, 255, 0.45); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--lineC); font-weight: 500; }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--line);
  background: var(--bg2);
  padding: 54px 0 30px;
}

.fgrid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
  margin-bottom: 40px;
}

.fbrand p {
  color: var(--t2);
  font-size: 0.9rem;
  max-width: 30ch;
}

.fcol h4 {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px;
}

.fcol a {
  display: block;
  font-size: 0.92rem;
  color: var(--t2);
  padding: 5px 0;
  transition: color var(--trans);
}

.fcol a:hover {
  color: var(--text);
}

.fbot {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 22px var(--pad-h) 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 100px var(--pad-h) 60px; min-height: auto; }
  .hframe, .hide-mobile { display: none !important; }
  .services-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .fbot { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 80px var(--pad-h) 40px; }
  .hero-sub { font-size: 1rem; }
  .ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .testimonial-card { padding: 30px 20px; }
  .service-card { padding: 24px 20px; }
}

/* ===== HERO TWO-COLUMN FIX (appended 2026-06-09) ===== */
.hero .wrap { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: center; width: 100%; max-width: var(--wrap); margin: 0 auto; position: relative; z-index: 5; }
.hero-content { max-width: 680px; margin: 0; }

.annot { position: absolute; top: 116px; left: 48px; right: 48px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t3); z-index: 5; }
.figrow { position: absolute; bottom: 46px; left: 48px; right: 48px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t3); z-index: 5; }

.hero .sub { font-size: 1.18rem; color: var(--t2); max-width: 540px; margin: 28px 0 34px; line-height: 1.55; }
.hero .sub b { color: var(--text); font-weight: 500; }

.ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-p { font-weight: 600; font-size: 0.98rem; background: var(--cyan); color: var(--bg); padding: 15px 26px; border-radius: 100px; box-shadow: 0 0 0 1px rgba(0,229,255,.5), 0 12px 40px rgba(0,229,255,.28); transition: 0.2s; }
.btn-p:hover { box-shadow: 0 0 0 1px rgba(0,229,255,.7), 0 14px 50px rgba(0,229,255,.45); transform: translateY(-2px); }
.btn-s { font-weight: 500; font-size: 0.98rem; color: var(--text); padding: 15px 24px; border-radius: 100px; border: 1px solid var(--lineC); }

.htrust { display: flex; align-items: center; gap: 16px; margin-top: 30px; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); flex-wrap: wrap; }
.stars { color: #FFC83D; letter-spacing: 2px; font-size: 0.85rem; }
.htrust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--t3); }

.arts { position: relative; height: 440px; }
.art { position: absolute; background: rgba(14,15,22,.66); border: 1px solid var(--lineC); border-radius: 16px; padding: 16px 18px; backdrop-filter: blur(16px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.art .h { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t3); margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.art .h i { width: 6px; height: 6px; border-radius: 50%; }
.a1 { top: 0; right: 0; width: 268px; animation: float 6s ease-in-out infinite; }
.a1 .h i { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.a1 .q { font-size: 1.06rem; font-weight: 500; line-height: 1.3; }
.a1 .stars { display: block; margin-top: 10px; }
.a1 .who { font-family: var(--mono); font-size: 0.56rem; color: var(--t3); margin-top: 8px; letter-spacing: 0.06em; }
.a2 { top: 188px; right: 188px; width: 196px; animation: float 7s ease-in-out infinite 0.5s; }
.a2 .h i { background: var(--mag); box-shadow: 0 0 8px var(--mag); }
.a2 .pin { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; }
.a2 .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--mag); box-shadow: 0 0 0 5px rgba(255,45,155,.18); }
.a2 .big { font-size: 1.45rem; font-weight: 700; margin-top: 6px; }
.a3 { top: 300px; right: 10px; width: 238px; animation: float 6.5s ease-in-out infinite 1s; }
.a3 .h i { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 46px; margin-bottom: 10px; }
.bars b { flex: 1; background: linear-gradient(180deg, var(--cyan), rgba(0,229,255,.14)); border-radius: 3px 3px 0 0; }
.a3 .res { font-size: 1.5rem; font-weight: 700; color: var(--cyan); }
.a3 .res small { font-family: var(--mono); font-size: 0.54rem; color: var(--t3); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-top: 2px; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .arts, .annot, .figrow { display: none; }
}

/* ===== HOMEPAGE SECTION CLASSES (appended 2026-06-09) ===== */
section.band { position: relative; padding: 96px 0; border-top: 1px solid var(--line); }
.band.alt { background: var(--bg2); }
.band .shead { max-width: 680px; margin-bottom: 52px; }
.band .shead h2 { margin: 14px 0; font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.band .shead p { color: var(--t2); font-size: 1.1rem; }

/* Credentials grid */
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cred { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; transition: 0.2s; }
.cred:hover { border-color: var(--lineC); transform: translateY(-3px); }
.cred .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid var(--lineC); color: var(--cyan); font-size: 1.1rem; }
.cred h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.cred p { font-size: 0.92rem; color: var(--t2); line-height: 1.5; }
.cred .tag { font-family: var(--mono); font-size: 0.54rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); margin-top: 12px; display: block; }
.clients { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 30px; display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.clients .lbl { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t3); }
.clients .name { font-size: 1.05rem; font-weight: 500; color: var(--t2); letter-spacing: 0.01em; }

/* Services grid */
.svc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; }
.svc-feat { background: radial-gradient(120% 120% at 0% 0%, rgba(0,229,255,.16), transparent 52%), var(--panel); border: 1px solid var(--lineC); border-radius: 20px; padding: 34px; position: relative; overflow: hidden; }
.svc-feat .pill { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg); background: var(--cyan); padding: 5px 11px; border-radius: 7px; font-weight: 500; }
.svc-feat h3 { font-size: 2.1rem; font-weight: 600; margin: 18px 0 12px; letter-spacing: -0.02em; }
.svc-feat p { color: var(--t2); max-width: 42ch; font-size: 1rem; }
.svc-feat .feats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.svc-feat .feats span { font-size: 0.8rem; color: var(--t2); border: 1px solid var(--lineC); border-radius: 9px; padding: 7px 13px; }
.svc-feat .glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--cyan); filter: blur(90px); opacity: 0.12; bottom: -120px; right: -60px; }
.svc-list { display: flex; flex-direction: column; gap: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.svc-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--line); transition: 0.18s; }
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: rgba(0,229,255,.04); }
.svc-row .n { font-family: var(--mono); font-size: 0.78rem; color: var(--cyan); }
.svc-row h4 { font-size: 1.18rem; font-weight: 600; margin-bottom: 3px; }
.svc-row p { font-size: 0.88rem; color: var(--t3); }

/* Proof results */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
.result { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; }
.result .metric { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.result .metric.c { color: var(--cyan); } .result .metric.m { color: var(--mag); } .result .metric.v { color: var(--violet); }
.result .ctx { font-size: 0.96rem; color: var(--t2); margin: 10px 0 16px; }
.result .who { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); border-top: 1px solid var(--line); padding-top: 14px; }

/* Ship AI */
.shipai { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; background: var(--panel2); border: 1px solid var(--lineC); border-radius: 20px; padding: 34px; align-items: center; margin-top: 4px; }
.shipai h3 { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.shipai p { color: var(--t2); font-size: 1rem; }
.shipai .prods { display: flex; flex-direction: column; gap: 12px; }
.shipai .prod { display: flex; align-items: center; gap: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; }
.shipai .prod .d { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--cyan), var(--violet)); flex: none; }
.shipai .prod .d2 { background: linear-gradient(135deg, var(--mag), var(--elec)); }
.shipai .prod b { font-weight: 600; font-size: 0.98rem; display: block; }
.shipai .prod span { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); }

/* Team teaser */
.team { margin-top: 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; border: 1px solid var(--line); border-radius: 18px; padding: 24px 28px; background: var(--panel); }
.team .faces { display: flex; }
.team .face { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -12px; background: linear-gradient(135deg, var(--elec), var(--cyan)); }
.team .face:nth-child(2) { background: linear-gradient(135deg, var(--mag), var(--violet)); }
.team .txt { flex: 1; min-width: 260px; }
.team .txt b { font-weight: 600; }
.team .txt p { color: var(--t2); font-size: 0.94rem; }
.team a.more { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--cyan); padding-bottom: 3px; }

/* CTA band */
.cta { position: relative; text-align: center; padding: 110px 0; overflow: hidden; border-top: 1px solid var(--line); }
.cta .glow { position: absolute; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(0,229,255,.2), rgba(255,45,155,.12) 45%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(40px); z-index: 0; }
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.cta p { color: var(--t2); font-size: 1.15rem; max-width: 520px; margin: 22px auto 34px; }

@media (max-width: 900px) {
  .svc-grid, .shipai, .results, .creds { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr 1fr; }
}

/* ===== TITLE CONTRAST FIX (site-wide, appended 2026-06-09) ===== */
/* Section headings and card titles were inheriting a dim color - force bright white */
h1, h2, h3, h4 { color: var(--text); }
.shead h2, .band .shead h2, .svc-feat h3, .svc-row h4, .cred h3,
.overview-text h2, .how-intro h2, .process-section h2, .results-section h2,
.service-pricing-section h2, .service-faq-section h2, .faq-section h2,
.shortcuts-section h2, .testimonial-section h2, .testimonials-section h2,
.cta h2, .cta-section h2, .stats-section h2, .timeline-content h4,
.shortcut-card h4, .philosophy-card h3, .contact-item .value,
.tier h3, .tier h4, .step h3, .how-card h4, .faq-item h4 { color: var(--text); }
/* keep gradient accent spans transparent so the gradient still shows */
h1 .neon, h2 .neon, h3 .neon, h4 .neon { color: transparent; }

/* ===== TITLE CONTRAST FIX v2 - override Kadence dynamic CSS (2026-06-09) ===== */
.hero h1, section.band h2, .shead h2, .svc-feat h3, .svc-row h4, .cred h3,
.overview-text h2, .how-intro h2, .process-section h2, .results-section h2,
.service-pricing-section h2, .service-faq-section h2, .faq-section h2,
.shortcuts-section h2, .testimonial-section h2, .testimonials-section h2,
.cta h2, .cta-section h2, .stats-section h2, .timeline-content h4,
.shortcut-card h4, .philosophy-card h3, .tier h3, .tier h4, .step h3,
.how-card h4, .faq-item h4, .result .metric, .shipai h3, .team .txt b {
  color: var(--text) !important;
}
.neon, h1 .neon, h2 .neon, h3 .neon, h4 .neon { color: transparent !important; }
.result .metric.c { color: var(--cyan) !important; }
.result .metric.m { color: var(--mag) !important; }
.result .metric.v { color: var(--violet) !important; }

/* ===== HEADER BRAND LOGO + WORDMARK (2026-06-10) ===== */
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo { width: 40px; height: 40px; display: block; flex: none; }
.brand-name { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1; }
.bn-smarter { color: var(--cyan); }
.bn-nerd { color: #FF4DD8; }
@media (max-width: 600px) {
  .brand-logo { width: 34px; height: 34px; }
  .brand-name { font-size: 1.1rem; }
}
