:root {
  --orange: #fb923c;
  --orange-strong: #f97316;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: #f8fafc;
  background: var(--slate-950);
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 115, 22, 0.14), transparent 30%),
    linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-800);
  background: rgba(2, 6, 23, 0.88);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { width: 120px; height: auto; display: block; }

.pill {
  border: 1px solid rgba(251, 146, 60, 0.55);
  color: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav-links a {
  color: var(--slate-300);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--orange-strong);
  color: #fff;
  padding: 9px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.btn-cta:hover { background: #ea580c; }

.hero {
  padding: 72px 0 48px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-flex;
  border: 1px solid rgba(251, 146, 60, 0.35);
  color: var(--orange);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero .lead {
  margin: 0 auto;
  max-width: 720px;
  color: var(--slate-400);
  font-size: 18px;
  line-height: 1.65;
}

.section {
  padding: 56px 0;
}

.section.alt { background: rgba(15, 23, 42, 0.55); }

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 36px);
}

.section-head p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--slate-400);
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid var(--slate-800);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.45);
  padding: 28px;
}

.card .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--slate-400);
  line-height: 1.6;
  font-size: 15px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.stat {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--slate-800);
  background: rgba(2, 6, 23, 0.5);
}

.stat strong {
  display: block;
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 6px;
}

.stat span {
  font-size: 13px;
  color: var(--slate-400);
}

.thesis {
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 14px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(2, 6, 23, 0.6));
}

.thesis h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3.5vw, 32px);
}

.thesis p {
  margin: 0 0 14px;
  color: var(--slate-300);
  line-height: 1.7;
  font-size: 16px;
}

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

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--slate-800);
  border-radius: 14px;
  padding: 32px;
  background: rgba(30, 41, 59, 0.4);
  transition: border-color 0.2s;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background-size: cover;
  background-position: center;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.industry-card:hover::before {
  opacity: 0.58;
  transform: scale(1.04);
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

#financial.industry-card::before {
  background-image:
    linear-gradient(165deg, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.84)),
    url("assets/visual/photo-1611974789855-9c2a0a7236a3.jpg");
}

#bio.industry-card::before {
  background-image:
    linear-gradient(165deg, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.84)),
    url("assets/visual/photo-1611974789855-9c2a0a7236a3.jpg");
}

#iot.industry-card::before {
  background-image:
    linear-gradient(165deg, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.84)),
    url("assets/visual/photo-1518432031352-d6fc5c10da5a.jpg");
}

#public.industry-card::before {
  background-image:
    linear-gradient(165deg, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.84)),
    url("assets/visual/photo-1486406146926-c627a92ad1ab.jpg");
}

.industry-card:hover {
  border-color: rgba(251, 146, 60, 0.45);
}

.industry-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
}

.industry-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.industry-card .tagline {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.industry-card p {
  margin: 0 0 16px;
  color: var(--slate-400);
  line-height: 1.6;
  font-size: 14px;
}

.industry-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--slate-300);
  font-size: 13px;
  line-height: 1.5;
}

.industry-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.cta-band {
  text-align: center;
  padding: 64px 0 80px;
  background: linear-gradient(135deg, #fb923c, #f97316, #ef4444);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
}

.cta-band p {
  margin: 0 auto 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--slate-950);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.btn-dark:hover { background: #0f172a; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 8px;
  border: 2px solid rgba(2, 6, 23, 0.85);
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-950);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--slate-800);
  background: var(--slate-950);
  padding: 48px 0 24px;
}

.site-footer .footer-copy {
  border-top: 1px solid var(--slate-800);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  color: var(--slate-400);
  font-size: 13px;
}

.site-footer a {
  color: var(--slate-400);
  text-decoration: none;
}

.site-footer a:hover { color: var(--orange); }

.site-footer h3 {
  font-size: 14px;
  margin: 0 0 16px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin-bottom: 8px; font-size: 13px; }

.site-footer .brand-blurb {
  color: var(--slate-400);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--slate-800);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.45);
  padding: 28px;
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.contact-panel .sub {
  margin: 0 0 20px;
  color: var(--slate-400);
  font-size: 14px;
  line-height: 1.6;
}

.contact-field { margin-bottom: 14px; }

.contact-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-300);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  background: var(--slate-950);
  color: #f8fafc;
  border: 1px solid var(--slate-800);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
}

.contact-field textarea { min-height: 130px; resize: vertical; }

.contact-honeypot {
  display: none !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.btn-form-primary {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  background: var(--orange-strong);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-form-primary:hover { background: #ea580c; }

.btn-form-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-form-secondary {
  border-radius: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(251, 146, 60, 0.5);
  color: var(--orange);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-form-secondary:hover { background: rgba(251, 146, 60, 0.12); }

.info-list { display: grid; gap: 10px; }

.info-item {
  border: 1px solid var(--slate-800);
  border-radius: 10px;
  padding: 12px;
  background: rgba(2, 6, 23, 0.5);
}

.info-item b {
  display: block;
  font-size: 12px;
  color: var(--orange);
  margin-bottom: 5px;
  letter-spacing: 0.04em;
}

.info-item p {
  margin: 0;
  color: var(--slate-300);
  font-size: 14px;
  line-height: 1.45;
}

.contact-note {
  margin-top: 14px;
  border-radius: 10px;
  padding: 12px;
  background: rgba(249, 115, 22, 0.09);
  border: 1px dashed rgba(251, 146, 60, 0.45);
  color: #fdba74;
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 8px;
  display: none;
}

.form-status.visible { display: block; }

.form-status.ok {
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}

.form-status.err {
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
}

.map-panel {
  margin-top: 8px;
  border: 1px solid var(--slate-800);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.45);
  padding: 24px;
}

.map-panel h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.map-panel p {
  margin: 0 0 12px;
  color: var(--slate-400);
  font-size: 13px;
}

.map-wrap {
  border: 1px solid var(--slate-800);
  border-radius: 10px;
  overflow: hidden;
  background: var(--slate-950);
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .two-col,
  .industry-grid,
  .stats,
  .contact-grid { grid-template-columns: 1fr; }
}
