
:root {
  color-scheme: dark;
  --bg: #07080a;
  --panel: #171a20;
  --panel-2: #22262e;
  --line: #3a424e;
  --line-strong: #596678;
  --text: #f4f6f8;
  --muted: #aeb6c0;
  --soft: #d4dde7;
  --accent: #ff6b2a;
  --accent-2: #ffc43d;
  --cyan: #9fc5df;
  --green: #25d07d;
  --red: #ff4267;
  --shadow: 0 28px 90px rgba(0, 0, 0, .52);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 107, 42, .12), transparent 34%),
    linear-gradient(180deg, #06070a 0%, #0a0c10 48%, #050608 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
code { color: var(--soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(212, 221, 231, .12);
  background: rgba(7, 8, 10, .88);
  backdrop-filter: blur(14px);
}
.brand img { display: block; width: 210px; height: auto; }
nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 6px; }
nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
nav a:hover, .nav-cta { color: var(--text); background: rgba(255, 107, 42, .12); }
.nav-cta { border: 1px solid rgba(255, 107, 42, .38); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown button {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}
.nav-dropdown button::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-dropdown button:hover,
.nav-dropdown button[aria-current="page"],
.nav-dropdown:focus-within button,
.nav-dropdown:hover button {
  color: var(--text);
  background: rgba(255, 107, 42, .12);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  display: none;
  padding: 8px;
  border: 1px solid rgba(212, 221, 231, .18);
  border-radius: 8px;
  background: rgba(16, 19, 25, .98);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 11px;
  white-space: nowrap;
}
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 107, 42, .14);
}

main { overflow: hidden; }
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  border-bottom: 1px solid rgba(212, 221, 231, .12);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 76px 28px 28px 45%;
  opacity: .72;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transform-origin: right center;
}
.hero-bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(212, 221, 231, .22);
  border-radius: 8px;
  background: #111319;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .55);
}
.hero-bg-grid img:first-child { grid-row: 1 / 3; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,8,.99) 0%, rgba(5,6,8,.86) 42%, rgba(5,6,8,.38) 100%),
    linear-gradient(0deg, rgba(5,6,8,1) 0%, rgba(5,6,8,0) 30%);
}
.hero-content {
  position: relative;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 130px 0 110px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 42, .15), 0 0 20px rgba(255, 107, 42, .65);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .94;
  letter-spacing: 0;
}
h2 { font-size: clamp(32px, 4.2vw, 58px); line-height: 1; margin-bottom: 16px; }
h3 { font-size: 20px; margin-bottom: 8px; }
.hero-content p { max-width: 740px; color: var(--soft); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-link, .secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}
.primary-link { background: linear-gradient(135deg, var(--accent), #d13a1f); color: #fff; box-shadow: 0 16px 42px rgba(255, 107, 42, .24); }
.secondary-link { border: 1px solid rgba(212, 221, 231, .24); background: rgba(255,255,255,.05); }

.proof-strip {
  width: min(1240px, calc(100% - 48px));
  margin: -44px auto 76px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.proof-strip div, .mini-grid article, .workflow-steps article {
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33,37,45,.96), rgba(16,18,23,.96));
  box-shadow: var(--shadow);
}
.proof-strip div { padding: 16px; }
.proof-strip b { display: block; margin-bottom: 5px; color: var(--text); }
.proof-strip span { display: block; color: var(--muted); font-size: 13px; }

.feature-section, .gallery-band, .spotlight, .workflow-band, .cta-panel {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 58px;
}
.feature-section {
  display: grid;
  grid-template-columns: minmax(320px, .38fr) minmax(620px, .62fr);
  gap: 28px;
  align-items: center;
}
.feature-section.reverse { grid-template-columns: minmax(620px, .62fr) minmax(320px, .38fr); }
.lead-proof { grid-template-columns: 1fr; }
.section-copy { padding: 8px 0; }
.section-copy.centered { max-width: 850px; margin: 0 auto 24px; text-align: center; }
.section-copy p, .spotlight-copy p, .cta-panel p { color: var(--muted); font-size: 16px; }
.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--soft);
  font-weight: 720;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.screenshot-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 221, 231, .18);
  border-radius: 8px;
  background: #111319;
  box-shadow: var(--shadow);
}
.screenshot-frame img { display: block; width: 100%; height: auto; }
.screenshot-frame figcaption {
  border-top: 1px solid rgba(212, 221, 231, .14);
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}
.screenshot-frame.wide img, .screenshot-frame.tall img { width: 100%; }
.dual-screens { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.triple-screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.mini-grid article { padding: 14px; box-shadow: none; }
.mini-grid b { display: block; margin-bottom: 6px; color: var(--text); }
.mini-grid span { display: block; color: var(--muted); font-size: 13px; }

.spotlight {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(31,35,43,.94), rgba(12,14,18,.96));
  box-shadow: var(--shadow);
}
.spotlight-copy { max-width: 920px; }

.evidence-spotlight {
  grid-template-columns: minmax(320px, .38fr) minmax(620px, .62fr);
  align-items: center;
}

.compact-list {
  max-width: 780px;
}

.evidence-spotlight .screenshot-frame img {
  background: #0f1720;
}

.host-investigation-spotlight .spotlight-copy {
  max-width: 980px;
}
.host-investigation-screens .screenshot-frame img {
  background: #0f1720;
}


.workflow-band {
  padding: 28px;
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  background: #101319;
}
.workflow-band h2 { max-width: 760px; }
.workflow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.workflow-steps article { padding: 16px; box-shadow: none; }
.workflow-steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 107, 42, .16);
  color: var(--accent-2);
}
.workflow-steps p { color: var(--muted); font-size: 14px; margin: 0; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 107, 42, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 42, .18), rgba(17, 19, 25, .98));
  box-shadow: var(--shadow);
}
.cta-panel div { max-width: 780px; }

footer {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}
footer img { width: 180px; height: auto; }

@media (max-width: 1080px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero-bg-grid { padding-left: 34%; opacity: .46; }
  .proof-strip, .workflow-steps, .dual-screens, .triple-screens { grid-template-columns: 1fr 1fr; }
  .feature-section, .feature-section.reverse, .evidence-spotlight { grid-template-columns: 1fr; }
  .feature-section.reverse .section-copy { order: -1; }
  .mini-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px; }
  .brand img { width: 170px; }
  nav a { font-size: 12px; padding: 7px 8px; }
  .hero { min-height: 90vh; }
  .hero-bg-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 76px 14px 22px;
    opacity: .24;
    transform: none;
  }
  .hero-bg-grid img:first-child { grid-row: auto; }
  .hero-bg-grid img:nth-child(3) { display: none; }
  .hero-content { width: min(100% - 28px, 980px); padding: 90px 0 78px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .proof-strip, .workflow-steps, .dual-screens, .triple-screens { grid-template-columns: 1fr; width: min(100% - 28px, 1240px); }
  .feature-section, .gallery-band, .spotlight, .workflow-band, .cta-panel, footer { width: min(100% - 28px, 1240px); }
  .spotlight, .workflow-band, .cta-panel { padding: 16px; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
}


/* Strategic services, blog, and security pages */
.services-hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 72vh;
  margin: 0 auto 48px;
  padding: 118px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: end;
  border-bottom: 1px solid rgba(212, 221, 231, .12);
}
.services-hero-content h1 {
  max-width: 900px;
  font-size: clamp(44px, 6.2vw, 82px);
}
.services-hero-content p {
  max-width: 820px;
  color: var(--soft);
  font-size: 18px;
}
.services-hero-panel,
.security-card,
.service-card,
.blog-card {
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33,37,45,.96), rgba(16,18,23,.96));
  box-shadow: var(--shadow);
}
.services-hero-panel {
  padding: 20px;
}
.services-hero-panel b {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 18px;
}
.services-hero-panel ul,
.service-card ul,
.security-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.services-hero-panel li,
.service-card li,
.security-card li {
  position: relative;
  padding-left: 20px;
  color: var(--soft);
  font-size: 14px;
}
.services-hero-panel li::before,
.service-card li::before,
.security-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.services-proof-strip,
.site-crosslinks,
.services-intro,
.services-section,
.service-bundles,
.blog-list,
.blog-article {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 58px;
}

.service-outcomes-band {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-outcomes-band article {
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(31,35,43,.94), rgba(12,14,18,.96));
  box-shadow: var(--shadow);
}
.service-outcomes-band b {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
}
.service-outcomes-band span {
  color: var(--muted);
  font-size: 14px;
}
.how-flow {
  grid-template-columns: repeat(4, 1fr);
}

.services-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.services-proof-strip div {
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  padding: 16px;
  background: #101319;
}
.services-proof-strip b {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}
.services-proof-strip span {
  color: var(--muted);
  font-size: 13px;
}
.services-intro {
  display: grid;
  grid-template-columns: minmax(320px, .35fr) minmax(620px, .65fr);
  gap: 28px;
  align-items: start;
}
.services-flow,
.services-grid,
.security-control-grid,
.blog-card-grid {
  display: grid;
  gap: 16px;
}
.services-flow {
  grid-template-columns: repeat(4, 1fr);
}
.services-flow article {
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(31,35,43,.94), rgba(12,14,18,.96));
}
.services-flow b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 107, 42, .16);
  color: var(--accent-2);
}
.services-flow p,
.service-card p,
.security-card p,
.blog-card p,
.blog-body p,
.blog-body li {
  color: var(--muted);
}
.services-grid,
.security-control-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card,
.security-card,
.blog-card {
  padding: 20px;
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card-top span {
  color: var(--accent-2);
}
.service-card h3,
.security-card h3,
.blog-card h3 {
  font-size: 22px;
}
.service-card h4 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.inline-card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}
.blog-index-hero,
.security-hero {
  min-height: 58vh;
}
.blog-card-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-card .secondary-link {
  width: fit-content;
  margin-top: 8px;
}
.blog-article {
  max-width: 920px;
  padding-top: 90px;
}
.blog-hero {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 221, 231, .14);
}
.blog-hero h1 {
  font-size: clamp(40px, 5.4vw, 70px);
}

.blog-article-hero {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 221, 231, .14);
}
.blog-article-hero h1 {
  font-size: clamp(40px, 5.4vw, 70px);
}
.blog-meta {
  color: var(--cyan);
  font-weight: 850;
}

.blog-share {
  margin-top: 16px;
}
.blog-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(159, 197, 223, .28);
  border-radius: 8px;
  color: var(--text);
  background: rgba(159, 197, 223, .1);
  font-size: 13px;
  font-weight: 900;
}
.blog-share a:hover {
  border-color: rgba(255, 107, 42, .42);
  background: rgba(255, 107, 42, .12);
}
.blog-body {
  font-size: 18px;
}
.blog-body h2 {
  margin-top: 34px;
  font-size: 34px;
}
.blog-body blockquote {
  margin: 32px 0;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 107, 42, .1);
  color: var(--soft);
  font-size: 22px;
  font-weight: 850;
}
.security-card ul {
  margin-top: 14px;
}
footer a {
  color: var(--soft);
  font-weight: 850;
}

.blog-reading-layout {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.blog-reading-main .blog-article,
.blog-reading-main .cta-panel {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.blog-reading-main .blog-article {
  padding-top: 90px;
}
.blog-sidebar {
  position: sticky;
  top: 86px;
  margin-top: 90px;
  padding: 18px;
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24,28,35,.96), rgba(10,12,16,.98));
  box-shadow: var(--shadow);
}
.blog-sidebar-home {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}
.blog-sidebar-group {
  padding-top: 14px;
  border-top: 1px solid rgba(212, 221, 231, .12);
}
.blog-sidebar-group + .blog-sidebar-group {
  margin-top: 16px;
}
.blog-sidebar-group h2 {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}
.blog-sidebar-group a {
  display: block;
  margin: 0 0 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}
.blog-sidebar-group a:hover,
.blog-sidebar-group a.active {
  color: var(--text);
  background: rgba(255, 107, 42, .12);
}
.blog-sidebar-group a.active {
  border: 1px solid rgba(255, 107, 42, .3);
}

@media (max-width: 1080px) {
  .services-hero,
  .services-intro {
    grid-template-columns: 1fr;
  }
  .services-proof-strip,
  .services-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .services-hero,
  .services-proof-strip,
  .site-crosslinks,
  .services-intro,
  .services-section,
  .service-bundles,
  .blog-list,
  .blog-article {
    width: min(100% - 28px, 1240px);
  }
  .services-hero {
    padding-top: 70px;
    min-height: auto;
  }
  .services-proof-strip,
  .services-flow,
  .services-grid,
  .security-control-grid {
    grid-template-columns: 1fr;
  }
  .blog-body {
    font-size: 16px;
  }
  .blog-body h2 {
    font-size: 28px;
  }
}

@media (max-width: 1080px) {
  .blog-reading-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .blog-reading-layout {
    width: min(100% - 28px, 1240px);
    gap: 20px;
  }
  .blog-reading-main .blog-article,
  .blog-reading-main .cta-panel {
    width: 100%;
  }
  .blog-reading-main .blog-article {
    padding-top: 56px;
  }
  .blog-sidebar {
    padding: 14px;
  }
}

@media (max-width: 720px) {
  .nav-dropdown,
  .nav-dropdown-menu {
    width: 100%;
  }
  .nav-dropdown button {
    width: 100%;
    text-align: left;
  }
  .nav-dropdown-menu {
    position: static;
    margin-top: 4px;
    box-shadow: none;
  }
}

@media (max-width: 1080px) {
  .service-outcomes-band,
  .how-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .service-outcomes-band {
    width: min(100% - 28px, 1240px);
    grid-template-columns: 1fr;
  }
  .how-flow {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-hero {
  min-height: 58vh;
}
.contact-section {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 58px;
  display: grid;
  gap: 20px;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(212, 221, 231, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33,37,45,.96), rgba(16,18,23,.96));
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 221, 231, .22);
  border-radius: 8px;
  padding: 12px 13px;
  background: #0c0f14;
  color: var(--text);
  font: inherit;
}
.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 107, 42, .55);
  outline-offset: 2px;
}
.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.contact-form-actions button {
  border: 0;
  cursor: pointer;
}
.contact-form-actions button:disabled {
  cursor: wait;
  opacity: .72;
}
.contact-form-actions p {
  min-height: 24px;
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 760;
}
.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .contact-section { width: min(100% - 28px, 980px); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 16px; }
}

