/* ==========================================================================
   Phoenix Solutions v3 — Eddy's slate + amber house style
   Built on CPS delivery-webapp vocabulary (slate-950 / amber-500 / rounded-2xl
   / hairline rings / uppercase tracking-wide eyebrows). All motion lives in
   motion.css. Reduced-motion handled there too.
   ========================================================================== */

:root {
  /* palette — slate navy + amber */
  --bg:          #020617;     /* slate-950 */
  --bg-elev:     #0F172A;     /* slate-900 */
  --bg-elev-2:   #1E293B;     /* slate-800 */
  --ring:        #1E293B;     /* slate-800 — hairline borders */
  --ring-2:      #334155;     /* slate-700 */
  --text:        #F1F5F9;     /* slate-100 */
  --text-muted:  #94A3B8;     /* slate-400 */
  --text-dim:    #64748B;     /* slate-500 */
  --accent:      #F59E0B;     /* amber-500 */
  --accent-hi:   #FBBF24;     /* amber-400 — hover */
  --accent-glow: rgba(245, 158, 11, 0.18);
  --accent-line: rgba(245, 158, 11, 0.30);

  /* type — Inter, weight contrast */
  --font: 'Inter', -apple-system, BlinkMacFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* shape — rounded-2xl SaaS house */
  --r-1: 8px;
  --r-2: 16px;
  --r-3: 24px;
  --r-pill: 999px;

  /* spacing */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6rem;

  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   Typography
   ========================================================================== */

.display {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-pill);
  background: rgba(245, 158, 11, 0.06);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ==========================================================================
   Buttons (slate/amber rounded-2xl)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-1);
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #020617;
}
.btn-primary:hover { background: var(--accent-hi); transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--ring);
}
.btn-secondary:hover { border-color: var(--ring-2); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--ring);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: var(--r-1); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ring);
}
.header-wrap {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  height: 72px;
  flex-wrap: nowrap;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: var(--r-1);
  background: var(--bg-elev);
  padding: 4px;
  color: var(--accent);
}
.brand-name em {
  color: var(--accent);
  font-style: normal;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--r-1);
  transition: color 0.18s ease, background 0.18s ease;
}
.site-nav a:hover { color: var(--text); background: var(--bg-elev); }
.site-nav a.is-active { color: var(--text); background: var(--bg-elev); }
.site-nav .nav-cta {
  background: var(--accent);
  color: #020617;
  padding: 8px 16px;
}
.site-nav .nav-cta:hover { background: var(--accent-hi); color: #020617; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  border: 1px solid var(--ring);
  border-radius: var(--r-1);
}
.header-phone:hover { color: var(--text); border-color: var(--ring-2); }

@media (max-width: 880px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .header-phone { display: none; }
}
@media (max-width: 540px) {
  .header-wrap { gap: var(--s-1); }
  .brand-name span { display: none; }
  .site-nav .nav-cta { padding: 7px 12px; font-size: 12px; }
}

/* ==========================================================================
   Hero — slate mesh gradient with three cinematic slides
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--ring);
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(245, 158, 11, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(99, 102, 241, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(245, 158, 11, 0.04), transparent 60%);
  filter: blur(0.5px);
  animation: mesh-drift 30s ease-in-out infinite alternate;
}
@keyframes mesh-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.05); }
}

.hero-wrap {
  position: relative;
  z-index: 2;
}

/* -----------------------------------------------------------------------
   Hero head — eyebrow + headline + subtext above the cards
   ----------------------------------------------------------------------- */

.hero-head {
  max-width: 760px;
  margin-bottom: var(--s-4);
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin: var(--s-3) 0 var(--s-3);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

/* -----------------------------------------------------------------------
   Hero cards — 3 floating panels, each with continuous motion + tilt
   ----------------------------------------------------------------------- */

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: var(--s-4);
}
@media (max-width: 880px) {
  .hero-cards { grid-template-columns: 1fr; gap: 12px; }
}

.float-card {
  position: relative;
  /* GPU-accelerated transform plane for tilt + float */
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(0) rotateY(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  animation: float-y-1 7s ease-in-out infinite;
}
.float-card-2 { animation: float-y-2 8s ease-in-out infinite; animation-delay: -2s; }
.float-card-3 { animation: float-y-3 9s ease-in-out infinite; animation-delay: -4s; }

@keyframes float-y-1 {
  0%, 100% { transform: translateY(0)    rotateX(0) rotateY(0); }
  50%      { transform: translateY(-6px) rotateX(0) rotateY(0); }
}
@keyframes float-y-2 {
  0%, 100% { transform: translateY(0)    rotateX(0) rotateY(0); }
  50%      { transform: translateY(4px)  rotateX(0) rotateY(0); }
}
@keyframes float-y-3 {
  0%, 100% { transform: translateY(0)    rotateX(0) rotateY(0); }
  50%      { transform: translateY(-8px) rotateX(0) rotateY(0); }
}

.float-card-inner {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: linear-gradient(160deg, var(--bg-elev) 0%, rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.float-card-inner::before {
  /* amber accent corner glow */
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 60%; height: 60%;
  background: radial-gradient(circle at 0% 0%, var(--accent-glow), transparent 70%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.float-card:hover .float-card-inner {
  border-color: var(--accent-line);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--accent-line);
}
.float-card:hover .float-card-inner::before { opacity: 1; }

.float-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-2);
  font-family: var(--mono);
}

.float-card-title {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 var(--s-2);
}
.float-card-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  display: block;
  font-size: 0.85em;
  margin-top: 2px;
}

.float-card-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 var(--s-3);
}

.float-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  padding: 8px 12px;
  margin-left: -12px;
  border-radius: var(--r-1);
  transition: background 0.18s ease, color 0.18s ease;
}
.float-card-cta:hover {
  background: var(--accent-glow);
  color: var(--accent-hi);
}

/* ==========================================================================
   Section heads
   ========================================================================== */

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 720px;
  margin-top: var(--s-2);
}
.section-head h2 em { font-style: normal; color: var(--accent); }
.section-head .section-head-meta {
  font-size: 14px;
  color: var(--text-dim);
  text-align: right;
}

/* ==========================================================================
   Services (4 cards)
   ========================================================================== */

.services { padding: var(--s-6) 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}
@media (max-width: 700px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  display: block;
  padding: var(--s-4);
  background: linear-gradient(180deg, var(--bg-elev), rgba(15, 23, 42, 0.4));
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
  transition: border-color 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.service-card:hover { border-color: var(--ring-2); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-1);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-3);
  color: var(--accent);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.service-card .service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s-2);
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 var(--s-3);
  line-height: 1.55;
}
.service-card .service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card .service-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ==========================================================================
   Why (dark band) + bullets
   ========================================================================== */

.why {
  padding: var(--s-6) 0;
  background:
    linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.5)),
    var(--bg);
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
}
.why-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-5);
  align-items: start;
}
.why-copy p {
  color: var(--text-muted);
  margin: 0 0 var(--s-3);
  font-size: 16px;
}
.why-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: var(--s-2) 0 var(--s-3);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.why-copy h2 em { font-style: normal; color: var(--accent); }

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  padding-top: var(--s-3);
}
.bullet {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--ring);
  border-radius: var(--r-1);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.bullet:hover { border-color: var(--accent-line); }
.bullet::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  box-shadow: 0 0 6px var(--accent-glow);
}
@media (max-width: 540px) {
  .bullet-grid { grid-template-columns: 1fr; }
}

.why-side {
  position: sticky;
  top: 96px;
}
.testimonial-card {
  padding: var(--s-4);
  background: var(--bg-elev);
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
}
.testimonial-quote {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 var(--s-3);
}
.testimonial-quote::before {
  content: """;
  color: var(--accent);
  font-size: 32px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--s-2);
  border-top: 1px solid var(--ring);
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #020617;
  font-size: 13px;
}
.testimonial-meta-info {
  display: flex;
  flex-direction: column;
}
.testimonial-meta-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testimonial-meta-role { font-size: 12px; color: var(--text-dim); }

@media (max-width: 880px) {
  .why-wrap { grid-template-columns: 1fr; }
  .why-side { position: static; }
}

/* ==========================================================================
   Stats / counters
   ========================================================================== */

.stats-band {
  padding: var(--s-5) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
}
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-3);
}
.stat-card {
  padding: var(--s-3);
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
  background: var(--bg);
}
.stat-value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-value .counter-val { font-variant-numeric: tabular-nums; }
.stat-value .stat-suffix { font-size: 0.6em; color: var(--accent); font-weight: 700; }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   CTA strip
   ========================================================================== */

.cta-strip { padding: var(--s-5) 0; }
.cta-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--r-3);
  background:
    radial-gradient(ellipse at top right, var(--accent-glow), transparent 60%),
    var(--bg-elev);
  border: 1px solid var(--ring);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
  overflow: hidden;
}
.cta-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cta-card p { color: var(--text-muted); margin: 0; max-width: 540px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--ring);
  padding: var(--s-5) 0 var(--s-4);
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-4);
}
.footer-brand .brand { margin-bottom: var(--s-2); }
.footer-brand .brand-mark { background: var(--bg-elev); }
.footer-addr {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: var(--s-2);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s-2);
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: var(--s-2);
}
@media (max-width: 760px) {
  .footer-wrap { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Inner-page hero
   ========================================================================== */

.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--ring);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-2);
  max-width: 760px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 var(--s-3);
}

/* ==========================================================================
   Feature stack (managed IT)
   ========================================================================== */

.feature-stack { padding: var(--s-6) 0; }
.feature {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  grid-template-areas:
    "num heading"
    "num body";
  gap: var(--s-3) var(--s-4);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--ring);
  align-items: start;
}
.feature:last-child { border-bottom: 1px solid var(--ring); }
.feature-num {
  grid-area: num;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 6px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-1);
  text-align: center;
  height: fit-content;
  padding: 6px 10px;
  width: fit-content;
}
.feature h2 { grid-area: heading; margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.feature p  { grid-area: body; margin: 0; color: var(--text-muted); max-width: 640px; }
@media (max-width: 540px) {
  .feature { grid-template-columns: 1fr; gap: var(--s-2); }
  .feature-num { justify-self: start; }
}

/* ==========================================================================
   Cloud / Phone / Networks cards
   ========================================================================== */

.cloud-grid,
.phone-grid,
.networks-grid { padding: var(--s-6) 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}
@media (max-width: 700px) {
  .card-grid { grid-template-columns: 1fr; }
}
.tile {
  padding: var(--s-4);
  background: var(--bg-elev);
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
  transition: border-color 0.2s ease;
}
.tile:hover { border-color: var(--accent-line); }
.tile h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tile p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.tile-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
  font-family: var(--mono);
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-body { padding: var(--s-6) 0; }
.about-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-5);
}
.about-prose h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 var(--s-2);
}
.about-prose h2:first-child { margin-top: 0; }
.about-prose h2 em { font-style: normal; color: var(--accent); }
.about-prose p { color: var(--text-muted); margin: 0 0 var(--s-3); max-width: 640px; }
.about-side {
  display: grid;
  gap: 12px;
}
.fact-card {
  padding: var(--s-3);
  background: var(--bg-elev);
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
}
.fact-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.fact-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 760px) {
  .about-wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid { padding: var(--s-6) 0; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-5);
  align-items: start;
}
.contact-side { display: flex; flex-direction: column; gap: var(--s-4); }
.contact-block {
  padding: var(--s-3);
  background: var(--bg-elev);
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
}
.contact-block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.contact-biglink {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-biglink:hover { color: var(--accent); }
.contact-block p { margin: 0; color: var(--text-muted); font-size: 13px; }

.contact-form {
  padding: var(--s-4);
  background: var(--bg-elev);
  border: 1px solid var(--ring);
  border-radius: var(--r-2);
}
.contact-form h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
}
.contact-form label {
  display: block;
  margin-bottom: var(--s-2);
}
.contact-form label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--ring);
  border-radius: var(--r-1);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form button {
  margin-top: var(--s-1);
  border: 0;
  cursor: pointer;
}
.form-note {
  font-size: 12px;
  color: var(--text-dim);
  margin: var(--s-2) 0 0;
}
@media (max-width: 760px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Industries strip (marquee candidate, currently static pills)
   ========================================================================== */

.industries { padding: var(--s-4) 0; border-top: 1px solid var(--ring); border-bottom: 1px solid var(--ring); background: var(--bg); }
.industries-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s-2);
}
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.industries-list li {
  padding: 8px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--ring);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.industries-list li:hover { border-color: var(--accent-line); }

/* ==========================================================================
   Magnetic CTA inner (spark border target)
   ========================================================================== */

.magnet-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.magnet-content {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

/* ==========================================================================
   Reduced motion handled in motion.css
   ========================================================================== */